Click to See Complete Forum and Search --> : CSS layout
Andathol
08-03-2005, 04:24 PM
I have been trying to create a CSS/XHTML layout (no tables), but neither I nor anyone else I have talked to can seem to make it. If somone can make it (valid please), I can send them a $10 payment through paypal. It is pretty simple, I just need it to look like the below picture, and don't need any color, either. If it can't be done, please let me know.
http://img13.imageshack.us/img13/9688/layout0rz.th.png
drhowarddrfine
08-03-2005, 05:33 PM
I would normally charge several hundred dollars to do this for you.
Andathol
08-03-2005, 05:41 PM
I would normally charge several hundred dollars to do this for you.
simple then, don't do it. I have had people try to do it, none of whom are able to do it. Also, I would not pay hundreds of dollars for you to write some CSS and XHTML. Heck, I wouldn't even pay you that much to design the whole dam site. I would do it myself, but as I said, I'm pretty sure it is impossible, and wanted to see if it could be done. Im not even asking for colors, which saves time.
BeachSide
08-03-2005, 05:51 PM
What do you mean it can't be done look at my site in my sig...
Now if you hadn't been so mean I probably would have whipped something up for free for you but now... I don't think so buddy!
mikepurvis
08-03-2005, 11:10 PM
There's three-column layouts like this all over.
Examples:
http://www.ground.cz/luci/css/my3cols.html
http://www.positioniseverything.net/articles/sidepages/jello-piefecta-clean.html
http://uwmike.com/layout/bordercolumn/three.php
griff777
08-04-2005, 12:06 AM
I have been trying to create a CSS/XHTML layout (no tables), but neither I nor anyone else I have talked to can seem to make it. If somone can make it (valid please), I can send them a $10 payment through paypal. It is pretty simple, I just need it to look like the below picture, and don't need any color, either. If it can't be done, please let me know.
http://img13.imageshack.us/img13/9688/layout0rz.th.png
I'd say you were looking to skin someone's nose just so you didn't have to figure out how to do it. Next time try being polite, and asking for help instead of insulting the talented people who take time to answer questions in their own "valuable" time. Paying someone $10 for solving your problem is like tipping a penny to a waitress, IT IS AN INSULT. Most the people here offer solutions for free to polite people who ask...
davidbrent
08-05-2005, 05:58 AM
Whilst the layout concept you provide is not complex, it is a time consuming project. Not only will it require being fully built, it will require testing. I suggest rather than offer a miserable payment for a time consuming job, you ask our advice and try to build the thing yourself.
If you however are not prepared to try and accomplish this feat yourself, then feel free to offer a more reasonable and thus respectable payment for the work needed and I am sure plent of people will offer their services.
griff777
08-06-2005, 03:22 PM
I have been trying to create a CSS/XHTML layout (no tables), but neither I nor anyone else I have talked to can seem to make it. If somone can make it (valid please), I can send them a $10 payment through paypal. It is pretty simple, I just need it to look like the below picture, and don't need any color, either. If it can't be done, please let me know.
http://img13.imageshack.us/img13/9688/layout0rz.th.png
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>XHTML Layout w/css</title>
<style type="text/css">
div{ border: 1px solid black; display: block; background: #FFFFF0; }
div.nobord{ border: 0px none; }
div.hdr{ text-align: center; height: 80px; width: 80%; background-color: #FFB6C1; margin-left: 10%; }
div.capt{ width: 100%; top: 0px; margin: -1px; background-color: #B0E0E6; text-align: center; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold; }
div.left{ width: 23%; height: 142px; left: 1%; position: absolute; }
div.middle{ height: 452px; top: 110px; left: 25.3%; position: absolute; }
div.right{ width: 23%; height: 142px; right: 1%; position: absolute; }
#lrow1{ top: 110px; }
#lrow2{ top: 265px; }
#lrow3{ top: 420px; }
#rrow1{ top: 110px; }
#rrow2{ top: 265px; }
#rrow3{ top: 420px; }
#mid_1{ width: 49%; }
</style>
</head>
<body>
<!-- Header -->
<div class="hdr">
<h1 class="hdr" id="hdr">HEADER</h1>
</div>
<!-- END Header -->
<!-- left Column -->
<div class="left" id="lrow1"><div class="capt">
Caption left 1
</div>
Content
</div>
<div class="left" id="lrow2"><div class="capt">
Caption left 2
</div>
Content
</div>
<div class="left" id="lrow3"><div class="capt">
Caption left 3
</div>
Content
</div>
<!-- END left Column -->
<!-- Center Column -->
<div class="middle" id="mid_1"><div class="capt">
Caption middle
</div>
Content
</div>
<!-- END Center Column -->
<!-- right Column -->
<div class="right" id="rrow1"><div class="capt">
Caption right 1
</div>
Content
</div>
<div class="right" id="rrow2"><div class="capt">
Caption right 2
</div>
Content
</div>
<div class="right" id="rrow3"><div class="capt">
W3C
</div>
<p style="padding: 5px; margin: 0px;">
<a href="http://validator.w3.org/check?uri=http://jdgsoftco.no-ip.com/layout.htm">
<img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" style="border:0;width:88px;height:31px" /></a>
<a href="http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fjdgsoftco.no-ip.com%2Flayout.htm">
<img src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!" style="border:0;width:88px;height:31px" />
</a>
</p>
</div>
<!-- END right Column -->
<script type="text/javascript">
var IE4 = (document.all) ? 1 : 0;
if(IE4){
document.getElementById("hdr").style.paddingTop= '22px';
document.getElementById("mid_1").style.width = '50%';
}
</script>
</body>
</html>
I believe this works nicely. I've tested it, and validated it (internally with my html editor, W3C says it's valid also).
http://validator.w3.org/check?uri=http%3A%2F%2Fjdgsoftco.no-ip.com%2Flayout.htm
The challenge was very easy.
Oh, and you are welcome, and don't send me money.
To see this in action... http://jdgsoftco.no-ip.com/layout.htm
Siamese
08-14-2005, 12:31 AM
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>XHTML Layout w/css</title>
<style type="text/css">
div{ border: 1px solid black; display: block; background: #FFFFF0; }
div.nobord{ border: 0px none; }
div.hdr{ text-align: center; height: 80px; width: 80%; background-color: #FFB6C1; margin-left: 10%; }
div.capt{ width: 100%; top: 0px; margin: -1px; background-color: #B0E0E6; text-align: center; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 14px; font-weight: bold; }
div.left{ width: 23%; height: 142px; left: 1%; position: absolute; }
div.middle{ height: 452px; top: 110px; left: 25.3%; position: absolute; }
div.right{ width: 23%; height: 142px; right: 1%; position: absolute; }
#lrow1{ top: 110px; }
#lrow2{ top: 265px; }
#lrow3{ top: 420px; }
#rrow1{ top: 110px; }
#rrow2{ top: 265px; }
#rrow3{ top: 420px; }
#mid_1{ width: 49%; }
</style>
</head>
<body>
<!-- Header -->
<div class="hdr">
<h1 class="hdr" id="hdr">HEADER</h1>
</div>
<!-- END Header -->
<!-- left Column -->
<div class="left" id="lrow1"><div class="capt">
Caption left 1
</div>
Content
</div>
<div class="left" id="lrow2"><div class="capt">
Caption left 2
</div>
Content
</div>
<div class="left" id="lrow3"><div class="capt">
Caption left 3
</div>
Content
</div>
<!-- END left Column -->
<!-- Center Column -->
<div class="middle" id="mid_1"><div class="capt">
Caption middle
</div>
Content
</div>
<!-- END Center Column -->
<!-- right Column -->
<div class="right" id="rrow1"><div class="capt">
Caption right 1
</div>
Content
</div>
<div class="right" id="rrow2"><div class="capt">
Caption right 2
</div>
Content
</div>
<div class="right" id="rrow3"><div class="capt">
W3C
</div>
<p style="padding: 5px; margin: 0px;">
<a href="http://validator.w3.org/check?uri=http://jdgsoftco.no-ip.com/layout.htm">
<img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" style="border:0;width:88px;height:31px" /></a>
<a href="http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fjdgsoftco.no-ip.com%2Flayout.htm">
<img src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!" style="border:0;width:88px;height:31px" />
</a>
</p>
</div>
<!-- END right Column -->
<script type="text/javascript">
var IE4 = (document.all) ? 1 : 0;
if(IE4){
document.getElementById("hdr").style.paddingTop= '22px';
document.getElementById("mid_1").style.width = '50%';
}
</script>
</body>
</html>
I believe this works nicely. I've tested it, and validated it (internally with my html editor, W3C says it's valid also).
http://validator.w3.org/check?uri=http%3A%2F%2Fjdgsoftco.no-ip.com%2Flayout.htm
The challenge was very easy.
Oh, and you are welcome, and don't send me money.
To see this in action... http://jdgsoftco.no-ip.com/layout.htm
Very cool! I'm just trying to teach myself css, I totally love all the things it can do! I love the code you posted too...but I have a question, and I guess to someone with such advanced knowledge of this as you, I'm afraid this question may sound a bit daft...but can I put things like that...um, the divs and all...in an external stylesheet...?
Siamese
the tree
08-14-2005, 03:04 AM
Very cool! I'm just trying to teach myself css, I totally love all the things it can do! I love the code you posted too...but I have a question, and I guess to someone with such advanced knowledge of this as you, I'm afraid this question may sound a bit daft...but can I put things like that...um, the divs and all...in an external stylesheet...?
SiameseUrm, no. CSS goes in style sheets, HTML goes in HTML files, sorry.
Siamese
08-15-2005, 12:50 AM
...Now I feel like a dork. Thanks for answering anyway... :o
Scroll_Master
08-15-2005, 04:46 AM
. . . Content . . .. . . I believe this works nicely. I've tested it, and validated it (internally with my html editor, W3C says it's valid also) . . . To see this in action . . .Jay:
It works very nicely! Before I followed your link, I first copied the code and viewed it on my PC. They look the same. Very nice work! Thank you for sharing.
griff777
08-15-2005, 07:09 AM
Jay:
It works very nicely! Before I followed your link, I first copied the code and viewed it on my PC. They look the same. Very nice work! Thank you for sharing.
You're welcome.