Hello everyone. I just had a quick question. I use dreamweaver and when I build a page and add in an image as a header there is an indent on the top and sides of the image. How can I stop that and make it line up on the top and sides? Does anybody know how to set the page width on dreamweaver? thanks all.
By default the margins are not set to zero. So there's 2x ways to rectify this... Go to MODIFY > PAGE PROPERTIES and set all the margins to 0 pixels. This will simply dump a style in the head of your page for your body tag as such: <style type="text/css"> <!-- body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } --> </style> Code (markup): Alternately just put that same style in your head but use the much simpler method: <style type="text/css"> <!-- body {margin:0;} --> </style> Code (markup): Alternately put that style in a separate css file Yeah, I know, that was 3 options not 2, but that's value for money for ya