Wordpress issue..CSS nav shifts under a different page [closed]
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
开发者_StackOverflow社区Closed 9 years ago.
Improve this questionWhen its the homepage, the nav is aligned but when I click to another page, I shifts and only the nav section shifts. Please help!! Thank you!!
Homepage: http://guntherkoo.com/
Page: http://guntherkoo.com/portfolio/
Thank you again!!
The url for reset.css
is local, so it's only found at the web root.
<link rel="stylesheet" href="css/reset.css" type="text/css" media="screen">
Change it to this:
<link rel="stylesheet" href="/css/reset.css" type="text/css" media="screen">
Note that there are several links included there with the same problem (your js).
精彩评论