Support » Themes and Templates » Problem with “catblock div tags” in IE

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter techtangerine

    (@techtangerine)

    Oh, by the way, I forgot to mention that the theme being used here is Orange Suqash, http://wordpress.org/extend/themes/orange-squash

    consider reorganizing the positioning of these elements
    to these styles:

    .category{
    	float:left;
    	padding:5px ; position:relative;
    }
    
    .catblock{
    	position:absolute;
    	width:400px;
    	left:95px;
    	bottom:5px;
    }
    Thread Starter techtangerine

    (@techtangerine)

    Thanks so much; will give it a try and report back.

    Thread Starter techtangerine

    (@techtangerine)

    Hello everybody; the following modifications make it work.

    Find the following chunk of code:
    .catblock{
    position:relative;
    width:400px;
    float:right;
    left:5px;
    bottom:12px;
    }

    And replace it with:
    .catblock{
    position:relative;
    width:400px;
    float:right;
    left:5px;
    margin-top:3px
    }

    Regarding the image captions:

    Find the following chunk of code in style.css:
    .wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    padding: 0 4px 5px;
    margin: 0;
    }

    And replace with it:

    .wp-caption p.wp-caption-text {
    font-size: 11px;
    margin: 0;
    text-align:left;
    width:90%;
    padding:5px;
    }

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Problem with “catblock div tags” in IE’ is closed to new replies.