Wed May 16, 2007 1:04 pm
Wed May 16, 2007 1:12 pm
Wed May 16, 2007 4:54 pm
Ixist wrote:This looks like a good website for help with CSS, and it's by the W3C so you KNOW it's good!
http://www.w3schools.com/css/default.asp
Wed May 16, 2007 4:59 pm
Wed May 16, 2007 5:29 pm
Demulesca wrote:The handbook will have some awesome links for you to check out:
http://www.alvit.de/handbook/
And if you're just just starting out,
http://www.tutorialtastic.co.uk/
Jem has always had some nifty tidbits to read.
If you have firefox, I suggest you download the Web Developer Toolbar. When learning, it's fantastic as you edit the CSS of a webpage in real time, letting you see the changes immediately without having to upload anything.
I hope you have fun learning CSS.
Wed May 16, 2007 8:06 pm
Wed May 16, 2007 8:22 pm
Wed May 16, 2007 8:29 pm
Wed May 16, 2007 9:26 pm
Wed May 16, 2007 9:45 pm
Wind wrote:I came here to make a CSS topic but I was beaten to it
I've been trying to make a layout for a petpage and I wanted to use CSS, but it's a bit confusing is there a way to prevent it from stretching my tables?
Thu May 17, 2007 1:18 am
Thu May 17, 2007 10:32 am
Demulesca wrote:It should be changing immediately on the spot. If you go to any user look-up, click CSS on the toolbar and then edit.
If you're editing it, it should be changed immediately. You shouldn't even need to click apply. It depends on the page also, several pages use different stylesheets and you have to edit certain ones to get the changes you want.
If you want to see a change, go to my user look-up (demulesca) and then click on the embedded styles tab in your Edit CSS Dev Toolbar. Change a few values around (work with the colours first) and you should see the values changing.
You can apply a stylesheet to any page that allows editing, it's just embedded and not external. You can add additional stylesheets that are embedded, as many as you like as long as the CSS is between style tags.
wind... show me the problem and I'll help you with it.
I can see to creating a CSS tutorial on PPT forums, if time allows me to.
Thu May 17, 2007 11:30 am
<html>
<style>
body {
background-color: #ddd;
color: #333;
font-family: Arial, sans-serif;
}
h1 {
font-family: Times, serif;
font-size: 14px;
color: #336699;
}
a {
color: #FF9900;
font-weight: bold;
}
.important {
color: red;
}
</style>
<body>
<h1>This is a test heading</h1>
<p>There is some content text here.</p>
<p class="important">And another paragraph of context text, with a <a href="#">link</a>.</p>
</body>
</html>
Thu May 17, 2007 12:36 pm
Thu May 17, 2007 1:26 pm