Tagged: , ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #462889

    Hi,

    What is the best way to make the blog-categories minor-meta appear on the featured image. On both single blog style and single of multiple authors blog style

    .blog-categories minor-meta

    Eg:
    https://www.evernote.com/shard/s113/sh/9383a34c-41b9-4869-ba8c-6d1d01d54f9e/9a936b57474536f7f4b1746f7f494c50

    Thank you,
    D.

    #463234

    Hi dhuet!

    Thank you for using Enfold.

    You can modify the includes > loop-index.php file. Look for this code:

    
    //echo preview image
            if(strpos($blog_style, 'big') !== false)
            {
                if($slider) $slider = '<a href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
                if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
            }

    Below, add something like this:

    echo '<span class="blog-categories minor-slider-meta">';
    				echo $cats;
    				echo '</span>';

    Use ths in the Quick CSS field to adjust the position of the categories:

    span.blog-categories.minor-slider-meta {
      top: -50px;
      position: relative;
      z-index: 1000;
      font-size: 40px;
      left: 20px;
    }

    Note that this is only going to work if all posts are set to standard format.

    Best regards,
    Ismael

    #463451

    Thank you. I’ll try that.

    #463758

    Hey!

    Great, please let us know if you should need any more help on the topic.

    Best regards,
    Rikard

    #464158

    No, thanks.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Blog Categoru minor meta’ is closed to new replies.