- Posts: 82
- Thank you received: 1
Change font sizes on certain areas & colors.
- FreshIdeas
-
Topic Author
- Offline
1 - Product category display ( See link ). Would like the category names to be 1 size larger.
2- Price on product page - would like to be larger.
Thank you.
Would also like to change the COLOR of the product name on Product Listing Page. The font color assigned by the template is yellow - hard to read on the white background. Would only like to change the color when the background is WHITE. Don't want to change the background as most of the images have a white background and it looks much cleaner with a white rectangle rather than a different color.
Please Log in or Create an account to join the conversation.
The class for the category name is: hikashop_category_name
For the price: hikashop_product_price
For the products name : hikashop_product_name
Please Log in or Create an account to join the conversation.
- FreshIdeas
-
Topic Author
- Offline
- Posts: 82
- Thank you received: 1
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- FreshIdeas
-
Topic Author
- Offline
- Posts: 82
- Thank you received: 1
/* category display */
div.hikashop_category_image{
clear:both;
}NEW STARTS HERE.... (not included in the CSS - these words)
hikashop_category_name
font-weight: bold;
font-size: 200%;
color: #FFFFF;
}
did not make a difference....
Correction: It changed the MAIN category name (the name at the top of the page). I need to change the category names UNDER THE PICTURE. See link See link [/url]
Please Log in or Create an account to join the conversation.
It should be:
.hikashop_category_name{
font-weight: bold;
font-size: 200%;
color: #FFFFF;
}
Please Log in or Create an account to join the conversation.
- FreshIdeas
-
Topic Author
- Offline
- Posts: 82
- Thank you received: 1
Please Log in or Create an account to join the conversation.
/* category display */
div.hikashop_category_image{
clear:both;
}
.hikashop_category_name{
font-weight: bold;
font-size: 100%;
color: black!important;
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
You need to do like that instead in order to override your template's CSS override:
.hikashop_category_name a{
font-weight: bold;
font-size: 100%;
color: black!important;
}
Please Log in or Create an account to join the conversation.