tagline in fresh and clean
-
Hi there!
I’m trying to change the size of the tagline font in fresh and clean. I have tried % / pt / em /px but none are working – is there something in the theme design that is preventing this?
This is the CSS code at the moment:
#site-description {
font-size: 120%;
font-weight: bold;
width: 220px;
Thank you very much to anyone who could help!
The blog I need help with is: (visible only to logged in users)
-
You are close. Get rid of the html
tags. Close your statement. And put this in your CSS:#site-description{font-size:120%; font-weight:bold; width:220px;}
-
@houstonweaver:
The br tags were produced because dogsbuddy used code tags.@dogsbuddy:
a) Code tags are used to display computer code, not HTML or CSS. To display code on this forum, you enclose it in backticks (see the note on “Allowed markup”).
b) Turn your CSS code to this:#site-description { font-weight: bold; padding-top: 100px; width: 220px; }And add this as well:
.wf-active #site-description { font-size: 120%; }
- The topic ‘tagline in fresh and clean’ is closed to new replies.