Logo
-
Hi, I have added my logo to my page but it is not in the place I want it. I want it in the top left hand side of the page next to the name how do I do so?
The blog I need help with is: (visible only to logged in users)
-
Hi there, that is the way Button is designed. We can make this change with Custom CSS, but it would require the WordPress.com Premium Plan upgrade. You can try out and preview custom CSS before you buy as explained here. Here would be the CSS needed.
.site-header { text-align: left; } .site-title { float: right; } -
Actually, let’s change that just a bit and put it in a Media Query so that things go back to the original design at screen/window widths narrower than 1180px. Below that things sort of go awry and don’t look good.
@media screen and (min-width: 1180px) {
.site-header {
text-align: left;
}
.site-title {
float: RIGHT;
}
}`
- The topic ‘Logo’ is closed to new replies.