You have body{font-weight:bold;} and that works. .PTI p {font-weight: bold;} would have worked as well.
p.PTI {font-weight:700;} would only work if the class "PTI" was applied to each paragraph...
Type: Posts; User: greenconcept; Keyword(s):
You have body{font-weight:bold;} and that works. .PTI p {font-weight: bold;} would have worked as well.
p.PTI {font-weight:700;} would only work if the class "PTI" was applied to each paragraph...
Yes, those styles work. <img> is an exception to the rule. It is technically an inline element, but it behaves more like an inline-block element in many browsers.
I withdraw my solution.