Many of you asked about it and is actually very simple solution.
Download the last version of MYFP Module V2 Joomla 1.5
In module settings
set
Use H3 tag for Category to No
Open templates/equalizer/css/blue.css (we will use blue color as demo)
find
Code:
a.myfp_news_title,
a.myfp_newscat:hover,
a.myfp_newscat:active,
a.myfp_newscat:focus {
color: #666666;
font: normal 18px Georgia, \Times New Roman\, Times, serif;
display:block;
padding-left:3px;
margin:5px;
background:#f8f8f8 url(../images/titles_blue.gif) no-repeat right bottom;
border:1px solid #c7c6c6;
text-decoration:none;
}
Replace with
Code:
a.myfp_newscat span {
color: #666666;
font: normal 18px Georgia, \Times New Roman\, Times, serif;
display:block;
padding-left:3px;
margin:5px;
background:#f8f8f8 url(../images/titles_blue.gif) no-repeat right bottom;
border:1px solid #c7c6c6;
text-decoration:none;
}
if you want this style for any Joomla Template
get title.gif from templates/equalizer/images
copy and paste to
yoursitename/templates/your_template/images folder
open your template template_css.css file
place this at the bottom of the file
Code:
a.myfp_newscat span {
color: #666666;
font: normal 18px Georgia, \Times New Roman\, Times, serif;
display:block;
padding-left:3px;
margin:5px;
background:#f8f8f8 url(../images/titles.gif) no-repeat right bottom;
border:1px solid #c7c6c6;
text-decoration:none;
}
this would work for both joomla versions
hope this helps