unicykel 0 Report post Posted December 13, 2004 I am using Deramweaver to make my homepage, but I have a challenge. I can not get my logo (a GIF grafic) all the way to the edge of the browser.I guess I will have to insert some code manually. I dont thing Dreamweaver can do it.Can anyone help me with some code? Share this post Link to post Share on other sites
ChronicLoser 0 Report post Posted December 14, 2004 all the way to the edge? You mean either on the left or right? Just set the margins to 0 (zero) and it should work. I'm sure Dreamweaver is capable of this...but I'm not a hundred percent sure being that I'm a notepad user =Pif all else fails, put this as your body: <body margins="0">or do it through css:<style>body{margin:0;}</style> Share this post Link to post Share on other sites
unicykel 0 Report post Posted December 15, 2004 Thanks. That is part of the solution. The problem is that it takes EVERY THING to the boarder.The logo is in the same frame as my menu, and the menu is not going to bee all the way to the edge.How can I get it to be only the picture?I first tried to use the pure code, but I could not figure out where to place it. In what area of the coding is that going to be? Share this post Link to post Share on other sites
lhunath 0 Report post Posted December 16, 2004 <img style="float:left;" src="">or float: right; whatever.CSS rules your behind. Share this post Link to post Share on other sites
Xaine 0 Report post Posted December 19, 2004 Another way is this <divstyle="position:absolute;left:0;top:0;WIDTH=0;HEIGHT=0;"> You can set it anywhere by changeing the top and left poistion. Its in pixals as usual and you can set it anywhere. Its a good bit of code even if there are shorter ways to go about it. Share this post Link to post Share on other sites
Tobias 0 Report post Posted April 11, 2005 I'm going to say the best way would be by CSS. <html><head><title></title><style type="text/css">body {margin: 0;padding: 0;}</style></head><body><img src="YOUR URL" width="?" height="?"></body></html> That should do the trick. Share this post Link to post Share on other sites