I have just a couple of suggestions/CSS tweaks to make it look more consistant. Somewhere (the top of the CSS works) add:
Code: Select all
.noUnderline {
color: #0070BB !important;
}
.blue {
font-family: Arial;
}
#linkBar {
margin-top: 11px !important;
}
body, html {
background: url("//images.videolan.org/style/images/background.png") repeat-x scroll center top #FFFFFF;
}
The font (second selector bit) one is the most noticable (on Windows anyway) as the font is calculated from a phpBB class as "Verdana,Helvetica,Arial,sans-serif" instead of "Arial".
The fourth bit sets the background for the html tag as well as the body so that, in the event of the page content being shorter than the browser window, the background gradient continues instead of being cut off with the page below being white.
Before:
After:
^I also "fixed" the rounded corners on the navbar (ther bar below the VideoLAN one - where the UCP links are etc.). If you wanted to get rid of the white corners (as they stand out against the gradient) you could do e.g.:
Code: Select all
.navbar {
border-radius: 8px;
}
The lower boxes with white corners are still noticable too, so would involve more editing to fully fix.
Cheers, Arite.