Dear chris nestoridis,
a)module sj_mega_news
go to "templates/sj_news25/css/template.css", finding:
.moduletable.mega-news span.title_bg {
background: url("../images/bg_title_span.png") repeat-x scroll left 1px transparent;
display: inline-block;
height: 31px;
left: -1px;
line-height: 31px;
padding: 0 10px;
position: absolute;
}
=>
.moduletable.mega-news span.title_bg {
background: url("../images/your_image") repeat-x scroll left 1px transparent;
display: inline-block;
height: ...;
left: -1px;
line-height: ...;
padding: 0 10px;
position: absolute;
}
b)module sj_latest_news
go to "templates/sj_news25/css/template.css", finding:
.moduletable h3, .moduletable_menu h3, .moduletable_text h3 {
background: url("../images/bg_title_h3.png") repeat-x scroll 0 0 transparent;
color: #000000;
font-size: 120%;
font-weight: normal;
height: 35px;
line-height: 37px;
margin: 0;
padding: 0 11px;
text-transform: uppercase;
}
=>
.moduletable h3, .moduletable_menu h3, .moduletable_text h3 {
background: url("../images/your_image") repeat-x scroll 0 0 transparent;
color: #000000;
font-size: 120%;
font-weight: normal;
height: ...;
line-height: ...;
margin: 0;
padding: 0 11px;
text-transform: uppercase;
}
c)module sj_basic_news
go to "templates/sj_news25/css/template.css", finding:
.moduletable.border2 h3 {
background: none repeat scroll 0 0 #00497C;
color: #FFFFFF;
}
=>
.moduletable.border2 h3 {
background: none repeat scroll 0 0 your background color;
color: #FFFFFF;
}
Thanks