I've got a link defined in my html as href="abc123.ht ml" in a <div
id="abc123"> block. The link text displays just fine but the link
won't show as an available link. If I change the <div id from abc123
to body, then everything works perfectly except that the css block
displays in the body location and not the abc123 location on the
webpage.
Here's the css:
/* Mast head is simulation of top frame */
#head{ position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100px;
z-index: 1;
background-color: "#ffffff";
/* border: 2px solid #0000DD; */
}
#login{ position: fixed;
left: 0px;
top: 101px;
width: 15%;
background-color:"#ffffff" ;
/* border: 2px solid #DD0000; */
padding: 3px;
}
#swmenu{ position: fixed;
left: 0px;
top: 101px;
width: 15%;
background-color:"#ffffff" ;
/* border: 2px solid #DD0000; */
padding: 3px;
}
#body{ position: relative;
margin-left: 215px;
margin-top: 101px;
/* width: 80%; */
background-color:"#ffffff" ;
/* border: 2px solid #00DD33;*/
padding: 0px 3px;
z-index: 2;
}
#swbody{ position: relative;
margin-left: 215px;
margin-top: 101px;
/* width: 80%; */
background-color:"#ffffff" ;
/* border: 2px solid #00DD33;*/
padding: 0px 3px;
z-index: 2;
}
#abc123{ position: fixed;
right: 0px;
top: 101px;
width: 35%;
background-color:"#ffffff" ;
/* border: 2px solid #DD0000; */
z-index: 2;
padding: 3px;
}
#foot { position: absolute;
background-color:"#ffffff" ;
bottom: 0;
z-index: 3;
visibility: visible;
}
span.subtitle { font: 20pt "arial"; color:"#63638c" ; }
span.text { font: 10pt "arial" }
td.title { font: 22pt "arial black" }
td.subtitle { font: 20pt "arial"; color:"#63638c" ; }
td.sect { font: 18pt "arial" }
td.subsect {font: 14pt "arial"; color:"#505050" ; }
td.subsubsect {font: 12pt "arial" }
td.text { font: 10pt "arial" }
td.tablehead { font: 10pt "arial"; color:"#e0e0e0" ;}
td.sidemenu { font: 10pt "arial" }
td.bar { font: 8pt "arial" }
h1 { font: 12pt "sans-serif"; color: "505050"; }
a:link { color:"#000080" ; text-decoration: none; }
a:visited { color:"#000080" ; text-decoration: none; }
a:hover { color:"#4040C0" ; text-decoration: none; }
a.sw:link { color:"#e0e0e0" ; text-decoration: none; }
a.sw:visited { color:"#e0e0e0" ; text-decoration: none; }
a.sw:hover { color:"#ffffff" ; text-decoration: none; }
So the link in the <div abc123 should display on the far right at the
100px from the top (which the block does just fine but the link can't
be clicked on)...any ideas greatly appreciated.
Thanks
kevin martin
id="abc123"> block. The link text displays just fine but the link
won't show as an available link. If I change the <div id from abc123
to body, then everything works perfectly except that the css block
displays in the body location and not the abc123 location on the
webpage.
Here's the css:
/* Mast head is simulation of top frame */
#head{ position: fixed;
top: 0px;
left: 0px;
width: 100%;
height: 100px;
z-index: 1;
background-color: "#ffffff";
/* border: 2px solid #0000DD; */
}
#login{ position: fixed;
left: 0px;
top: 101px;
width: 15%;
background-color:"#ffffff" ;
/* border: 2px solid #DD0000; */
padding: 3px;
}
#swmenu{ position: fixed;
left: 0px;
top: 101px;
width: 15%;
background-color:"#ffffff" ;
/* border: 2px solid #DD0000; */
padding: 3px;
}
#body{ position: relative;
margin-left: 215px;
margin-top: 101px;
/* width: 80%; */
background-color:"#ffffff" ;
/* border: 2px solid #00DD33;*/
padding: 0px 3px;
z-index: 2;
}
#swbody{ position: relative;
margin-left: 215px;
margin-top: 101px;
/* width: 80%; */
background-color:"#ffffff" ;
/* border: 2px solid #00DD33;*/
padding: 0px 3px;
z-index: 2;
}
#abc123{ position: fixed;
right: 0px;
top: 101px;
width: 35%;
background-color:"#ffffff" ;
/* border: 2px solid #DD0000; */
z-index: 2;
padding: 3px;
}
#foot { position: absolute;
background-color:"#ffffff" ;
bottom: 0;
z-index: 3;
visibility: visible;
}
span.subtitle { font: 20pt "arial"; color:"#63638c" ; }
span.text { font: 10pt "arial" }
td.title { font: 22pt "arial black" }
td.subtitle { font: 20pt "arial"; color:"#63638c" ; }
td.sect { font: 18pt "arial" }
td.subsect {font: 14pt "arial"; color:"#505050" ; }
td.subsubsect {font: 12pt "arial" }
td.text { font: 10pt "arial" }
td.tablehead { font: 10pt "arial"; color:"#e0e0e0" ;}
td.sidemenu { font: 10pt "arial" }
td.bar { font: 8pt "arial" }
h1 { font: 12pt "sans-serif"; color: "505050"; }
a:link { color:"#000080" ; text-decoration: none; }
a:visited { color:"#000080" ; text-decoration: none; }
a:hover { color:"#4040C0" ; text-decoration: none; }
a.sw:link { color:"#e0e0e0" ; text-decoration: none; }
a.sw:visited { color:"#e0e0e0" ; text-decoration: none; }
a.sw:hover { color:"#ffffff" ; text-decoration: none; }
So the link in the <div abc123 should display on the far right at the
100px from the top (which the block does just fine but the link can't
be clicked on)...any ideas greatly appreciated.
Thanks
kevin martin
Comment