New Forum Header
Posted: 05 Apr 2013 03:16
Nice job on the new header for the Forum .
I have just a couple of suggestions/CSS tweaks to make it look more consistant. Somewhere (the top of the CSS works) add:
The first selector bit just overrides the link colour for the "non-profit organization" hyperlink and the second sets the font to Arial (what the main home page uses, on Windows 7 anyway). That might not work consistantly over all OS's however as not everyone has Arial, but as the main site specifies only Arial for the body font it might be the same. The third just moved the linkBar down a pixel because for some reason it's slighly off otherwise when compared to the main site.
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.:
And then set the spans that contain the images (corners-top, corners-bottom and their child spans) with a CSS property of "background-image: none;". That makes the white corner images disappear, and applies nice CSS3 rounded corners instead. This would require more wok though as the corners are used throughout the style so all rounded conters would need to be changed.
The lower boxes with white corners are still noticable too, so would involve more editing to fully fix.
Cheers, Arite.
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.