bradyboyy88
Forum Replies Created
-
Forum: Plugins
In reply to: Sidebar missing on woocommerce shop and product pagesNM, I am an idiot. I was modifying the wrong site in my ftp account lol.
Forum: Plugins
In reply to: [Page scroll to id] Three menu items highlightedThe theme I am using is
venture-lite
http://www.nimbusthemes.com/preview/?theme=ventureForum: Plugins
In reply to: [Page scroll to id] Three menu items highlightedI am building my site locally but I am having this same problem since I use links vs just #section due to the fact there are pages outside of my homepage. Is there any other fixes if the one mentioned above in the style sheet did not work? Neither did the force single highlight in the options.
Thanks
Forum: Themes and Templates
In reply to: Mobile site variations for nav barThe image itself though I took 🙂
Forum: Themes and Templates
In reply to: Mobile site variations for nav barIf by banner you mean header image then yes its a default. The only plugins I really use are just for a few shortcodes for columns ,seo stuff, and few other small things. Not big on the plugins since its suppose to slow down the site
Forum: Themes and Templates
In reply to: Mobile site variations for nav barYea np.
http://www.chesapeaketees.com/cart/
and
http://www.chesapeaketees.com/product/short-sleeve-performance-tee-2/
are two examples. If you drag the width of the browser close to pixel width similar to a phone size you will see the header just shift to the left leaving a giant white gap on the right. Its super noticable on any phone I have checked it one if they are hold phone up in regular position. But any page that does not have woocommerce works fine. TO be super particular. I create a new page and it sizes perfectly. I added the cart shortcode and it displays cart and works great. BUT right when I got into woocommerce settings and go to checkout pages settings and set that page as the actual cart page then the header begins to shift. I did everything
http://docs.woothemes.com/document/third-party-custom-theme-compatibility/
said to make my theme woocommerce compatible so not sure whats going on.
Forum: Themes and Templates
In reply to: Mobile site variations for nav barYour right. I just need to let some things go haha. Last thing I have to fix is that header image shifting for woocommerce pages at low resolutions and then my site is perfect in my eyes!! Any suggestions on that?
Thanks a lot for the advice.
ShaunForum: Themes and Templates
In reply to: Mobile site variations for nav barI have had so much trouble with my header and nav bar at low resolutions its insane. I already made a post about this but also my header image on my woocommerce pages(products, carts, checkout) seems to shift to the left at lower resolution.
Forum: Themes and Templates
In reply to: Mobile site variations for nav barDoes that mean it cant be fixed when kept this way?
Forum: Themes and Templates
In reply to: Mobile site variations for nav barThere is one glitch I notice tho. If I am on the desktop and were to make the resolution smaller. Then click the drop down navbar icon to see that navbars but then go fullscreen or drag and make window higher resolution, the search bar shows up on the second line of the navbar. It is not until I refresh that it goes back to the normal spot on the same line as the other menu items. Its kind of strange.
I am new to web development if you couldnt tell haha.
Forum: Themes and Templates
In reply to: Mobile site variations for nav barForum: Themes and Templates
In reply to: Mobile site variations for nav barsorry I tried the opposite where the text align was center for the higher resolutions and left for the lower. Just typed it wrong above.
Forum: Themes and Templates
In reply to: Mobile site variations for nav barI used the logic but not sure if the syntax is correct since it did not work.
@media only screen and (max-width : 480px) {
/* Smartphone view: 1 tile */
.navbar-nav {
text-align:center;}
.nav > li, .navbar-nav {
float: none;
}
.nav > li {
display: inline-block;
left: 75px;
}
}
@media only screen and (max-width : 650px) and (min-width : 481px) {
/* Tablet view: 2 tiles */
.navbar-nav {
text-align:center;}
.nav > li, .navbar-nav {
float: none;
}
.nav > li {
display: inline-block;
left: 75px;
}
}
@media only screen and (max-width : 1050px) and (min-width : 651px) {
/* Small desktop / ipad view: 3 tiles */
.navbar-nav {
text-align:left;}
.nav > li, .navbar-nav {
float: none;
}
.nav > li {
display: inline-block;
left: 0px;
}
}
@media only screen and (max-width : 1290px) and (min-width : 1051px) {
/* Medium desktop: 4 tiles */
.navbar-nav {
text-align:left;}
.nav > li, .navbar-nav {
float: none;
}
.nav > li {
display: inline-block;
left: 0px;
}
}Forum: Themes and Templates
In reply to: Mobile site variations for nav barthanks by the way!
Forum: Themes and Templates
In reply to: Mobile site variations for nav bar.navbar-nav {
text-align:center;}
.nav > li, .navbar-nav {
float: none;
}
.nav > li {
display: inline-block;
left: 75px;
}