-
AuthorPosts
-
April 28, 2015 at 8:59 am #260593
I am trying to remove the border around the nav bar so it just says the words and no line delineation.
http://pleasurelifestylevacations.com/
Also there is a line above the nav bar that runs full width of the screen that I want to get rid of as well.
Also the color that pops up on hover I want to change that to be the color of the logo if possible
Thanks
April 28, 2015 at 10:32 am #260661Hi there,
Thanks for writing in! Please add the following CSS rules into your Customizer, Custom > CSS rules into your Appearance -> Customize.
.x-logobar { border-bottom: medium none; } .x-navbar { border-bottom: medium none; } .x-navbar .desktop .x-nav > li > a { border-left: medium none; } .x-navbar .desktop .x-nav > li:last-child > a { border-right: medium none; }
To change the hover color, please use the following CSS rule and change color values accordingly.
.x-navbar .desktop .x-nav > li > a:hover, .x-navbar .desktop .x-nav > .x-active > a, .x-navbar .desktop .x-nav > .current-menu-item > a { box-shadow: 0 2px 0 0 #ee0000; }
Hope that helps.
October 3, 2015 at 7:49 pm #609732This reply has been marked as private.October 4, 2015 at 1:13 am #609908Hi there,
Please install Cornerstone from X Addons -> Extensions and disable X shortcodes plugin. Add the following code in Customize -> Custom -> CSS :
.x-navbar .desktop .x-nav > li > a:hover, .x-navbar .desktop .x-nav > .x-active > a, .x-navbar .desktop .x-nav > .current-menu-item > a { box-shadow: none; -moz-box-shadow: none; -webkit-box-shadow: none; } .x-navbar .desktop .x-nav > li > a:not(.x-btn-navbar-woocommerce) { padding-left: 20px; padding-right: 20px; }
Hope it helps.
October 4, 2015 at 12:44 pm #610277This reply has been marked as private.October 4, 2015 at 1:47 pm #610315Hi there,
Thanks for updating. Unfortunately I can’t see the code on your site rather noticed this conflicting code –
.x-navbar .desktop .x-nav > li > a:hover, .x-navbar .desktop .x-nav > .x-active > a, .x-navbar .desktop .x-nav > .current-menu-item > a { box-shadow: 0 2px 0 0 #dd3333; }
Make sure you have added the suggested code correctly and don’t forget to remove all other conflicting codes for the same thing you tried earlier.
Thanks
October 4, 2015 at 7:50 pm #610516This reply has been marked as private.October 4, 2015 at 10:13 pm #610621Hi There,
Would you mind sharing us your admin credenitals so we could easily trace the conflict and we could check your setup closer.
If possible also, would you mind sharing us screenshot which part are still not to what have planned or changes to be done.
Don’t forget to set it as private reply.
Thanks.
October 7, 2015 at 8:00 pm #615875This reply has been marked as private.October 8, 2015 at 12:50 am #616100Hello There,
Thanks for providing the credentials of your site. We have replaced your custom JS in the customizer. It has invalid quotes in the code. We replace it with this code:
jQuery(function($){ $('.x-navbar').prepend('<div class="x-custom-topbar">Content here</div>'); });
Can you please check what other things need or you want to change? Please let us know.
November 22, 2015 at 10:30 am #675020Sorry to take so long to get back to you but the borders around the nav bar are still there vertically. The spacing is causing the nav bar to go to a second line still as well. And now there is a white bar across the header that says Content here. I did not realize that Content here was ever there until i went back and reread that code… I went back and it was code that was supposed to allow the stacked scrolling… so the nav bar stays at the top on scrolling down the page. it used to be the header then nav bar then below mast then body content for page. I don’t know what changed when I updated the theme but everything is still funky. Can these things be fixed? Also I updated wordpress and now it is throwing an error too for The called constructor method for WP_Widget is deprecated.
Any help is much appreciated
November 22, 2015 at 6:16 pm #675292Hello There,
Thanks for getting back to us.
To remove left and right main menu border, please add the following CSS:.x-navbar .desktop .x-nav > li > a { border-left: none !important; border-right: none !important; }
Then remove the following custom CSS from your customizer:
.x-navbar .desktop .x-nav > li > a { border-left: medium none; } .x-navbar .desktop .x-nav > li:last-child > a { border-right: medium none; }
To prevent the menu from creating second line, please decrease the value Navbar Top Link Spacing(px) from Appearance > Customize > Header to 20px or lower.
About the Content here text, that is because of the custom javascript code. It adds content before the navbar. If that code is not intended to be there, please remove it. To make you navbar fixed on top when scrolling please set it via Appearance > Customize > Header > Navbar Position > Fixed Top : .
Hope this helps.
-
AuthorPosts