logo moving
-
Hi, I’m just trying out the Sela theme and was wondering how i move my logo to the top right hand side of the page?
The blog I need help with is: (visible only to logged in users)
-
Try the following and let us know if this is what you want? This will pull the logo to the right:
.site-logo { float: right; } -
that’s just what i wanted. Thank you. Could you also tell me how to put Copyright into the footer of each page?
-
Sure thing.
This will add the copyright notice in the same line:
.site-info:after { content: "| Your Copyright Notice."; display: inline-block; }This will add it below the current footer text:
.site-info:after { content: "Your Copyright Notice."; position: relative; left: 452px; }
- The topic ‘logo moving’ is closed to new replies.