vonNiklasson
08-02-2011, 10:21 PM
Hi!
As well as I am new to this forum, I am also quite new to using CSS in an advanced way.
I'm on my current project:
http://johan.nicklassons.se/d
But I've got a problem with the links floating behind the logo-holder. I want the links to float around and beneath the logo-holder which should be centered.
Is there a way to do this?
Thanks in advance!
/Johan
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="TEXT/CSS">
body {
background-color: #000000;
}
div.link {
background-color: #FFFFFF;
color: #000000;
font-family: Calibri;
padding: 4px 8px;
margin: 4px;
width: auto;
float: left;
border: solid 1px white;
}
div.link:hover {
color: white;
cursor: hand;
background-color: #000000;
border: solid 1px white;
}
a, a:visited {
text-decoration: none;
}
div.body {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
div.content{
margin: 4px;
}
.logo_holder {
background-color: #FF0000;
width: 690px;
height: 134px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -72px;
margin-left: -345px;
}
</style>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<div class="body">
<div class="content">
<a href="#t"><div class="link">Johans fartfyllda dag - Idag</div></a>
<a href="#t"><div class="link">Jonas är lustig - Igår</div></a>
<a href="#t"><div class="link">Anders är ute och fiskar - 2 dagar sedan</div></a>
<a href="#t"><div class="link">Kenneth spelar dragspel - 4 dagar sedan</div></a>
<a href="#t"><div class="link">Benny cyklar - 1 vecka sedan</div></a>
<a href="#t"><div class="link">Tomas hoppar stylta - 15 dagar sedan</div></a>
<a href="#t"><div class="link">Johans fartfyllda dag - 16 dagar sedan</div></a>
<a href="#t"><div class="link">Jonas är lustig - 17 dagar sedan</div></a>
<a href="#t"><div class="link">Anders är ute och fiskar - 19 dagar sedan</div></a>
<a href="#t"><div class="link">Kenneth spelar dragspel - 22 dagar sedan</div></a>
<a href="#t"><div class="link">Benny cyklar - 1 månad sedan</div></a>
<a href="#t"><div class="link">Tomas hoppar stylta - 2 månader sedan</div></a>
<div class="logo_holder">LOGO HOLDER</div>
</div>
</div>
</body>
</html>
As well as I am new to this forum, I am also quite new to using CSS in an advanced way.
I'm on my current project:
http://johan.nicklassons.se/d
But I've got a problem with the links floating behind the logo-holder. I want the links to float around and beneath the logo-holder which should be centered.
Is there a way to do this?
Thanks in advance!
/Johan
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<style type="TEXT/CSS">
body {
background-color: #000000;
}
div.link {
background-color: #FFFFFF;
color: #000000;
font-family: Calibri;
padding: 4px 8px;
margin: 4px;
width: auto;
float: left;
border: solid 1px white;
}
div.link:hover {
color: white;
cursor: hand;
background-color: #000000;
border: solid 1px white;
}
a, a:visited {
text-decoration: none;
}
div.body {
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
div.content{
margin: 4px;
}
.logo_holder {
background-color: #FF0000;
width: 690px;
height: 134px;
position: absolute;
top: 50%;
left: 50%;
margin-top: -72px;
margin-left: -345px;
}
</style>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body>
<div class="body">
<div class="content">
<a href="#t"><div class="link">Johans fartfyllda dag - Idag</div></a>
<a href="#t"><div class="link">Jonas är lustig - Igår</div></a>
<a href="#t"><div class="link">Anders är ute och fiskar - 2 dagar sedan</div></a>
<a href="#t"><div class="link">Kenneth spelar dragspel - 4 dagar sedan</div></a>
<a href="#t"><div class="link">Benny cyklar - 1 vecka sedan</div></a>
<a href="#t"><div class="link">Tomas hoppar stylta - 15 dagar sedan</div></a>
<a href="#t"><div class="link">Johans fartfyllda dag - 16 dagar sedan</div></a>
<a href="#t"><div class="link">Jonas är lustig - 17 dagar sedan</div></a>
<a href="#t"><div class="link">Anders är ute och fiskar - 19 dagar sedan</div></a>
<a href="#t"><div class="link">Kenneth spelar dragspel - 22 dagar sedan</div></a>
<a href="#t"><div class="link">Benny cyklar - 1 månad sedan</div></a>
<a href="#t"><div class="link">Tomas hoppar stylta - 2 månader sedan</div></a>
<div class="logo_holder">LOGO HOLDER</div>
</div>
</div>
</body>
</html>