View Single Post
02-18-2013, 10:28 PM
#6
Clevertail is offline Clevertail
Clevertail's Avatar
Status: I'm new around here
Join date: Feb 2013
Location: Tampa FL
Expertise: Graphic Design, Web Design
Software: Photoshop, Illustrator, Sublim
 
Posts: 12
iTrader: 0 / 0%
 

Clevertail is on a distinguished road

  Old

No, the css I typed out is in your styled-elements.css. Because you are using tables for your entire layout, just edit the table elements in your html and css.

Alternatively, find all of your table elements and change them into divs. for example: <table>your content</table> would become <div id="main body content"></div>

I would suggest learning a little more about web design and div tags. I don't mean to sound rude, just trying to teach you the best way.

Here are some short things to take a quick look at: http://www.webdeveloper.com/forum/sh...e-TABLE-to-DIV

http://www.chromaticsites.com/blog/1...ebsite-design/

The use of your div tags and the"id" for each div is so that you can later style your div by calling its id in the css.

Hope this helps you.