View Single Post
Old 01-07-2013, 03:03 PM   PM User | #8
loamguy1
Regular Coder

 
Join Date: Nov 2007
Posts: 106
Thanks: 13
Thanked 0 Times in 0 Posts
loamguy1 is an unknown quantity at this point
Code posted below:

Please note the "top" div is inside the "main-container" div which is inside the "shadow-container" divs.

And it is the "top" div I'd like to remove the shadow borders from.

Code:
body {
	background: url(img/msw-site-bg-notopblack.jpg) no-repeat top center;
	background-color:#fff;
	background-attachment: fixed;	
}

#shadow-container {
	width:1023px;
	margin: 0px auto 0;
	background: transparent url(img/BackgroundShadow_right.png) repeat-y right top;
}

#shadow-border-left {
	background: transparent url(img/BackgroundShadow_Left.png) repeat-y left top;
} 

#main-container {
	width:969px;
	margin: 0px auto 0;
}

#top {
	height:140px;
	z-index:500;
	position:fixed; 
	width:969px;
	padding:0px;
	top:0px;
	background-image:none;
}
loamguy1 is offline   Reply With Quote