Move site tagline under site identity
-
How can I use custom CSS to move my site tagline directly under my site identity?
So on the left by my site logo I would like to see:
Jeremy Hicks
Game AI ProgrammerThe blog I need help with is hicksai.com.
The blog I need help with is: (visible only to logged in users)
-
Hi @reysic, add the following at the very bottom of your custom CSS. There are some alignment issues I’ve taken care of also.
@media screen and (max-width: 60em) { .site-branding { text-align: left; } .site-branding .custom-logo { margin-left: 0; display: inline; margin-left: 1em; } } @media screen and (min-width: 667px) { .site-title:after { content: "Game AI Programmer"; display: block; font-size: 19px; } .site-title { margin-top: 0; } .site-description { visibility: hidden; } .site-description:before, .site-description:after { visibility: visible !important; } } -
Thank you @thesacredpath!
Would you know how I could get my image links to fade on mouseover with custom CSS? I’ve tried the code below but it doesn’t seem to work.
.post img:hover { opacity:0.6; filter:alpha(opacity=60); /* For IE8 and earlier */ } -
-
-
- The topic ‘Move site tagline under site identity’ is closed to new replies.