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

Store UI, layout, design, look and feel; Discussion on the customer facing pages of your online store. Cascading Style Sheets, Themes, Scriptlets, NVelocity and the components in the ConLib directory.
Post Reply
Autowerks
Ensign (ENS)
Ensign (ENS)
Posts: 12
Joined: Mon Oct 06, 2008 6:10 pm

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

Post by Autowerks » Mon Oct 06, 2008 8:30 pm

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.

User avatar
compunerdy
Admiral (ADM)
Admiral (ADM)
Posts: 1283
Joined: Sun Nov 18, 2007 3:55 pm

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

Post by compunerdy » Mon Oct 06, 2008 9:17 pm

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; }

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

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

Post by mazhar » Tue Oct 07, 2008 4:29 am

compunerdy is right. It should be this line.

Autowerks
Ensign (ENS)
Ensign (ENS)
Posts: 12
Joined: Mon Oct 06, 2008 6:10 pm

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

Post by Autowerks » Tue Oct 07, 2008 10:45 am

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>

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

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

Post by mazhar » Tue Oct 07, 2008 10:59 am

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.

Autowerks
Ensign (ENS)
Ensign (ENS)
Posts: 12
Joined: Mon Oct 06, 2008 6:10 pm

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

Post by Autowerks » Tue Oct 07, 2008 11:09 am

Got it!

Thank you both for your help, its greatly appreciated-


Dean

Post Reply