daquess Posted January 28, 2009 Report Posted January 28, 2009 (edited) I'm not trying to "bleed" anyone dry, but I've learned more from this site than any tutorial site ever. So with all of the tutorials, "why am I posting in Web Designing?". 1. I first began learning html with the version 3.2.... (not surprised if everyone's saying 'Eww') 2. While I still learn a lot daily, tutorials don't answer the questions I don't understand. and 3. I'm still a noobie with designing. Here's a sample page from my site, which I built myself a few years ago, but now I'm incorporating some of my newly acquired knowledge. http://set-n-art.com/Services.html sorry you can't right click to view source, but view up top works fine. After you see, should I just start from scratch, or leave it alone and deal with it? I still don't know how to layout pages without tables, nor how to properly use the div tags. This is after many, many hours of tutorials that don't explain what I don't get. All html for the page I made in note book, then put on web, then fixed, then forced in div tags, and adjusted until this result. Edited January 28, 2009 by daquess Quote
newseed Posted January 28, 2009 Report Posted January 28, 2009 Trying to fix up an old site can be time consuming and confusing. Keep the site as is and build a new one from scratch using divs and css. Just post here when you have an issue in trying to get things to work. Quote
daquess Posted January 28, 2009 Author Report Posted January 28, 2009 (edited) Can anyone tell me a better tutorial for css? I've search "many moons"(lol) and choosing styles for font - easy links/backgrounds/colors - not a problem but making tables with that.., how is that even possible??? Please help me find where I can learn what the "cascading" part of css is. if thats where tables are created. and of course HOW TO USE IT. Thanks in advance Edited January 28, 2009 by daquess Quote
newseed Posted January 28, 2009 Report Posted January 28, 2009 Google is your best friend. Just search for CSS Tutorials. Meanwhile, you can check out Killersites tutorials. Quote
daquess Posted January 28, 2009 Author Report Posted January 28, 2009 (edited) Thanks I think I did find the link here. for anyone else who needs it www.killersites.com/web-design/videos/css-page-layout-comment.php This is the best, Thanks killersites and of course, newseed Edited January 28, 2009 by daquess Quote
Susie Posted January 28, 2009 Report Posted January 28, 2009 I agree with newseed - I would just leave the old one alone and start fresh on a new design. One comment...I would not focus on how to make tables, but rather how to use CSS divs. We are here to help if you have any specific questions. Just think of divs as boxes that you place on your site. The fun is trying to fit all the boxes together to make a pleasing layout. Here is where you might start: Header items go here Navigation items go here Content goes here Then you would just use CSS to position those divs. For example (and these are VERY general): #container { width: 850px; margin: 20px auto; } #header { width:830px; margin: 0 auto; } #navigation { width: 830px; height: 40px; margin: 10px auto; } #content { width: 830px; margin: 0 auto; } #footer { width: 830px; margin: 0 auto; } When I was learning, it always helped me to see things typed out. Let us know what questions you have! Quote
daquess Posted February 4, 2009 Author Report Posted February 4, 2009 thanks I really feel like I'm getting away from tables. And I've been trying to do that for a while. Haven't had a problem that I couldn't figure out so far. I will take you guys up on the offer if I do. Quote
LSW Posted February 5, 2009 Report Posted February 5, 2009 Tables should only be used for tabular data, then you just style it with CSS, not make it. Think of a tackle box, or tool box, you know the segregated ones? That is like tables, rigid compartments you can only modify slightly and are always aligned horizontally. Divs are like an empty box, you can add many more divs or other elements into it as you please and move them around freely with only each other or the outer walls as limitations. You can put items in exactly the pixel position as you want, which is difficult if not impossible with tables. You can always stay with a look, but I prefer starting from scratch rather than trying to change code. Just do it right rather than mucking around with mistakes. Quote
logo_creator Posted February 6, 2009 Report Posted February 6, 2009 I'm new here I find people here at killersites are very helpful and nice. @dequess I think they are right you should leave your design and start a new one. Quote
daquess Posted March 24, 2009 Author Report Posted March 24, 2009 You guys have helped me so much, you don't even know. I'm working on this site at it will be spectacular. probably coming this summer. To practice css I built the uPressed website, and I'm starting set-n-art's new site now. I did use dreamweaver for uPressed, but set-n-art will be from scratch. Just wanted to say thanks for the help and I'll repost if I can't figure something out or finish without a problem. Quote
Issy Posted March 24, 2009 Report Posted March 24, 2009 Tables should only be used for tabular data, then you just style it with CSS, not make it. Think of a tackle box, or tool box, you know the segregated ones? That is like tables, rigid compartments you can only modify slightly and are always aligned horizontally. Divs are like an empty box, you can add many more divs or other elements into it as you please and move them around freely with only each other or the outer walls as limitations. You can put items in exactly the pixel position as you want, which is difficult if not impossible with tables. You can always stay with a look, but I prefer starting from scratch rather than trying to change code. Just do it right rather than mucking around with mistakes. That was one of the best explinations I have heard of for tables and Divs. Quote
LSW Posted March 24, 2009 Report Posted March 24, 2009 Glad it helps, it was how I finally made the switch, messing around with an old tackle box and made the connection in a "Duh! Why did you bnot see that before, tables and CSS *slap forehead*!" moment. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.