Quote:
Originally Posted by ronoxQ
Nice theme! Unfortunately, my forum won't show the cat_top_bg image. How do I fix that? (All other images work perfectly.)
|
I had this problem too, to fix you need to go the styles main css and scroll down to the additional CSS section and change this:
Code:
.cat-top {
padding: 0;
margin: 0;
background: url(images/FH_Faddah/misc/cat_top_bg.gif);
width: 100%;
text-align: center;
color: #004669;
font-weight: bold;
font-size: 11px
}
To:
Code:
.cat-top {
padding: 0;
margin: 0;
background: url(images/FH_Faddah_F/misc/cat_top_bg.gif);
width: 100%;
text-align: center;
color: #004669;
font-weight: bold;
font-size: 11px
}
There's also another one in that section that's wrong too:
Change this:
Code:
#footer {
background: url(images/FH_Faddah/misc/footer_bg.gif);
height: 40px;
width: 100%
}
To:
Code:
#footer {
background: url(images/FH_Faddah_F/misc/footer_bg.gif);
height: 40px;
width: 100%
}