Hi! If I want a picture as background instead of a color, how do I change the style.css?
It looks life this now:
.tableh1 {
background : #0E72A4 ;
color : #FFFFFF;
padding-top: 3px;
padding-right: 10px;
padding-bottom: 3px;
padding-left: 10px;
}
.tableh1_compact {
background : #0E72A4 ;
color : #FFFFFF;
padding-top: 2px;
padding-right: 5px;
padding-bottom: 2px;
padding-left: 5px;
And I want it to be pic3.gif instead of #0E72A4
Also I can't find where to change the meny color. The one where it says "Album", "Log in", FAQ, Profile etc.
It remains blue whatever I do =/
Thanks for a super galleri!
To use an image as the background, put the image in the themes/yourtheme/images folder, and change the css to this;
background-image: url(images/your_image_name.gif);
To change the colour of the menu, change this;
.topmenu a {
color : #0033CC;
text-decoration : none;
}
.topmenu a:hover {
color : #0033CC;
text-decoration : underline;
Thanks a lot!
Problems are solved! :D