PDA

View Full Version : Bio Box Remove?


butterflykiss004
Feb-25-2009, 10:35 AM
Hi, I'm trying to figure how to remove the black bio box behind my slide show on my homepage, is there a way to remove it?

http://butterflykiss.smugmug.com/

Allen
Feb-25-2009, 10:41 AM
Hi, I'm trying to figure how to remove the black bio box behind my slide show on my homepage, is there a way to remove it?

http://butterflykiss.smugmug.com/

Change this existing rule in your CSS and add the second one to center your show.
Need the !important; to override the themem.

#bioBox {
background: none !important;
border: none !important;
}

#homepage,
#bioBox {
margin: 0 auto;
width: 920px;
}

J Allen
Feb-25-2009, 10:41 AM
Hi, I'm trying to figure how to remove the black bio box behind my slide show on my homepage, is there a way to remove it?

http://butterflykiss.smugmug.com/

This will remove the background:


#bioBox
{background:none !important;}


This will remove the border around the slideshow and from your gallery pages:


.galleryPage,
.boxBottom,
.boxTop,
.box
{border: none !important;}

butterflykiss004
Feb-25-2009, 10:46 AM
Thank you so much :clap