Hi,
How do i change the text colours/styles in product details?
I especially want to change the price colour to make it stand out more, both within the product details and on the front page within 'latest products'.
I don't know which css file does this?
How do i change the text colours/styles in product details?
I especially want to change the price colour to make it stand out more, both within the product details and on the front page within 'latest products'.
I don't know which css file does this?
Well, you won't found any css for this product attributes. Go in your theme folder, template/product/product.tpl, and look for these lines:
You can simply do this..:
Thanks
Code: Select all
<tr>
<td><b><?php echo $text_price; ?></b></td>
<td><?php if (!$special) { ?>
<?php echo $price; ?>
<?php } else { ?>
<span style="text-decoration: line-through;"><?php echo $price; ?></span> <span style="color: #F00;"><?php echo $special; ?></span>
<?php } ?></td>
</tr>
Code: Select all
<span style="text-decoration: line-through;color: #YOURCOLOR;"><?php echo $price; ?></span>
Thanks
Maybe someone could help me out. I am trying to change the text color of the links in the categories module, and everywhere else for that matter, from blue to charcoal to match my template theme and cannot figure it out. Does anyone have specific instructions on doing it?
Thank you,
Sully
Thank you,
Sully
Thank you,
Sully
Hi Sully
In the stylesheet, catalog/view/theme/YOUR-THEME/stylesheet/stylesheet.css look for:
All the links are styled from there: so you can just change the link color to any other color you wish.
You can style links individually in different places if you want to, eg #category ul a, but the link color and style otherwise default back to the above. Hope that helps
In the stylesheet, catalog/view/theme/YOUR-THEME/stylesheet/stylesheet.css look for:
Code: Select all
a, a:visited {
color: #1B57A3;
text-decoration: underline;
cursor: pointer;
}
You can style links individually in different places if you want to, eg #category ul a, but the link color and style otherwise default back to the above. Hope that helps
Who is online
Users browsing this forum: No registered users and 15 guests