-
AuthorPosts
-
March 23, 2015 at 5:55 pm #233739
I need help please. I want to put my navigation link options in the TOP BAR (like http://theme.co/x/demo/ethos/1/ ).
I made a couple of changes and now can not figure out how to do that again.
Any help would be appreciated.
Thanks
March 24, 2015 at 5:36 am #233949Hi,
Thanks for writing in!
The navigation in ethos 1 demo is the navbar itself and not the topbar which in your case you have change the background to blue.
To add your menu items in the topbar, you can add the code below as your topbar content under header in the customizer.
<ul class="x-top-nav"><li><a href="http://studiochurch.org"><span>HOME</span></a></li> <li><a href="http://studiochurch.org/about/"><span>ABOUT</span></a></li> <li><a href="http://studiochurch.org/vision/"><span>VISION</span></a></li> <li><a href="http://studiochurch.org/contact/"><span>CONTACT</span></a></li> <li><a href="http://studiochurch.org/donate/"><span>DONATE</span></a></li> </ul>
Then you can add this under Custom > CSS in the Customizer.
.x-top-nav { float:right; } .x-top-nav li { list-style-type:none; display:inline-block; vertical-align:top; } .x-top-nav li a { padding:0 10px; line-height:30px; }
Hope that helps.
March 24, 2015 at 10:15 am #234135Excellent – thanks so much!
March 24, 2015 at 12:48 pm #234205You’re most welcome!
Let us know if you need anything else.
Cheers!
December 28, 2015 at 3:20 pm #723505When I follow these instructions it pushes the social icons down a line. Can I have both the icons and the menu in the top bar?
December 28, 2015 at 3:23 pm #723514This reply has been marked as private.December 28, 2015 at 3:29 pm #723523I would like this to look like the regular menu bar.
December 28, 2015 at 3:48 pm #723552And, they aren’t lining up with social lower than the links, I’ve also searched for a way to change the color of the top bar links, but they are not in customize. please advise.
December 28, 2015 at 4:52 pm #723660Hi there,
Please add this CSS:
p:empty { display: none; } .x-top-nav { float: left; margin-bottom: 0; } .x-top-nav li a{ color: #fff; }
Hope this helps.
December 29, 2015 at 1:11 pm #724604Thank you that is great! How do I make the letters stay white before hover (instead of grey)
December 29, 2015 at 6:39 pm #724865Hi There,
To make the topbar link color to white you can add this under Custom > CSS in the Customizer.
.x-topbar .p-info a { color: #fff; }
But before you do that, please check your whole custom css here: http://csslint.net/
and fix the errors (probable a missing curly braces), else the code provided wont work.Hope it helps, Cheers!
-
AuthorPosts