• Resolved AdriaChilcote

    (@adriachilcote)


    Hi there!

    I would like to have the titles (referred to as .tc-grid .entry-header in the css) to sit above the excerpts from posts (I believe are referred to as: section.tc-grid-post) in the front page grid layout.

    Is this possible with css? Or would I need to edit some php somewhere? I’d really appreciate some advice!

    Thanks,
    Adria

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

    (@adriachilcote)

    p.s. I have already activated a child theme and am working locally for now.

    Hi, yes is possible, you should add this to your child-theme functions.php

    add_action('__post_list_grid', 'my_custom_grid');
    function my_custom_grid(){
    
      /* title above thumbnails in grid */
      add_filter('tc_post_list_layout', 'title_before', 100);
      function title_before( $layout){
        $layout['show_thumb_first'] = false;
        return $layout;
      }
    
    }

    p.s. will not work with the expanded post!

    Thread Starter AdriaChilcote

    (@adriachilcote)

    Brilliant! Worked like a charm, thanks so much!

    ??
    Glad you solved

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Grid Layout – titles above excerpts?’ is closed to new replies.