Hi,
It appears the image files url in the menu.css file is linked directly to our server. If you look for this bit of code:
| Code: |
#topmenu li a {
color: #fff;
font-weight: bold;
text-decoration: none;
text-transform: lowercase;
padding:0 9px 0 0;
background: url(http://www.joomlajunkie.com/commercial/ifresh/templates/ifresh/images/topmenu-rightbg.gif) top right no-repeat;
}
#topmenu li a span {
font-size:12px;
padding: 0 3px 0 12px;
background: url(http://www.joomlajunkie.com/commercial/ifresh/templates/ifresh/images/topmenu-leftbg.gif) top left no-repeat;
}
|
Replace with:
| Code: |
#topmenu li a {
color: #fff;
font-weight: bold;
text-decoration: none;
text-transform: lowercase;
padding:0 9px 0 0;
background: url(../images/topmenu-rightbg.gif) top right no-repeat;
}
#topmenu li a span {
font-size:12px;
padding: 0 3px 0 12px;
background: url(../images/topmenu-leftbg.gif) top left no-repeat;
}
|
We use hard coded links during development, this should have been removed but was missed when packaging the template....too many late nights
Sorry for that, but this should sort you out.
All the best.