• Resolved wordsnyc

    (@wordsnyc)


    I am using a lightly-modified version of the Blue Zinfandel theme on my site http://www.word-detective.com. As you can see, each post has Adsense code at the end. The center column is 478 px wide, the text margins 440 px wide. At the moment, I can only fit 234 x 60 text ads there, but I’d like to fit 468 x 60 image ads there. The margins/padding screw that up.

    Is there a way to keep the margins as-is for text and somehow turn off the margins around the ad code? Or is there a better way to fiddle with the width of the center column without screwing up the page layout?

    Thanks for any help.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Is there a way to keep the margins as-is for text and somehow turn off the margins around the ad code?

    No.

    Or is there a better way to fiddle with the width of the center column without screwing up the page layout?

    Re-designing the theme.

    why cant you just adjust the margins and padding in that center content area? im sure it would look fine with less. just tweak these two sections of your css

    #contentmiddle {
    
    	float: left;
    
    	width: 440px;
    
    	margin: 0px 0px 0px 0px;
    
    	padding: 20px 20px 10px 20px;
    
    	display: inline;
    
    	}
    
    #contentmiddle p img{
    
    	float: left;
    
    	border: none;
    
    	margin-right: 15px;
    
    	margin-bottom: 10px;
    
    	}

    Thread Starter wordsnyc

    (@wordsnyc)

    I changed the left and right padding from 20 to 10 px, and it fits, but it looks off-center. Any lower than that and the text is too close to the column edge. It looks best with text ads, so maybe I’ll let it ride without image ads.

    Thanks.

    Thread Starter wordsnyc

    (@wordsnyc)

    ps — The second block you cited above doesn’t seem relevant, as it applies to images I post, not ads served by javascript, right?

    the second part would effect any images you add, including image ads. Maybe the text ads too, I’m not familiar with how those are. But you see it gives them a right margin of 15 so it would indeed make it look off center.

    oh, and make sure you are changing the correct parts of the padding. The four values go clockwise, starting at the top. So the right and left sides are the second and fourth values.

    Thread Starter wordsnyc

    (@wordsnyc)

    Gotcha — that’s one of the few bits of css I’ve learned. Thanks.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘CSS help needed to resize column’ is closed to new replies.