<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1036143" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1036143</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-columns#comment-1208614</link>
    <description> &lt;p&gt;can you check my attachment or download privilages, i&#039;m getting an error saying i&#039;ve gone to a restricted page while trying to download an attachment, while i&#039;m logged in ofcourse&lt;/p&gt;
 </description>
     <pubDate>Fri, 13 Oct 2006 20:14:48 +0000</pubDate>
 <dc:creator>kingo&#039;mountain</dc:creator>
 <guid isPermaLink="false">comment 1208614 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-columns#comment-1208605</link>
    <description> &lt;p&gt;This is actually no problem. If you had boxes with text on each side it might be a little trickier. This is easy though.&lt;/p&gt;
&lt;p&gt;Yikes! You put font tags in there too! You really need to learn some CSS, asap! That poor template, I feel bad for it being massacred by tables and font tags &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I actually started working on this for awhile with your code but lots of things were getting messed up so I&#039;m going to work with what I had before. I&#039;ll attach my original HTML and CSS files if you need them. The code you had is very different from what I was working on.&lt;/p&gt;
&lt;p&gt;From here, what we need to do is make room for the images on the front page. So we&#039;ll make a new class for widecontent and apply it to the two div&#039;s:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;nbsp; &amp;lt;div class=&amp;quot;widecontent&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h1&amp;gt;Second Header&amp;lt;/h1&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h2&amp;gt;Welcome&amp;lt;/h2&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (lorem ipsum text was here).&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class=&amp;quot;widecontent&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;h1&amp;gt;More stolen content from lipsum.org&amp;lt;/h1&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (text was here)&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;The widecontent class will look similar to the content class, only with a different width:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;.widecontent {&lt;br /&gt;	float: none;&lt;br /&gt;	clear: left;&lt;br /&gt;	width: 650px; &lt;br /&gt;	margin: 0;&lt;br /&gt;	font: normal 11px/18px arial, verdana, helvetica, sans-serif;&lt;br /&gt;	text-align: justify;&lt;br /&gt;	}	&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Now the images need to go in and both the text blocks and the images need a class=&quot;content&quot;:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;nbsp; &amp;lt;div class=&amp;quot;widecontent&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;	 	&amp;lt;div class=&amp;quot;content&amp;quot;&amp;gt; &amp;lt;img src=&amp;quot;images/money.jpg&amp;quot; width=&amp;quot;200&amp;quot; height=&amp;quot;200&amp;quot; /&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;		&amp;lt;div class=&amp;quot;content&amp;quot;&amp;gt;&lt;br /&gt;	&amp;nbsp;&amp;nbsp;&amp;nbsp; 	&amp;lt;h1&amp;gt;Second Header&amp;lt;/h1&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 	&amp;lt;h2&amp;gt;Welcome&amp;lt;/h2&amp;gt;&lt;br /&gt;			&amp;lt;p&amp;gt;text was here&amp;nbsp; &amp;lt;/p&amp;gt;&amp;nbsp; &lt;br /&gt;		&amp;lt;/div&amp;gt;&lt;br /&gt;	&amp;lt;/div&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div class=&amp;quot;widecontent&amp;quot;&amp;gt;&lt;br /&gt;	&lt;br /&gt;		&amp;lt;div class=&amp;quot;content&amp;quot;&amp;gt;&lt;br /&gt;			&amp;lt;h1&amp;gt;More stolen content from lipsum.org&amp;lt;/h1&amp;gt;&lt;br /&gt;			 &amp;lt;p&amp;gt; text was here&amp;lt;/p&amp;gt;&lt;br /&gt;	 &lt;br /&gt;	 &amp;lt;/div&amp;gt;&lt;br /&gt;	&amp;lt;div class=&amp;quot;content&amp;quot;&amp;gt; &amp;lt;img src=&amp;quot;images/money2.jpg&amp;quot; width=&amp;quot;218&amp;quot; height=&amp;quot;218&amp;quot; /&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;/code&gt;&lt;/div&gt;&#039;I added some paragraph tags in there while I was at it.&lt;/p&gt;
&lt;p&gt;The problem we have now is that the images aren&#039;t centered. We can just use inline CSS to do that, so add  style=&quot;text-align: center;&quot; to those div&#039;s (not the best method, but easy for right now).&lt;/p&gt;
&lt;p&gt;Everything is looking good in Firefox and Opera. IE has a bit of a problem with the margins on the .content class. To fix this I just changed the margin on the .content class. This isn&#039;t ideal but it works:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;.content {&lt;br /&gt;	float: left;&lt;br /&gt;	width: 290px;&lt;br /&gt;	margin: 20px 10px 0 15px;&lt;br /&gt;	padding: 0;&lt;br /&gt;	font: normal 11px/18px arial, verdana, helvetica, sans-serif;&lt;br /&gt;	text-align: justify;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;That&#039;s all I&#039;m going to do, okay? You really need to learn some proper web design methods! The attached files are what I had after my last post. You can try to implement what I posted today - if you keep having trouble I can post my final code.&lt;/p&gt;
 </description>
     <pubDate>Fri, 13 Oct 2006 16:46:46 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1208605 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-columns#comment-1208598</link>
    <description> &lt;p&gt;ok, if you know of a way to get everything nice and dandy without using a single table, i challenge you, only you.... to get everything aligned like it is right now... because i&#039;m hopeless when it comes to CSS.....&lt;/p&gt;
&lt;p&gt;i&#039;ll have to split the site to the code and the pictures in seperate zips because the filesize limit is not 100k, but only 50k, sorry&lt;/p&gt;
 </description>
     <pubDate>Fri, 13 Oct 2006 14:29:29 +0000</pubDate>
 <dc:creator>kingo&#039;mountain</dc:creator>
 <guid isPermaLink="false">comment 1208598 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-columns#comment-1208596</link>
    <description> &lt;p&gt;There are ways to get around that. Rather than messing up a perfectly good xHTML strict layout &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 13 Oct 2006 13:00:08 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1208596 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-columns#comment-1208567</link>
    <description> &lt;p&gt;you dont understand, i&#039;ve replaced the .content div because when i add more lines to one of the text blocks, the alignment gets messy and evasive even, a table keeps everything intact, think of tables as cement to building blocks, it bonds them, so i think the 2 (tables and CSS divs) should forever be together because if used right, the stars are the limit &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 12 Oct 2006 21:29:46 +0000</pubDate>
 <dc:creator>kingo&#039;mountain</dc:creator>
 <guid isPermaLink="false">comment 1208567 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-columns#comment-1208365</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;&lt;strong&gt;kingo&#039;mountain;208253 wrote:&lt;/strong&gt; i&#039;ve also replaced the main content (text paragraphs) divs with a table, yes, i know tables suck major butt and W3 are going to put out table use for good, but for me its a lifesaver, without it, i&#039;d leave all the site building alone until i die, hehe &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt; &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Awwww! That&#039;s so disappointing! That template was so well coded &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt; :( I foud those boxes to be a bit of a problem anyway - you&#039;re going to have trouble if they&#039;re not quite the right length. Finding another way to display that would be good. The secret to getting them to line up is to get the width just right. Try playing with the width on the .content class. You could also put a height and overflow: scroll in to get the heights to work right.&lt;/p&gt;
&lt;p&gt;I&#039;m glad to hear you&#039;ve goten things straightened out.&lt;/p&gt;
 </description>
     <pubDate>Tue, 10 Oct 2006 13:05:38 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1208365 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-columns#comment-1208253</link>
    <description> &lt;p&gt;i&#039;ve made major progress since then, just so you wont have to come with a solution to the new members section, i already fixed that, i replaced all the &quot;main&quot; div (the section where the &quot;new members&quot; are&quot;) with a simple table, so now its aligned and i finally got what i wanted!...&lt;/p&gt;
&lt;p&gt;i&#039;ve also replaced the main content (text paragraphs) divs with a table, yes, i know tables suck major butt and W3 are going to put out table use for good, but for me its a lifesaver, without it, i&#039;d leave all the site building alone until i die, hehe &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/big.png&quot; title=&quot;Laughing out loud&quot; alt=&quot;Laughing out loud&quot; class=&quot;smiley-content&quot; /&gt; &lt;/p&gt;
&lt;p&gt;now i only need to fill the panes with boxes (not the profile ones) like&lt;br /&gt;
making a login form, adding some banners, a few combo boxes and dropdowns (i&#039;ll need help with them)&lt;/p&gt;
&lt;p&gt;if you want an updated zip with the changes, say so, i&#039;d love to show you how it looks now :jump:&lt;/p&gt;
 </description>
     <pubDate>Sat, 07 Oct 2006 22:38:45 +0000</pubDate>
 <dc:creator>kingo&#039;mountain</dc:creator>
 <guid isPermaLink="false">comment 1208253 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-columns#comment-1208198</link>
    <description> &lt;p&gt;well, the panes went well, i&#039;ve added them without taking the profile boxes off, so that made a gap between the main black bar (with the colored buttons) and the outer border, but once i got rid of the boxes it all aligned like it should, i&#039;ve also taken the opportunity to get that same black bar i mentioned on top of the inner wrapper because i discovered that once i reduced the width of the wrapper and main, the stats on the bar would overlap with the buttons, so thats fixed too....&lt;/p&gt;
&lt;p&gt;about the new members thing ..... i was thinking:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;|&amp;nbsp;&amp;nbsp;&amp;nbsp; new members&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp; some other content&amp;nbsp; |&lt;br /&gt;|&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp; which is just text&amp;nbsp; |&lt;br /&gt;|&amp;nbsp;&amp;nbsp;&amp;nbsp; dan&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&lt;br /&gt;|&amp;nbsp;&amp;nbsp;&amp;nbsp; igor&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&lt;br /&gt;|&amp;nbsp;&amp;nbsp;&amp;nbsp; michael&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&lt;br /&gt;|&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Fri, 06 Oct 2006 22:27:12 +0000</pubDate>
 <dc:creator>kingo&#039;mountain</dc:creator>
 <guid isPermaLink="false">comment 1208198 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-columns#comment-1208194</link>
    <description> &lt;p&gt;Alright, now I&#039;ve got those columns fixed. Unfortunately we have to use a little filter for IE 6. Replace the #wrapper CSS with this:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;#wrapper {&lt;br /&gt;width: 650px;&lt;br /&gt;margin: 0;&lt;br /&gt;background-color: #F3F3F3;&lt;br /&gt;border-bottom: none;&lt;br /&gt;height: auto;&lt;br /&gt;float: left;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;html&amp;gt;body #wrapper {&lt;br /&gt;margin-left: 150px; &lt;br /&gt;float: none;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039; &lt;/p&gt;
&lt;p&gt;IE 6 and below will not see the bit in the html&amp;gt;body. So it will be floating that div to the left. The  others will keep it in place and apply a left margin.&lt;/p&gt;
&lt;p&gt;I&#039;ll try to help you again once I&#039;m clear on what you want to do with that members block. I will be away for the weekend though so hopefully someone else can help you before then.&lt;/p&gt;
&lt;p&gt;Let me know if you have problems getting this code working and I&#039;ll show you what I have here.&lt;/p&gt;
 </description>
     <pubDate>Fri, 06 Oct 2006 19:21:04 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1208194 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-columns#comment-1208192</link>
    <description> &lt;p&gt;Arrrgggh! This is really annoying, I have the same code working on another site but it&#039;s not working here! (for the right column.)&lt;/p&gt;
 </description>
     <pubDate>Fri, 06 Oct 2006 18:55:29 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1208192 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
