CSS for Changing Background Color on registration/login/forget-password pages
-
Hi,
I am struggling to change the background colors.
Please help me.Here is what I want:
1.Change the background color of registration/login/forgot-password pages into transparent (with no border.)
2.Change the background color of the buttons into #E08660 on each pages.I did wrote CSS to apply 1, but then the background color for buttons on login/forgot-password pages became transparent and can’t be changed.
Here is What I wrote:
add_action( 'wp_head', function () { ?> <style> .ur-frontend-form.ur-frontend-form--flat { background: transparent; border: transparent; } .ur-frontend-form { border: none; } input[type=email], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], textarea { border: none; } </style> <?php } );
Please teach me how to fix this issue.
Thank you.The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘CSS for Changing Background Color on registration/login/forget-password pages’ is closed to new replies.