Thread: Template prob
View Single Post
  #1  
Old 10-29-2007, 12:26 AM
Chrispy is offline Chrispy

Join Date: Sep 2005
Location: Peria, New Zealand
Posts: 6,770

Send a message via MSN to Chrispy Send a message via Yahoo to Chrispy
Template prob

This won't budge - there's this problem with the right pane of the template for some reason. I started off with just a wrapper, footer, middle, and right pane, and since I've added a left pane, the crap's been hittin' the fan!

Here's the code for my HTML:

Code:
<!DOCTYPE>

<html>
<head>

<title>Title</title>

<link rel="stylesheet" href="default.css" type="text/css" />

</head>
<body>

<div id="wrapper">This is a wrapper.
This is a wrapper.
This is a wrapper.
This is a wrapper.
This is a wrapper.
<br /><br />
</div>

<div id="left">
<br />
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
This is the left pane.
<br /><br />
</div>

<div id="main">
<br />
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
This is the main section of this page.
<br /><br />
</div>

<div id="right">
<br />

<br /><br />
</div>

<div id="footer">
<br />
This is the footer.
This is the footer.
This is the footer.
This is the footer.
This is the footer.
<br />
</div>

</body>
</html>
And here's the CSS:

Code:
/* default.css */
/* CSS ELEMENTS */

body {
       background: #000000;
       color: #FFFFFF;
       font-family: Verdana;
       font-size: 13px
}

h1 {
       color: #FFFFFF;
       font-size: 25px
}

h2 {
       color: #FFFFFF;
       font-size: 20px
}

h3 {
       color: #FFFFFF;
       font-size: 15px
}

h4 {
       color: #FFFFFF;
       font-size: 10px
}

#wrapper {
	background: #575656;
	width: 891px;
	margin: 0 auto;
        float: left;
	text-align: center
}

#main {
	background: #575570;
	width: 340px; /* 560px, 660px */
	margin: 0 auto;
        float: left;
        font-size: 12px;
	text-align: center
}

#right {
	background: #575566;
	width: 231px; /* 191, 131, 231 */
	float: right;
        font-size: 12px;
	text-align: center;
        margin: 0 auto
}

#footer {
	background: #575656;
	width: 891px; /* 691px */
	margin: 0 auto;
        float: left;
	text-align: center
}

#left {
	background: #575566;
	width: 231px; /* 191, 131 */
	float: left;
        font-size: 12px;
	text-align: left;
        margin: 0 auto
}











/* BACKUP "JUST IN CASE"

#wrapper {
	background: #575656;
	width: 891px;
	margin: 0 auto;
        float: left;
	text-align: center
}

#main {
	background: #575566;
	width: 660px; /* 560px, 660px */
	margin: 0 auto;
        float: left;
        font-size: 12px;
	text-align: center
}

#right {
	background: #575566;
	width: 231px; /* 191, 131, 231 */
	float: right;
        font-size: 12px;
	text-align: center;
        margin: 0 auto
}

#footer {
	background: #575656;
	width: 891px; /* 691px */
	margin: 0 auto;
        float: left;
	text-align: center
}

#left {
	background: #575566;
	width: 231px; /* 191, 131 */
	float: left;
        font-size: 12px;
	text-align: left;
        margin: 0 auto
}

END BACKUP */
Editting the right pane via CSS does nothing at all - font size, BG colour, nothing works.

I played around with the text in the right pane's DIV, but no luck.

Thanks for any assistance guys.

Chris
__________________
Intel Core Duo E7300 2.66GHz // SuperTalent DDR2 800 2GB // ASUS nVidia GeForce 8400GS 512MB // Western Digital 7200RPM 320GB SATA // LG GH-20LS 20X SATA DVD-RAM // Windows XP Pro 32-bit // Thermaltake XP550 NP 430W // Thermaltake SOPRANO SECC Black
Reply With Quote