ADELLE – Theme Question
-
Hi!
I am new to CSS and managed to do a couple things but need help with the following –
I tried finding answers on the forums, found some, came close for others but now I’m just frustrated and need a little help :)
1 – The theme has a “ribbon” like shape for menu bar, can I remove the ribbon bar? Or just make it white so it’s not visible?
2- Is there a way to center the menu bar items? If so, how do I do that and make the text black?
Thank you!! Your help is much appreciated!
Amanda
The blog I need help with is: (visible only to logged in users)
-
Hello, try the following CSS:
/* Hide the ribbon */ .navigation-main { background: #fff !important; } .navigation-main:before, .navigation-main:after { display: none; } /* Change menu bar item color to black */ .navigation-main ul li a { color: #000; } /* Center the menu bar items */ .navigation-main ul { text-align: center; } .navigation-main li { display: inline-block; float: none; }My CSS above assumes that you want to keep current page’s menu item color, while the rest of the menu item is black.
If you want the current page menu item to be black also, add
.navigation-main ul li.current-menu-item a { color: #000; } -
-
-
This is very useful and thank you for sharing this.
I also have the Adelle Theme and am having trouble in removing the wavy lines under each section i.e follow me on facebook, follow me on instagram etc.
Is someone able to advise how i can remove these lines please
-
Also does anybody know how to change the colour of the text where it states follow us on facebook, instagram etc.
Many Thanks
-
I see you have gotten the wavy lines replaces with a straight black border line.
On the widget titles, there are two types. I see you have the code in your custom CSS to change the non-link widget titles with this:
.widget-title { color: #660066; }To change the color of the link style widget titles (such as the follow us in facebook title) add the following and adjust the color as desired.
#secondary .widget-title a { color: #CC0000; } -
-
- The topic ‘ADELLE – Theme Question’ is closed to new replies.