I am tweaking the CSS of a theme. I added H1 tags around the profile name. I want it to look the same as my skin H1 tags.
When I use Firebug, it shows the H1 tag as having
div#amsocial h1{font-size:200%;}which it gets from the Module.css file in AS directory (the Skinning Doc recommends not to touch this). So, how do I change it so that my H1 tag does not inherit from this?
I tried copying the class into my theme Module.css and leaving it blank but due to the CSS rules this gets joined with the top level H1 tag from the AS Module.css which overrides my Skin.css H1 tag, so the only way I can see to do it is to copy all the classes from my Skin.css (like H1) into my theme Module.css to prevent it from inheriting it? This would lead to a lot of duplication and having classes in 2 places - I'm sure there must be an easier way?
Another way would be to take it out of the
amsocial div
but I could not find that div tag in the ProfileView template - I assume it is wrapped higher up.
Any advice appreciated (I hate CSS 