Burnfire
07-03-2003, 02:53 AM
I have links on my website. They just say the link name. I want to make a border around the link. Also how do I link a banner to my website, so that I will click on it will take me somewhere.
|
View Full Version : Help Burnfire 07-03-2003, 02:53 AM I have links on my website. They just say the link name. I want to make a border around the link. Also how do I link a banner to my website, so that I will click on it will take me somewhere. burningstars 07-03-2003, 03:02 AM Try this <STYLE type="text/css"> A:link{COLOR: 000000; TEXT-DECORATION: none} A:visited{COLOR: 000000; TEXT-DECORATION: none} A:active{COLOR: 000000; TEXT-DECORATION: none} A:hover{COLOR: FFFFFF; border:1 solid; border-color:#000000;} </STYLE> OR if you want it around it at all times <STYLE type="text/css"> A:link{COLOR: 000000; border:1 solid; border-color:#000000;} A:visited{COLOR: 000000; border:1 solid; border-color:#000000;} A:active{COLOR: 000000; border:1 solid; border-color:#000000;} A:hover{COLOR: FFFFFF; border:1 solid; border-color:#000000;} </STYLE> Burnfire 07-03-2003, 03:05 AM I want the second one, but it did not work burningstars 07-03-2003, 03:08 AM Sorry i forgot to say it goes between the <HEAD> and the </HEAD> tags so it would be <html> <head> <STYLE type="text/css"> A:link{COLOR: 000000; border:1 solid; border-color:#000000;} A:visited{COLOR: 000000; border:1 solid; border-color:#000000;} A:active{COLOR: 000000; border:1 solid; border-color:#000000;} A:hover{COLOR: FFFFFF; border:1 solid; border-color:#000000;} </STYLE> </head> <body> all the stuff that goes on your webpage! </body> Burnfire 07-03-2003, 03:13 AM Hey go to this websitehttp://www.freewebs.com/burnfireii/ I want those links to have borders around them burningstars 07-03-2003, 03:21 AM This should work! If it doesn't let me know! Also you can change the colors to whatever you want I just set them to black and white for now! <HTML><HEAD> <META content="MSHTML 5.50.4807.2300" name=GENERATOR> <STYLE type="text/css"> A:link{COLOR: #000000; border:1 solid; border-color:#000000;} A:visited{COLOR: #000000; border:1 solid; border-color:#000000;} A:active{COLOR: #000000; border:1 solid; border-color:#000000;} A:hover{COLOR: #FFFFFF; border:1 solid; border-color:#000000;} </STYLE> </HEAD> <BODY bgColor= "#a8a8a8"> <P><FONT size=7>Zoids</FONT></P> <P><FONT size=7> Trilogy</FONT></P> <P><FONT size=7></FONT> </P> <P><A target=_blank href="http://pub162.ezboard.com/bzoidstrilogy">Forum</A> </P> <P><A href="Zoids.htm">Zoids</A> </P> <P><A href="story.htm">story</A> </P> <P><A href="teams.htm">teams</A> </P> <P> <META content="MSHTML 6.00.2800.1170" name=GENERATOR><A href="rules.htm">rules</A> </P> <P><A href="parts.htm">parts</A> </P> <P> <META content="MSHTML 5.50.4807.2300" name=GENERATOR></P></BODY></HTML> Burnfire 07-03-2003, 03:26 AM Thanks it worked, but do you now how were I can find a news thing. So I can let my members know about news? Thanks burningstars 07-03-2003, 03:33 AM Well it depends on how you want it to look and where you want it? Do you want the news to be on the same page as those links? Burnfire 07-03-2003, 03:35 AM Yes because that is my homepage. burningstars 07-03-2003, 03:37 AM Ok how do you want it to look? do you want it to just look like part of the page or in an iframe or table? Burnfire 07-03-2003, 03:43 AM I would like to have a frame on my links on the left and on the top. So the news would go in the middle. burningstars 07-03-2003, 03:57 AM Oh ok try this <html> <head> <title>My Page</title> </head> <frameset rows="100,*"> <frame src="SOURCE URL FOR TOP FRAME HERE" NAME="top"> <frameset cols="160,*"> <frame src="SOURCE URL FOR LEFT FRAME HERE" NAME="left"> <frame src="SOURCE URL FOR THE RIGHT FRAME (News) HERE" NAME="right"> </frameset> </frameset> <body> </body> <noframes> <a href="your main page.html">Click Here</a> </noframes> </html> that should do it let me know if you need any more help with that! Burnfire 07-03-2003, 04:03 AM I have downloaded a pm thing. But it is not in html how do I run it? Burnfire 07-03-2003, 04:05 AM No it made my page say it had a 404 error? |