Quote:
Originally Posted by jellybaby
Is anyone able to help with the following please:-
1. I am trying to add this template but make a few changes. I have found that when I change the background colour it performs differently in Firefox to Internet Explorer, if I change the font colour so it looks right in IE its out in Firefox and vice versa, any ideas please?
2. For some reason when I change the width of forum its not changing top section. Again, any ideas?
Forum can be viewed at http://www.mumszone.co.uk/forums but you need to change to Fresh Blue on bottom right hand of screen. Any help much appreciated.
Thanks
|
1. I'm not sure exactly what you mean. If you're talking about the
header image having a different colour around its edges I think it's fairly likely that's because IE isn't very good with PNG images. Try that as a GIF of JPEG and that problem should be fixed. You mention font colours, but they all look standard?
2. To change the overall width you need to edit #freshbluecontainer and #fbfooter in the additional CSS definitions. I have just tested changing these ids and the end result is
this (only a temporary link, I'll change it back to the default later). To achieve that you need to change the forum width setting to what it was before and then make these changes:
Replace #freshbluecontainer with:
Code:
#freshbluecontainer {
background-color: #FFFFFF;
background-image:url(images/freshbluetemplate/bodybg.gif);
background-position:right;
background-repeat:repeat-y;
width: 800px;
margin: 0 auto;
}
Replace #fbfooter with:
Code:
#fbfooter {
background-image:url(images/freshbluetemplate/footerbg.gif);
background-repeat:repeat-x;
height: 84px;
width:800px;
margin: 0 auto;
}
Where 800px is the width you are aiming for.
(I might as well release this as a fixed width version now I guess!)