Changing the Stylesheets
Open 'skins/YOURSKIN/styleSheets'.
New files in v4.0
Copy 'index.php' and 'lightbox.css' from 'skins/classic/styleSheets' to 'skins/YOURSKIN/styleSheets'.
layout.css
This allows you to use the change logo feature in admin. Change....
#topHeader {
text-align: right;
height: 116px;
margin-bottom: 10px;
padding-right: 9px;
padding-top: 0px;
background-image: url(../styleImages/backgrounds/topHeader.jpg);
border-bottom: 1px solid #000000;
}
To...
#topHeader {
text-align: right;
height: 116px;
margin-bottom: 10px;
padding-right: 9px;
padding-top: 0px;
/* SKIN VARIABLE IS cAsE SeNsItIvE */
background-image: url(../../../includes/extra/getLogo.php?skin=Legend);
background-repeat: no-repeat;
border-bottom: 1px solid #000000;
}
Where 'Legend' is the name of the skin.
Add to the bottom of the file....
#imgThumbSpace{
line-height: 0px;
}
#imgThumbSpace img {
padding-right: 3px;
padding-bottom: 3px;
}
style.css
Add to the bottom of the file....
a.flashBasket:active, a.flashBasket:link, a.flashBasket:visited, a.flashBasket:hover {
font-weight: bold;
color: #FFFFFF;
background-color: #66CC33;
text-decoration: none;
font-weight: bold;
padding: 2px;
border: 1px solid #000000;
}
.addCoupon:hover, .addCoupon:active, .addCoupon:visited, .addCoupon:link {
font-weight: bold;
color: #000000;
text-decoration: none;
font-weight: bold;
}
#RatingTop {
border-top: 1px solid #070F72;
border-right: 1px solid #070F72;
border-left: 1px solid #070F72;
background-color: #EBEDFE;
padding: 3px;
}
#RatingMain {
border-right: 1px solid #070F72;
border-left: 1px solid #070F72;
background-color: #EBEDFE;
padding: 3px;
font-style:italic;
}
.ReviewBot {
border-right: 1px solid #070F72;
border-left: 1px solid #070F72;
background-color: #EBEDFE;
padding: 3px;
border-bottom: 1px solid #070F72;
}
#RatingBottom {
background-color: #070F72;
padding: 3px;
border-right: 1px solid #070F72;
border-left: 1px solid #070F72;
color: #FFFFFF;
/*font-size: 11px;*/
}
a.sortLink {
color: #FFFFFF;
font-weight: bold;
text-decoration: none;
}
a.sortLink:hover {
text-decoration: underline;
}
#shipping-select {
width: 220px;
}
|