Light backgrounds and the user menus
rutt
Registered Users Posts: 6,511 Major grins
I set my backgrounds to "light". When I leave a gallery's style as "User Controlled", the pull down menu that shows up has colors that look great with a dark background, but ugly against a light background. Can I control this somehow?
If not now, when?
0
Comments
I put this in my css section:
I also tried:
But neither changed the color of the background of this box. What am I doing wrong?
Thanks! Spelling never was my strongest suit.
Since you fixed this, you probably can see why I want control over the position of this thing.
http://photos.mikelanestudios.com/
Depending on exactly where you want to locate this box, you should be able to use the position (absolute or relative) CSS attribute along with the left and top CSS attributes.
If you use absolute positioning, the top and left CSS attribute values are referenced from the top left of the window.
If you use relative positioning, the top and left CSS attribute values are referenced from the elements current position.
Check out this url, i have moved the box to the left hand side of the screen by using...
.menubox { position: relative; left: -600px;}
Hope this helps.
Cheers,
David
SmugMug API Developer
My Photos
table.menubox { position: relative; left: -600px;}
David
SmugMug API Developer
My Photos