Where do I find the css for HTML blocks ?
I would like to change the font-weight for titles in the blocks to bold.
Where do I find the css for HTML blocks ? I would like to change the font-weight for titles in the blocks to bold. |
you use custom template so it should be in there.. look in custom.css line:118 and look for div.wnd_title change font-weight: normal; to font-weight: bold; |
No, this is for another site :-)
I use the default template and in the default.css I can't find it. |
I hoped to find it in the h1, h2 or h3, but they are already bold. So it should be something else. |
All page blocks use the same css styling. There are no specific css styles specifically for html blocks only. .disignBoxFirst .boxFirstHeader .dbTitle {
position: relative; float: left; } Simply add font-weight: bold; under float: left; Found this in 10 seconds using firebug. Great tool for firefox for finding css sections to change. https://www.deanbassett.com |
Thank you Deano. I found it in common.css line 173 Guess I'd better start using firebug as well. Never used it before |
Yea, it is common.css. I don't know why i wrote design.css. Guess my mind was on one of the other dozen or so things i was doing. https://www.deanbassett.com |