View Full Version : Help, a CCS problem, I'm begging you!!


DYLAN-LOVR
04-09-2006, 04:56 AM
Ok guys. I am starting to make a website. I made my own layout [click] (http://www.freewebs.com/dpmsite/testing.htm). I have a few problems:

1. I don't know how to make the text into links to my other pages.

2. I don't know how to get text onto those "table-like" things I made in Paint Shop Pro.

3. I don't know how to make the 3rd "table-like" thing a DIV.

Please don't say I need to try on my own because i've been trying to get thise for about 2 weeks :(.

-----------------------------------------------------------------------------

If anyone can do this... PLEASE post the code here.

If you need my original stylesheet and code here.

<html><head><title>Dylan Patton Mini Site</title>
</head><body><div align="center"><img src="http://img84.imageshack.us/img84/9663/dpblf5yc.png">
</div>


<style type="text/css">

A:link
{ text-decoration: none; color:#e37463; }
A:visited
{ text-decoration: none; color:#e37463; }
A:active
{ text-decoration: none; color:#e37463; }
A:hover
{ text-decoration: none; color:#000000; }

h1 {font-family: arial; color: #e37463; }
p {font-family: arial; color: #e37463; }

body
{ background: #000000;

background-repeat: no-repeat;
background-position: pixel number pixel number;
background-attachment: scroll;

font-family: arial;
color: #e37463 ;
letter-spacing: 1pt;
font-weight: normal;
font-size: x-small;
</style>

HeLpM3
04-09-2006, 09:30 AM
<html>
<head>
<style type="text/css">
#middle
{
position:absolute;
left:203px;
top:390px;
width:600px;
height:50px;
overflow: auto;
}

#bottom
{
position:absolute;
left:203px;
top:455px;
width:600px;
height:200px;
overflow: auto;
}
A:link
{ text-decoration: none; color:#e37463; }
A:visited
{ text-decoration: none; color:#e37463; }
A:active
{ text-decoration: none; color:#e37463; }
A:hover
{ text-decoration: none; color:#000000; }

h1 {font-family: arial; color: #e37463; }
p {font-family: arial; color: #e37463; }

body
{ background: #000000;

background-repeat: no-repeat;
background-position: pixel number pixel number;
background-attachment: scroll;

font-family: arial;
color: #e37463 ;
letter-spacing: 1pt;
font-weight: normal;
font-size: x-small;

</style>
<title>Dylan Patton Mini Site</title>
</head>
<body>
<div align="center"><img src="dpblf5yc.png" width="654" height="659" border="0" usemap="#map"/>

<map name="map">

<area shape="rect" coords="66,301,139,330" href="home URL" alt="Home" />
<area shape="rect" coords="162,301,235,328" href="media URL" alt="Media"/>
<area shape="rect" coords="258,301,347,326" href="gallery URL" alt="Gallery"/>
<area shape="rect" coords="371,303,416,327" href="bio URL" alt="Bio"/>
<area shape="rect" coords="437,303,511,326" href="forum URL" alt="Forum"/>
<area shape="rect" coords="532,304,585,328" href="site URL" alt="Site"/>
</map>
<div id="middle">middle</div>
<div id="bottom">bottom</div>

</div>
</body>
</html>

DYLAN-LOVR
04-09-2006, 01:06 PM
OMG, thank you so much. I just feel so stupid that I couldn't get it before.