jasonkanzler
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Inject CSS classes into menu itemsForum: Themes and Templates
In reply to: [Customizr] Responsive menu itemsDid brute force trial and error in Chrome’s inspector and figured it out.
Here’s the code I had to add to my child theme’s style.css (for those interested):
@media (max-width: 979px) {
.nav-collapse .nav > li {
width: 25%;
float: left;
border-right: none;
}
.navbar.resp {
display: block;
}
.nav-collapse, .nav-collapse.collapse {
overflow: visible;
position: relative;
right: 0;
top: 0;
}
}@media (max-width: 499px) {
.nav-collapse .nav > li {
width: 50%;
}
}Follow up question here.
Forum: Themes and Templates
In reply to: [Customizr] Responsive menu items@rdellconsulting Yes I have read through that article. I’m aware it’s built off the bootstrap framework. I have been trying to change the CSS with @media queries but with no luck. Like I said in the OP, my menu disappears at widths below 800px and I cannot find the CSS that is causing this.