Hi all,
I would like to move my logo a little bit down so it is in line with the main menu. I am using the Crave theme. I understand I need to add code to the base.css file although I am unsure what code to add.
I have attached a screenshot of my homepage and the logo not being in line with the main menu.
Thank you.
@DesignerDavid - can you please share your website link?
Hi @DesignerDavid ,
Can you provide your store url
- Add custom CSS: Once you have identified the logo element, you can apply custom CSS to adjust its position. Open your theme’s CSS file (usually
base.css or theme.css) and add the following code:
#logo {
margin-top: 10px; /* Adjust the value as needed */
}
Replace #logo with the ID or class you found in step 1. The margin-top property controls the top margin of the logo element. Increase or decrease the value as needed to move the logo up or down.