CSS to move logo
-
Hi, I have a logo image for my site identity that i’d like a little smaller, and move to the top left corner. Is there a CSS that’ll do that?
The blog I need help with is: (visible only to logged in users)
-
Hello @empyrealhomes
Use these CSS codes to:1. make the logo smaller:
#logo img { width: 450px; /*change this value if you must*/ }2. move the logo to the left
#logo a { float: left; }Hope this helps 🙂
- The topic ‘CSS to move logo’ is closed to new replies.