Hi Fivecats,
Do you have two problems?
1. The color of title.
Open the template_css.css file in the template folder and search the following code section ( about line 1080 )
#ja-topsl h3 {
margin: 0 0 10px;
padding: 0;
color: #CCCCCC; -> /* color: #FFFFFF; */
}
2. Read more.
You add new the class=”readon” into <a> tag.
ex:
<a class="readon" title="More detail" href="http://www.myperfectholidayrental.com/holiday-rentals/detail/1.html">... Read more...</a>
and add the following code section into the template_css.css file.
#ja-topsl a.readon {
display: block;
color: #FFFFFF; -> /* you can change it by your color */
text-align: right; /* or left */
text-decoration: none;
}
#ja-topsl a.readon:hover {
text-decoration: underline;
}