• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

Simple task bugging me!

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    Simple task bugging me!

    Guys,

    I need to create a web page in a specific size, does anyone know the HTML for this or how to specify in dreamweaver 8?

    I need to make the web page -

    W: 360
    L: 404

    HELP!

    #2
    Originally posted by NewbieContractor
    Guys,

    I need to create a web page in a specific size, does anyone know the HTML for this or how to specify in dreamweaver 8?

    I need to make the web page -

    W: 360
    L: 404

    HELP!
    wrap the contents in a div set to 360*404


    <html>
    <head/>
    <body>
    <div style="height:404px;width:360px;">

    you content here

    </div>
    </body>
    </html>
    whats the lowest you can do this for?

    Comment

    Working...
    X