• Resolved intice

    (@intice)


    This is my current Category page
    http://www.inticeonline.com/category/photos/

    minus the fact that im trying to get rid of that grey square
    is there anyway to have Two columns of content instead of going down in 1 line i can have two side by side in a way….without messing up my whole site

Viewing 4 replies - 1 through 4 (of 4 total)
  • Michael

    (@alchymyth)

    if your theme has a category.php, edit this;

    if the theme does not have a category.php, create one from a copy of archive.php or index.php – then edit…

    there are several topics in this forum with solutions to a two-column layout – try forum search.

    this usually means wrapping each post into a div, formatted with a width less than half the width of the available space and floated left.

    the grey square is caused by (in style.css):

    .primary_content_wrap .container {
    		background: url(images/content.gif) repeat-y 0% 0%;
    	}

    Thread Starter intice

    (@intice)

    Thank you
    and yeah i figured out where the grey square comes from
    bbut is there anyway to keep it on my main home page

    but delete it from my category pages ??

    Michael

    (@alchymyth)

    is there anyway to keep it on my main home page

    but delete it from my category pages ??

    use the category specific output of body_class():
    http://codex.ww.wp.xz.cn/Function_Reference/body_class

    i.e.:

    .category .primary_content_wrap .container { background: none; }

    Thread Starter intice

    (@intice)

    use the category specific output of body_class():
    http://codex.ww.wp.xz.cn/Function_Reference/body_class

    i.e.:

    .category .primary_content_wrap .container { background: none; }

    Ahhhh You are More Then AMAZING!!!
    THANK YOU!! Sooo much!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘wordpress categorys layout’ is closed to new replies.