Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #19440
    Michaela
    Participant

    Hi,
    is there any possibility to change the number of columns in the featured content section from 3 to 4? I want to present 4 topics, but now the 4th one always gets moved to a new row.
    Thanks a lot for your help!

    #19446
    Sakin
    Keymaster

    @Micha: Sorry that option in only available in Catch Everest Pro version where you can simply change from “Appearance => Theme Options => Homepage Settings => Homepage Featured Content Options => Featured Content Layout”.

    #19513
    Michaela
    Participant

    Great, thanks a lot for the option. I’ll get the Pro Version then.

    #19600
    Michaela
    Participant

    Hi Sakin,

    I know some coding, so I made the following changes:

    #featured-post .post {margin-left: 5px; width: 20%;}

    I would now have some space in the featured content section or a fourth column, but unfortunately it always shows up in a second row. I think I could change this by adjusting the file catcheverest-functions.php. What do I need to do here?

    Cheers.

    #19604
    Sakin
    Keymaster

    @Micha: You can simply upgrade to Catch Everest Pro and you will have option to choose 4th column. For Free version, you need to build child theme and do the customization. It’s bit complicated so better hire a customizer at http://catchthemes.com/hire-customizer/. But if you want to try it then build child theme and create functions.php file and copy function catcheverest_homepage_featured_content() from catcheverest-functions.php and edit

    if ( $i % 3 == 1  || $i == 1 ) {
    						$classes = "post hentry first"; 
    					} 

    to

    if ( $i % 4 == 1  || $i == 1 ) {
    						$classes = "post hentry first"; 
    					} 
Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Change number of featured content columns’ is closed to new replies.