How can I make my web page smaller?
i'm sure there's simple answer - when preview webpage in browser, takes entire page. there way can shrink there maybe inch or 2 gap between content , edge of browser? i'm hoping there's easy answer scale of contents well, don't have change sizes.
yes there easy way without seeing structure of layout, can generalise solution this:
body {
margin: 0 30px;
}
you need put above code either in style sheet or @ head of webpage this:
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<title>untitled 1</title>
<style type="text/css" media="all">
body {
margin: 0 30px;
}
</style></head>
the first code when using separate style sheet while second code when have 1 page want adjust , insert code @ appropriate location shown in code.
if still have problem please post link of page can you.
good luck.
More discussions in Dreamweaver support forum
adobe
Comments
Post a Comment