SAF Theme - Logo is on the right - How to make it on the left side? SMF1.1rc2
www.kyotofriendsparty.com/bbs/
Sorry for this newbie question as I have just started using SAF.
Thanks,
Mike
Well to do it open up blue.css and search for:
.header
{
background-color: #4586DF;
background-repeat: no-repeat;
background-position: right;
padding: 0px 8px 0px 8px;
width: 760px;
height: 90px;
text-align: left;
font-family: Verdana, Arial, sans-serif;
font-size: 24px;
color: white;
font-weight: 550;
}
And replace it with this:
.header
{
background-color: #4586DF;
background-repeat: no-repeat;
background-position: left;
padding: 0px 8px 0px 8px;
width: 760px;
height: 90px;
text-align: left;
font-family: Verdana, Arial, sans-serif;
font-size: 24px;
color: white;
font-weight: 550;
}
Hope this helps ;)
thanks for the help!