-
Content Count
32 -
Joined
-
Last visited
Community Reputation
0 NeutralAbout Primal
-
Rank
Newbie
Previous Fields
-
Languages
HTML, CSS, a little JavaScript
Contact Methods
-
Website URL
http://
-
ICQ
0
Profile Information
-
Location
Atlantic Canada
-
Interests
New & Future Science<br />Making Stuff<br />Ogame<br />Writing Code
-
Ohhhh!!!! Wow, I'm a noob. Sorry for time wasting, and thanks a lot for helping.Prymal
-
I was trying to validate another website I was tweaking for a friend when I kept getting a bizarre error that I didn't understand. So I tried to validate a bare-bones webpage, and I still got the same error. Here's the page I tried in: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /></head><body></body></html> And here's the error message: Ca
-
It's a page you can normally only get to if you enter login information. The page is generated by a program used for recording grades. The url after you enter your student id is the same for everyone, so if you just enter the url, it gives you a page that says that your login information is incorrect. It is not, however, a secure page, so is there some way I maybe have it automaticly enter the login information when you click on the link, or otherwise have it open the right page, with my marks on it?Thanks,Prymal
-
I don't know if this is the right forum for this question, but I am writing a portfolio and I want to like to a .asp page. (A page generated by asp, maybe?) Is this possible, and if so, how would I go about doing it?Thanks,Prymal
-
Well then how do I change that?
-
Yes, I want to make the actual cells coloured. I tried using bgcolour, but it doesn't print. What browser do you know of that lets you print backgrounds. I tried with IE6 and with Netscape8 with which supposedly renders as Firefox, but neither worked.
-
OK. I'm making a table to layout a tournament, and I am using colour coding to represent win, loses etc. How would I make it so that these colours will print. The toutorial suggests using the background-color class, but background colours don't print.Ideas?Thanks,Primal
-
Alright, then how would I do it with JavaScript?Primal(um... mods? you might want to move this to another forum)
-
I know that you can edit the colors of the scroll bar with css, but can I, and how would I go about making the Scroll bar have curved edges?Thanks,Primal
-
Alright, no thanks. I'm still learning HTML (but more javascript) right now, and I'm not ready to start XML. I know CSS, and so when vchris said that I could use CSS I would have tried that. But as you can see he hasn't answered, so I guess I'll start with plain HTML.Primal
-
Alright, how would I do it with CSS? I don't like HTML generators, thanks anyway.
-
Good afternoon,I want to make a family tree as a web page. How would I align the boxes with people's names in them? Is there a more efficient way, other than using a table?Thanks a lot,Primal
-
You should use css instead of an attribute like valign anyway, shouldn't you?
-
This is my CSS code. It's not showing up with any errors on the W3C validator, but it's not saying it's correct either. Anyone know why? body { background-color : #006000 ; color : #00EE00 }h1 { color : #00EE00 ; text-decoration : underline ; background-color : #006000 }hr { width : 65% ; color : #00CC00 ; background-color : #006000 }h1.center { margin-left : auto ; margin-right : auto ; text-align : center } Thanks,Primal