thaking
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Dynamic Menu Highlighting and Fgalleryi think one way you could do this is Write a Page and call it gallery and and put gallery in the post slug…this actually makes gallery a page…it has worked for my fgallery installation for my purposes…should work for you as well…
Forum: Themes and Templates
In reply to: IE7 has screwed up my Sidebari’d start with this:
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.benrichards.co.uk%2FForum: Fixing WordPress
In reply to: Weird text characters appearing in postsForum: Fixing WordPress
In reply to: Weird text characters appearing in postsmaybe i’m missing something, but i don’t see any of that on the page you’ve linked…but there are lots of errors on the page that need to be corrected…
Forum: Themes and Templates
In reply to: Dueling Browsers…IE doesn’t necessarily follow standards and is known to mess up pages…that being said, a link to your site might help in resolving the issue…
Forum: Fixing WordPress
In reply to: Sidebar pushed away a littleif you look at your CSS code, line 638 – where the error is – you’ll see this:
#navmenu ul li a:hover {color: white;
background: green; }
}
do you know anything wrong about that line of code?and this won’t necessarily ~fix~ your error, but you have to take one step at a time…fix the obvious errors first and then tackle the harder ones…
have you tried logging in to your host via ftp and deleting them that way?
Forum: Fixing WordPress
In reply to: Sidebar pushed away a littlenot just a color warning, there is a parse error in there as well…line 638…
Forum: Fixing WordPress
In reply to: Sidebar @ The Bottomhave you looked at the link i provided above? it lists ALL errors (46 of them) you have including your DIV errors (multiple ones) and UL errors…plus some minor errors as well…
i’d suggest fixing those first and then help would be much easier…
Forum: Fixing WordPress
In reply to: changing link colouryou need to create another class, apply the css to that class and then use that class for the links you want…
example: a.content:hover{color: #ff; background-color: #008eb4;}
then, you have
<a href="whatever" class="content">sample</a>Forum: Fixing WordPress
In reply to: Sidebar @ The Bottomyou can find your missing div and ul tags by looking here:
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fmydirtylies.fan-source.com%2F
Forum: Fixing WordPress
In reply to: footer is at wrong placehey, no prob..i don’t think i really did anything but glad you got it figured out…
Forum: Fixing WordPress
In reply to: footer is at wrong placeif you test another page, i tested this one http://famfeenstra.nl/wordpress/, you’ll see there is no error with your div tag…all the other errors deal with using CAPS, closing non-closed tags (adding a / at the end of your img tag), etc…but there is no div tag error…maybe check that out and see what you’ve done differently with that page…
Forum: Fixing WordPress
In reply to: Sidebar pushed away a littlejust those two… 🙂 once all of that is corrected then you can determine what is causing the conflict…but this is easiest when all the code is correctly formatted…
Forum: Fixing WordPress
In reply to: footer is at wrong placewell that’s strange…i use firefox and the web developer extension which allows me to edit the CSS of your page…when i added clear:both; to the footer it repositioned it to the bottom…