Fri, 2010-08-13 18:08
I'm playing with a potential Worpress design and have used a PHP include to the ID="topinfo" div, which contains some links in a list. The CSS code has been added to style.css, and it shows up as being there. However, the CSS for #topinfo does not register (it has no effect).
What am I doing wrong? I can't see it. Thanks in advance.
Page: http://lambifund.org/wp/
Phil
Fri, 2010-08-13 18:24
#1
Remove the space
You've used "div #topinfo" in the css - the code tries to find an element with id="topinfo" inside another element of type "div".
What you want to use is "div#topinfo" - well, what you _really_ want to use is "#topinfo".
Fri, 2010-08-13 19:50
#2
That did it! I swear I tried
That did it! I swear I tried #topinfo first, and it didn't work. I hate it when that happens.
Thanks.
Phil
Sat, 2010-08-14 10:25
#3
No prob
You're welcome.
Shameless Note : "best-reply" !

