Reputation Activity
-
WebRookie2011 reacted to Mikec1uk in CSS Specificity ProblemHey,
When you group your css statements, you are using:
#mainContent,rightContent h1
Change this to:
#mainContent h1,#rightContent h1
and do the same for the h2, h3, li's etc.
To fix the positioning issue, just remove the 20px right margin on #mainContent.
Hope it helps!