Tagline and title separation
-
Greetings,
I, like others here, am a CSS novice. I’d like to get the tagline on http://trevordawes.wordpress.com to appear on a separate line below the title. Suggestions?
Thanks,
trevorThe blog I need help with is: (visible only to logged in users)
-
To made the tagline in the Chateau theme appear on its own line, try this:
#main-title #site-description { display: block; } -
This will do it, but there isn’t a way to get rid of the tilde symbol at the beginning. That is inserted into the description in the underlying theme PHP script files and we do not have access to those.
#site-description { display: block !important; } -
-
Howdy @thesacredpath!
I think you could try hiding the first character of the tagline in Chateau with the following, but I don’t know if it would scale well in all browsers.
hgroup { overflow: hidden; } #main-title #site-description { margin-left: -20px; } -
-
@designsimply, Howdy to you, and nice solution to hiding the tilde. That hadn’t occurred to me.
- The topic ‘Tagline and title separation’ is closed to new replies.