• What order do my Divs need to be in in order to get the text to wrap around the right-columned sidebar? I assume the Sidebar needs to float:right. Where do I place <?php get_sidebar(); ?>

Viewing 7 replies - 1 through 7 (of 7 total)
  • totally depends on the html structure of your file, i.e. on your theme.

    theme name?
    link to your site?

    you could paste the file into a pastebin and post the link here.

    someone might have a look at it and might have an idea.
    it will also involve re-sizing the divs in style.css

    Thread Starter mismatchedpear

    (@mismatchedpear)

    Clarification:

    I have two-columns width 800px. This is how it currently is:

    – page
    – – content (float left)
    – – – entry (width 610px, float left)
    – – sidebar (margin left:610px)
    – – footer

    I’ve also tried

    – page
    – – content
    – – – entry (width 800)
    – – – sidebar (float right)
    – footer

    Thread Starter mismatchedpear

    (@mismatchedpear)

    Ok, here’s the link to a sample post:

    greenteaweightlosshub [dot] com/what-are-antioxidants/

    I’d like the text to wrap around the sidebar when it ends.

    Sorry for messy code, just started this design from scratch a few hours ago

    best place is probably here:

    <div id="content"><div class="onepost">
    <div id="sidebar">

    and these adaptations in style.css:

    .post {
    	text-align: justify;
    	/*float:left;*/
    	}
    .onepost, .moreposts {
    	float:left;
    	width:100%; /*610px;*/
    	}
    #sidebar {
    	padding: 20px 0 10px 0;
    	margin-left: 20px; /*610px;*/
    	width: 190px;
    float:right;
    	}

    btw: nice green site.

    Thread Starter mismatchedpear

    (@mismatchedpear)

    Reviewing and changing right now — hoping it works.

    Do you think it’s TOO green? Don’t know how I would easily change that, haha.

    Thread Starter mismatchedpear

    (@mismatchedpear)

    By golly, it worked.

    It’s amazing how people can spot things that take me hours and hours of grief to find! Ok time to upload…

    btw: nice green site.

    no, really good green, honest opinion.

    don’t worry – those people spotting things in minutes have spend those hours and hours a while back.

    ‘per aspera ad astra’

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Wrapping the post entry around the sidebar’ is closed to new replies.