1 onmillertime Feb 11, 2009 16:05
3 onmillertime Feb 11, 2009 16:09
4 sam2kb Feb 11, 2009 16:16
In style.css edit the title margin on line 198
h3.bTitle {
margin: 0 1ex;
color: #000000;
}
to
h3.bTitle {
margin: 0 1ex 0 0;
color: #000000;
}
Play with the last margin 0 to get exactly what you need
5 onmillertime Feb 11, 2009 16:27
I moved the second zero in 1ex 0 0 all over the place and it didn't affect it at all. It is so strange because it is fine when the page first loads and then jumps when it is finished?
Any other ideas? I really appreciate this...Thank you!
6 sam2kb Feb 11, 2009 17:16
Are you trying to remove the white space to merge blue title squares to the sides?
If so, edit the following
div.bTitle {
clear: both;
margin: 1ex 1ex 0 1ex;
padding: 5px 0 4px 0;
background-color:#06a3c4;
}
to
div.bTitle {
clear: both;
margin: 1ex 0 0 0;
padding: 5px 0 4px 0;
background-color:#06a3c4;
}
Can you post a link?