Hi!
Quick question. I am trying to make my logo smaller. This is in my general styling below. Though I am not sure what each is doing. Possible to help shrink my logo and explain what each styling is doing?
Thanks so much! and sorry for the confusion.
Blake
_______
#header_main .container, .main_menu ul:first-child > li a {
height:140px;
line-height: 140px;
}
strong.logo img{
padding: 25px 0px;
}
#socket .sub_menu_socket {
float: left;
}
Hey eternalkid,
The only CSS affecting your logo is this, it puts space above and below the logo:
strong.logo img{
padding: 25px 0px;
}
You can try this instead:
.logo img {
max-width: 80%;
padding-top:15px;
}
Best regards,
Rikard
Thank you!
Hi,
Glad that Rikard helped you :) Thanks for using Enfold.
Best regards,
Nikko