Jump to content

Recommended Posts

Posted

I believe the following changes will get your page back to something resembling normal:

 

1) CSS cosmetic change -

 

This is purely a suggestion - your sidebar column is too wide. In your stylesheet, change the widths as I have indicated in the #left and #center styles:

>#left {
 float: left;

//	width: 300px;
width: 220px;
background-color: #FFFFFF;

overflow: hidden;
}

#center {
 float: left;
//	width: 440px;
width: 480px;

overflow: hidden;
}

This will narrow the sidebar column, and widen your main column to compensate.

 

The following changes should fix the display problems in your template:

 

2) Opening div tag missing for calendar -

><div id="left">
<div class="sidebar">

<!-- Added missing beginning div tag for calendar -->
<div id="calendar">

<table summary="Monthly calendar with links to each day's posts">

 

3) Opening div tag missing for sidebar text just after calendar-

></table>
</div>

<!-- Added missing beginning div tag for sidebar text -->
<div class="link-note">

Email: mythusBOGUSmage (at) mythusBOGUSmage (dot) com<br>

 

I think these changes should take care of the major problems you're seeing.

 

Hope this helps...

Posted (edited)

David's suggestions plus add one more closing div at the end to close the beginning div tag for the sidebar text:

 

><div id="powered">
Powered by<br><a href="http://www.movabletype.org/">Movable Type 3.15</a><br>    
</div>

//add one more closing div to close sidebar text
</div>

</div>

<div id="center">
<div class="content">

After doing that, the test page on my machine looks good.

Edited by timhodge
Posted

Tim - I was already seeing two closing two div tags at the spot you're indicating:

><div id="powered">
Powered by<br /><a href="http://www.movabletype.org">Movable Type 3.15</a><br />    
</div>

</div>
</div>

<div id="center">
<div class="content">

Posted
Tim - I was already seeing two closing two div tags at the spot you're indicating:

Weird. When I view source on the live page, I see two. When I save the page to my machine and view source, there's only one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...