Hey,
How do I move down the facebook/twitter and search button to the bottom of the header in line with the menu?
Thanks,
Amelia
Hey,
How do I move down the facebook/twitter and search button to the bottom of the header in line with the menu?
Thanks,
Amelia
Hi,
You can add this on your custom.css
#top .social_bookmarks {
margin-top: 60px;
}
Regards,
Ismael
thanks and the search bar? this only moves the social buttons
I would also like to remove the breadcrumbs and page name that appears under the menu items
Hi ameliaamelia,
Remove the css from Ismael and try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:`
.header_meta {
top: 136px;
}`
For the title container use:
.title_container {
display: none;
}
Regards,
Devin
Thank you for that!
Is there any way of centering the menu tabs. I have moved the facebook/search to the very top and would like the menu to be centered?
Thanks
Hi,
You can adjust the left position of the main menu by doing this
.main_menu {
left: 100px;
}
Regards,
Ismael
Hey,
I tried that and it didn't move... http://dahliem.com
Hi ameliaamelia,
Try to add this code in your custom.css:
.main_menu {
left: 198px;
}
if that doesn't work, then kindly use this code instead:
.main_menu {
left: 198px !important;
}
Just remember if you add additional link in your main menu then you should adjust the left value to make it look centered. Hope this helps.
Regards,
Ismael
WITH REGARDS DELETING THE BREADCRUMBS
I added
.title_container {
display: none;
}
as advised but now I get a little cut in the page at the top.
How do I get rid of the cut so it is all one sheet. http://www.indonesiadetective.com
Hi cpwilson2,
Try to add this code:
#main {
margin-top: 0;
}
or
#main {
margin-top: 0 !important;
}
This will remove the margin between the main menu and the content below it.
Regards,
Ismael
thanks Ismael. That did the trick.
This topic has been closed to new replies.