move site title upward toward header logo
-
Hello,
I was looking for the proper code for moving the “site title” upward toward the “header logo”. Would it look something close the following?
.site-title {
height: -50px;
}Thanks,
EJB53The blog I need help with is: (visible only to logged in users)
-
Hello @ejb53,
You have got the general idea, but instead of using height, use margin-top.
—-OR—-
Just follow these instructions:The .site-title has this CSS code currently:
.site-branding a + .site-title { margin-top: 0.2em; }Change it to this:
.site-branding a + .site-title { margin-top: -50px; }Hope this helps :)
- The topic ‘move site title upward toward header logo’ is closed to new replies.