Are you talking about the grey border around the picture? If so, it look like those styles have been applied inline to the html. When I inspect the image in the page "my locker" I see this html.
<div id="banner" class="player1" style="border:1px solid grey;"> <div id="banner_picture" style="height:280px; border:1px solid grey; display:visible;"> <div id="picture"> <img width="698" height="280" src="http://sbga.golfassets.tv//images/seve_banners/group2/32.png?1311145734" alt="32"> </div> </div> </div> Notice the style being applied to the html "border: 1px solid grey" That is causing your border. Try adding this to your css: #banner #banner_picture{ border:none!important; } On Jul 20, 2011, at 3:53 AM, Erwin wrote: > on some pages of our site, http://www.seveacademy.com I have a > background image displaying grey borders I would like to get > suppress .. I don't know how and where to make it none or at least > transparent > > html code : > > <div class="homeBgImage"> > <h2>Welcome to the Seve Ballesteros Golf Academy.</h2> > <p>A world leading instr.....</p> > <p>The Seve .....career</p> > <p>When .....Foundation.</p> > <p style="font-weight: bold; ">So join us now – learn, improve, > share and enjoy – and all for a great cause!</p> > </div> > > CSS > > homeBgImage { > height: 445px; > background-color: #1e1e1e; > background: url(../images/seve-images/homepageimage_8.png) > no-repeat bottom right; -moz-box-shadow: 0px 0px 0px white; > } > > -- > -- > You received this because you are subscribed to the "Design the Web with CSS" > at Google groups. > To post: [email protected] > To unsubscribe: [email protected] -- -- You received this because you are subscribed to the "Design the Web with CSS" at Google groups. To post: [email protected] To unsubscribe: [email protected]
