Hey i have made a Web Layout in Microsoft Paint and have Dragged it into Dreamweaver , How do i add Div's and Splice it As it is In dreamweaver as A Img? Please help Or tell me what ive got to do. Thanks:cross-eyed:
Hey i have made a Web Layout in Microsoft Paint and have Dragged it into Dreamweaver , How do i add Div's and Splice it As it is In dreamweaver as A Img? Please help Or tell me what ive got to do. Thanks:cross-eyed:
Dragged a bitmap into Dreamweaver? DW does not splice for one thing. Generally slicing is done through Photoshop or Fireworks and is not the way to do a website. Get the basics first. Don't be like a typical newbie and make an image, slice and dice it, put it into tables, and call it a website.
Learn HTML
Learn CSS
Yeah i I have made it through CSS now thanks anyway.
You know CSS? Should be good to go then. Are you wanting to use this as backgroung image?
I have uploaded my site i've been workin on tonight , but for some reason It goes all funny when i open it in IE but is Fine in Firefox?
http://head-rush.webs.com/
there it is, can any of you tell me whats going on with it? thanks.
Fix your validation errors and then see how it looks. You have clear:both; in your html file not within <style> tags. You have <body background> but no background specified (should be something like <body background="background.jpg">). You have a <div> start tag and an
<img />between a <ul> and <li>, they need to be above the <ul>. This is causing all of the list items in that list to be errors. You forgot to close an <li>.You closed a <p> that doesn't exist. Then you have a <ul> for your footer information, with no <li></li>, and <strong> tag not within a <p> or <div>. The first step in coddling IE is to make sure the page validates. Then you look at your positioning, and learn about IE's crappy box model, and the 3px jog, and collapsing margins, and doubling margins/padding.....
Semantic, Valid, and Accessible Design!