• Resolved cpugeek75

    (@cpugeek75)


    Is there a way to add more than 4 columns? I know under the Archive Layout you can change this from One, Two, Three or Four but I would like 6 on the page.

    Thanks in advance!

Viewing 1 replies (of 1 total)
  • Thread Starter cpugeek75

    (@cpugeek75)

    Problem solved. Solution below

    Go to the Appearance Editor, from there make sure you are editing the WordPlus theme. Select the Style.css file and insert the following under the layout section

    .index-column-5,
    .index-column-6

    (be sure to add a comma after .index-column-4

    click Update file to save the changes.

    After that go to Theme Functions (functions.php)
    Find this section of code

    array(
    	'1'     => __('One Column','wordplus'),
    		'2'  => __('Two Column','wordplus'),
    		'3'  => __('Three Column','wordplus'),
    		'4'  => __('Four Column','wordplus')

    add this

    '5'  => __('Five Column','wordplus'),
    '6'  => __('Six Column','wordplus')

    again be sure to add the comma after line 4.

    Don’t forget to click Update file.
    Now go to Appearance, Customize and Archive Layout. You can now chose 5 or 5 columns.

    That’s it. If you have a large enough screen you’ll now see six columns (or five if that is your choice.

Viewing 1 replies (of 1 total)
  • The topic ‘More Colums’ is closed to new replies.