[HTML] Coding Layouts Made in Paint

Initiate Mage
Joined
Jun 6, 2007
Messages
3
Reaction score
0
I can make layouts in paint. But i dont know how to code them from paint to html? any help here?
 
I'd try not to use float, it's evil, it always messes up something. Instead use a container DIV (which is relative) then you can use absolute DIVs for the real layout. In my experience that works a lot better ;)
 
I'd try not to use float, it's evil, it always messes up something. Instead use a container DIV (which is relative) then you can use absolute DIVs for the real layout. In my experience that works a lot better ;)

Nothing wrong with Float, if the standard is followed. IE just manages to phuck up as usual. :smile:

No, Internet Explorer did not handle it properly - Float Model

But you're right on the other point... Tables bad, CSS good. :thumb:
 
I'd try not to use float, it's evil, it always messes up something. Instead use a container DIV (which is relative) then you can use absolute DIVs for the real layout. In my experience that works a lot better ;)

Hell no, trust me when you make more complicated layout there is nothing worse than makeing relative and absolute because if you forget about some margin or padding or whatever it will cause a huge difference in output in IE or FF so i suggest using floats, simply use divs to split page in to collumns or so and simply use float.
 
Tables, they go fine, but not with IE... IE sucks.. the i cant even exit it normal lol i get a C++ Runtime error.

If i want to shut it, i MUST do ctrl+alt+del ^^

? What are you talking about? HTML won't break IE ^^

Tables: NO! Don't use them for the layout, use them for data lists but not for layouts. They're never meant for that.
 
Hell no, trust me when you make more complicated layout there is nothing worse than makeing relative and absolute because if you forget about some margin or padding or whatever it will cause a huge difference in output in IE or FF so i suggest using floats, simply use divs to split page in to collumns or so and simply use float.

The last time I tried to use float, it gave me huge differences between FF and IE, maybe I did something wrong, that I can never exclude. The way I said to do it hasn't given me problems yet. It was quite hard to get it right, yes, but after that it went perfect in all browsers I tested. (Okay, I didn't take the time to use different resolutions XD) And I am a newb with CSS, never took the time to learn it properly.

Anyway, we all agree on that tables are a big NO.
 
I see them used alot.. ALOT! :P

Or just use DW.. it can make a pro site for you and u only have to do the text, links ^^

Correct, you see them a lot, but does that mean you should use it too? Most webpages are poor design, you should never take the majorities decision just because "everyone uses it".

Oh, and using DW is really the worst thing (or any other software for automatically creating sites) you can do. It gives you way too big pages (A LOT of redundant information) and does not follow HTML strictly. Also does using DW show that you are an unskilled person in webdesign ^^.

Pro site? Noob site ;)

I suck @ CSS, and then suposed to make layouts w/ it? :P

Yes, you are supposed to do it yes. If you ever want to be a good webdesigner you should learn how to make good websites, only then you can call yourself the 1337 ~13 year old in webdesign :P

I always try to tell people to use one particular browser. So i end my website in PHP and tell them using php script to use a different browser because the website cannot be displayed properly on the following browser.

Lol, I wish the browsers would keep to strict HTML...but no, IE hit the thing and made it look awfull. They should come up with a new standard for HTML, one that is smaller, faster and better organised from start (which didn't happen with HTML...thats why every browser handles it differently).
 
Back