• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

CSS question

Nocturnal

Lifer
Can I override the tag "big" with CSS? I am trying to override it by using my own style sheet and IE7. When I put:

big
{
font-size: 13px
font size: 13px
}

It still results with the big tag overriding my CSS and changing it to two sizes above what I currently have my font sizes set to within IE.

Is there anyway to override this?
 
What if the <big> tag was not declared in the style sheet. They are just using the <big> html tag. Even with the ! important in there my style sheet does not override the html <big> tag.
 
I fixed it. Just in case anyone wants to know, it would be like this:

* { font-family: verdana; font-size: 13px; size: 13px }

It works like a charm................. WOOOOOOOOOOOOOOT!
 
Originally posted by: Nocturnal
I fixed it. Just in case anyone wants to know, it would be like this:

* { font-family: verdana; font-size: 13px; size: 13px }

It works like a charm................. WOOOOOOOOOOOOOOT!

That changes ALL fonts. =/
 
Originally posted by: LoKe
Originally posted by: Nocturnal
I fixed it. Just in case anyone wants to know, it would be like this:

* { font-family: verdana; font-size: 13px; size: 13px }

It works like a charm................. WOOOOOOOOOOOOOOT!

That changes ALL fonts. =/

That is exactly what I wanted. Everything overrided by Verdana, size 9.
 
Back
Top