What is the best way to move the Logo from the center all the way to the left?
Thank you.
Template Folder/gk_twn2/css/override.css
/* Moving logo and Sitename to left handside */
h1#gkLogo {
height: 50px;
margin: 0 auto;
padding-left: 10px;
float: left;
top: 44px;
width: 390px;
}
/* Logo as text and not image you can change add font-size here*/
h1.gkLogo.text {
margin: 0;
float: left;
padding-top: 30px;
padding-left: 10px;
width: auto;
}
padding-left: 10px;
/* Moving logo and Sitename to left handside */
h1#gkLogo {
height: 50px;
margin: 0 auto;
padding-left: 10px;
float: left;
top: 44px;
width: 390px;
}
/* Logo as text and not image you can change add font-size here*/
h1.gkLogo.text {
margin: 0;
float: left;
padding-top: 30px;
padding-left: 10px;
width: auto;
}
/* Font size for the Main Logo text you can use percentage or px e.g 40px or 150%*/
h1.gkLogo.text a {
padding: 0;
width: auto !important;
font-size:140%;
}
/* Font size for the Logo Slogan text you can use percentage or px e.g 40px or 150%*/
h1.gkLogo.text .gkLogoSlogan {
color: #666666 !important;
font-size: 25px !important;
line-height: 10px;
margin: 32px 0 18px;
}
normanUK wrote:Add the last two sections in your override so it looks like below and experiment with font-size to your liking.