PDA

View Full Version : There's just a liiiitle bit of green I can't seem to get rid of


sellis
Jan-01-2008, 09:36 PM
I've done the
a.title, .title, .imgBorderOn {
color: #FFFFFF;
in both my customization CSS and my custom theme CSS to get rid of the green, but it still shows up in the "Page 1 of 3" area on my custom theme.
See it here. (http://samellis.smugmug.com/gallery/4086286#238169825)

It also shows up around some boxes like "add comment"

For the record, I haven't changed all my galleries to the custom theme yet, so don't go poking around the other galleries.

My main site is samellis.smugmug.com and you link to the gallery in question by going to weddings under the portfolio nav button.

BTW, Thanks to all those who have posted tips, tricks and tutorials. This is WAY better than using Dreamweaver!

Sam

Allen
Jan-01-2008, 10:00 PM
I've done the
a.title, .title, .imgBorderOn {
color: #FFFFFF;
in both my customization CSS and my custom theme CSS to get rid of the green, but it still shows up in the "Page 1 of 3" area on my custom theme.
See it here. (http://samellis.smugmug.com/gallery/4086286#238169825)

It also shows up around some boxes like "add comment"

For the record, I haven't changed all my galleries to the custom theme yet, so don't go poking around the other galleries.

My main site is samellis.smugmug.com and you link to the gallery in question by going to weddings under the portfolio nav button.

BTW, Thanks to all those who have posted tips, tricks and tutorials. This is WAY better than using Dreamweaver!

Sam
First add the .menu in front of this.

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}


Change nav and comment border color from green to white. Add this to your CSS.

.smbuttons {border-color: #fff;}
.pageNav {color: #fff;}


The dropdown for Portfolio does not work. The page nav shows thru and when
sliding the mouse down the drop disappears when hitting the nav. Add the
z-index to this to fix. You can best see this in Smugmug_small when the
window is narrow.

/* style the outer div to give it width */
.menu {
z-index: 99;
margin: auto;
padding:0px 0px 15px 0px;
position:relative; /*Make the container moveable*/
width:775px; /*Main bar total width*/
font-size:0.85em;
padding-bottom:30px; /*Padding between the bottom of your mainbar and the rest of your page */
}

sellis
Jan-01-2008, 10:16 PM
First add the .menu in front of this.

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}


Change nav and comment border color from green to white. Add this to your CSS.

.smbuttons {border-color: #fff;}
.pageNav {color: #fff;}


The dropdown for Portfolio does not work. The page nav shows thru and when
sliding the mouse down the drop disappears when hitting the nav. Add the
z-index to this to fix. You can best see this in Smugmug_small when the
window is narrow.

/* style the outer div to give it width */
.menu {
z-index: 99;
margin: auto;
padding:0px 0px 15px 0px;
position:relative; /*Make the container moveable*/
width:775px; /*Main bar total width*/
font-size:0.85em;
padding-bottom:30px; /*Padding between the bottom of your mainbar and the rest of your page */
}

Thanks Allen!
I hadn't seen the issue with the dropdown menu in FF or IE7. What browser were you using.

Regardless, added the z-index anyway.

Thanks for the previous help too, in case you didn't see it since it took me a few days to get back to it.

Sam

Allen
Jan-01-2008, 10:21 PM
Thanks Allen!
I hadn't seen the issue with the dropdown menu in FF or IE7. What browser were you using.

Regardless, added the z-index anyway.

Thanks for the previous help too, in case you didn't see it since it took me a few days to get back to it.

Sam
Using FF. You have to narrow the page so the drop is above the page nav.