Page 1 of 1

Would someone be willing to help with a "skin" Logo issue?

Posted: Mon Oct 06, 2008 8:30 pm
by Autowerks
Hey Guys,
First time poster here and I've got a inquiry for help:
My art guy has created a unique logo bar for our top header frame that incorporates our new art into the existing skin and transitions into the skin, you can see it at http://futrellauto.web148.discountasp.net/Default.aspx The problem as you can see is there is some padding in the table for that corner logo but I don't have an editor or apparently the skill to locate which CSS the coding lives in to edit it. We're using the Glass Silverage theme. If someone knows where the code lives and could point me to it to correct this padding issue I would really appreciate it-

Thanks,

Dean

Futrell Autowerks Inc.

Re: Would someone be willing to help with a "skin" Logo issue?

Posted: Mon Oct 06, 2008 9:17 pm
by compunerdy
Should be this line..

Code: Select all

#storeHeader .logo img {margin: 10px 0 0 10px; }
change it to

Code: Select all

#storeHeader .logo img {margin: 0px 0 0 0px; }

Re: Would someone be willing to help with a "skin" Logo issue?

Posted: Tue Oct 07, 2008 4:29 am
by mazhar
compunerdy is right. It should be this line.

Re: Would someone be willing to help with a "skin" Logo issue?

Posted: Tue Oct 07, 2008 10:45 am
by Autowerks
Thanks for the replies guys, I went hunting for that line below but didn't see it (what document should it be living in?) the closest I found was in the header html but it doesn't allow for any padding:

<table id="storeHeader" cellpadding="0" cellspacing="0">
<tr>
<td class="logo">
<a href="~/Default.aspx">[[ConLib:StoreLogo]]</a>
</td>

Re: Would someone be willing to help with a "skin" Logo issue?

Posted: Tue Oct 07, 2008 10:59 am
by mazhar
Go to the App_Themes folder and open your current theme folder. Edit the style.css file in it and locate this info in it.

Re: Would someone be willing to help with a "skin" Logo issue?

Posted: Tue Oct 07, 2008 11:09 am
by Autowerks
Got it!

Thank you both for your help, its greatly appreciated-


Dean