Hello,
I have utilized this thread to learn how to make a text-only logo instead of an image logo…
http://kriesi.at/documentation/enfold/add-subtext-to-logo-replace-logo-with-site-title/
How can I remove the space underneath it and control the height of that area? And what are the best CSS selectors to style it?
Thank you!
Hey tonyska!
1.
To Change the logo font size please add the below css in Enfold > General Styling > Quick CSS
div.container.av-logo-container h1 {
font-size: 32px;
}
2.
To change header height
#top #header_main > .container {
height: 100px;
line-height: 100px;
}
3.
To view the class names you can right click inspect the element and change the css in the browser.
Hope this helps :)
Best regards,
Vinay
Worked great, thank you!