I thought I attached it... It's now attached.
Main Topics
Browse All TopicsPlease see the attached image. You can see the image with the gradient from green to blue. The div containing this image spans the entire width of the page. I need to style the div so that the left side is the same green as in the image, and the right side is the same blue as in the image. This way, the green to blue will span the entire page width. I'm using the attached code, but this doesn't work. What do I need to do? Thanks in advance.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Maybe this will help. See the page here: www.mwebdev.com/jp.html
I could not get the problem...
http://bluespainting.com/j
those colors are coming from the image, not your style...
there is a .head-rowtop style, from there remove no-repeat and %50...
If you want the top gradient bar to extend all the way to the edge of the page - green going to the left edge and blue going to the right edge, your best bet is to create your header image to be 7px deep and then 2000px wide. Just make sure that your gradient only uses the middle 980px. the left 510px only uses your green and the right 510px only uses your blue.
Then instead of setting the background image to your head_rowtop, set it to the body.
body {
background: transparent url(images/top-bar.gif) no-repeat top center
}
As long as the browser window isn't wider than 2000px then you won't have a problem.
is this you want?
left will be green, right will be blue, and in the middle you will have your page...
right now you have this
<div class="min-width">
<div id=main>....</div>
</div>
make it like this
<div class="min-width">
<table width="%100">
<tr>
<td bgcolor="#7E8A37"> </td>
<td><div id=main>....</div></td>
<td bgcolor="#5694B5"> </td>
</tr>
</table>
</div>
Business Accounts
Answer for Membership
by: HainKurtPosted on 2009-10-27 at 18:25:03ID: 25679257
attached image?