- Thank you received: 0
Change the font color on home page
-
johncarter
-
Topic Author
- New Member
-
Less
More
6 years 10 months ago #47283
by johncarter
Change the font color on home page was created by johncarter
How do I change the font color of the articles and designation module on the home page? I've been able to change the main text color which only changes the breadcrums, and the modules on the side. Also, in the designation module is it possible to change the color of the horizontal lines between each small picture/text, and the iPhone style button/dots below the large image?
Please Log in to join the conversation.
-
milos
Support Staff -
- Moderator
-
Less
More
- Posts: 6784
- Thank you received: 720
6 years 10 months ago #47284
by milos
Replied by milos on topic Change the font color on home page
Hello,
You can change the text color for Hot Designation module in DesignNow template if you edit file /templates/hot_designnow/css/template_css.php and change this:
to real colors, in example black #000000:
Dividers are images, you can change the image to change the divider. The image is located in /modules/mod_hot_designation/images/hjt_splitter.png
Best regards,
Milos
You can change the text color for Hot Designation module in DesignNow template if you edit file /templates/hot_designnow/css/template_css.php and change this:
Code:
.hjt-gallery-list-item-content h3 {
color:<?php echo $headingText; ?> !important;
}
.hjt-gallery-container {
color:<?php echo $bodyText; ?> !important;
}
to real colors, in example black #000000:
Code:
.hjt-gallery-list-item-content h3 {
color: #000000 !important;
}
.hjt-gallery-container {
color: #000000 !important;
}
Dividers are images, you can change the image to change the divider. The image is located in /modules/mod_hot_designation/images/hjt_splitter.png
Best regards,
Milos
Please Log in to join the conversation.
Time to create page: 0.196 seconds