-
AuthorPosts
-
July 7, 2014 at 11:32 am #65965
I was unable to find solution in forums or knowledgebase. I did try many snippets of css I found to no avail.
1) Links on left navbar are cut off on smaller screens like 13 inch Macbook.
2) Fish image on right side of topbar cuts cut off in internet explorer.
Can you please assist.
July 8, 2014 at 1:27 am #66168Hey Jamie,
Please try the CSS below in your Customizer > Custom > CSS.
.x-navbar-fixed-left .x-nav > li > a, .x-navbar-fixed-right .x-nav > li > a { padding: 9px 35px; } .x-topbar .p-info { width:100%; }
Hope that helps. 🙂
July 8, 2014 at 2:52 pm #66398Worked like a charm. Thanks for the great support.
July 9, 2014 at 2:20 pm #66783You’re Welcome!
August 5, 2014 at 11:41 am #78262After checking up on this it appears to not be working. I may have used the wrong browser when seeing everything working. Any other possible solution for this?
August 5, 2014 at 3:42 pm #78475Hi Jamie,
Upon checking, it seems that your Custom CSS code in Customizer > Custom > CSS is missing a curly bracket that is causing the CSS not to work. To fix this, simply replace the entire CSS with the following updated CSS:
.entry-wrap, .x-navbar { background-color: rgba(0, 0, 0, 0.6); } .x-colophon { background-color: rgba(0, 0, 0, 0.6); } /* Added missing curly bracket */ .x-navbar-fixed-left .x-nav > li > a, .x-navbar-fixed-right .x-nav > li > a { padding: 9px 35px; } .x-topbar .p-info { width:100%; }
Hope this helps. 🙂
Thank you.
August 8, 2014 at 1:47 pm #80840Spot on. Don’t know how I did that. Thanks 🙂 Awesome Support.
August 8, 2014 at 2:25 pm #80893Glad we were able to help. 🙂 Have a nice day.
January 15, 2015 at 5:50 pm #184053It appears since this last update my left side navbar menu links have now spread apart and do not all show up on the page. This is the code in the customizer that you gave me to solve this originally.
.x-navbar-fixed-left .x-nav > li > a, .x-navbar-fixed-right .x-nav > li > a { padding: 9px 35px; }
January 16, 2015 at 12:16 pm #184591Hey Jamie,
Upon checking your site, I see you’ve not updated your Visual Composer plugin and you’ve updated the X theme to latest version, please ensure that you update BOTH X to v3.1.1 and the Visual Composer plugin to v4.3.5, as these releases are meant to be paired together. If only one is updated, there will be some potential JavaScript/styling conflicts.
Let us know how this goes!
January 16, 2015 at 3:27 pm #184710Visual composer is updated and cache is cleared but this issue is still not resolved. Can you suggest another solution.
January 18, 2015 at 2:07 am #185390Hi there,
Please try this code :
.x-navbar-fixed-left .desktop .x-nav>li>a, .x-navbar-fixed-right .desktop .x-nav>li>a { padding: 9px 35px; }
Hope it helps.
-
AuthorPosts