Results 1 to 1 of 1

Thread: Advice on category columns

  1. #1
    Thread Starter
    Veteran kplunk's Avatar
    Join Date
    Nov 2010
    Posts
    332
    Thanks
    0
    Thanked 11 Times in 10 Posts

    Advice on category columns

    I can see there are 2 main areas that handle category columns

    1. In admin area under settings Home Page Category Options, where it only lets us pick either 2 or 3 layout column

    2. In index.php the line where it says

    Code:
    <div id="directory" class="directory <?php if(get_option('cp_cat_dir_cols') == 2) echo 'two'; ?>Col">
    
    
                                <?php cp_cat_menu_drop_down(get_option('cp_cat_dir_cols'), get_option('cp_dir_sub_num')); ?>
    Now im looking to get 4 columns, so i worked in the CSS to provide more space for the 4th column and have that sorted out find and then changd this index.php to appear like this

    Code:
    <div id="directory" class="directory <?php if(get_option('cp_cat_dir_cols') == 2) echo 'two'; ?>Col">
    
    
                                <?php cp_cat_menu_drop_down(get_option('cp_cat_dir_cols'), get_option('cp_dir_sub_num')); ?>
    That did nothing. So what part am i overlooking here how do i change it to allow for 4 columns?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. 4 columns category
    By vkaplina in forum ClassiPress General Discussion
    Replies: 2
    Last Post: November 22nd, 2010, 10:09 AM
  2. 4 columns category
    By veronika in forum Report ClassiPress Bugs
    Replies: 1
    Last Post: September 22nd, 2010, 09:44 AM
  3. category layout in columns
    By azygoz in forum Help Using ClassiPress
    Replies: 3
    Last Post: May 18th, 2010, 04:54 PM
  4. 2 Columns Category Problem! (3.0.1)
    By pipno in forum Help Using ClassiPress
    Replies: 7
    Last Post: April 12th, 2010, 09:22 AM