Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #220695

    Hello Kriesi team,

    (1) I would like to remove the image overlay link in the top image of the single blog posts.

    Example of single blog posts:
    http://solucionestecnologicasparaempresas.com/gestion-de-contenidos/las-barreras-de-las-redes-sociales-corporativas/
    http://solucionestecnologicasparaempresas.com/gestion-de-contenidos/las-redes-sociales-corporativas-son-una-realidad/

    (2) Otherwise, is there any way to insert a blank line between the image of the single blog post and the title.I think they are very attached.

    (3) Finally i will appreciate very much if you can help me to insert blanck lines in the tag pages. I think “items de portfolio” is very closed to the items, and “entradas” is very closed to the portfolio items and the blog inputs.

    Example of tag page:
    http://solucionestecnologicasparaempresas.com/etiqueta/destruccion-certificada/

    Thanks in advance.

    Regards, Raúl.

    #220791

    Hi Raul!

    1.) Please edit includes > loop-index.php, find 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>';
            }

    Replace it with:

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

    2.) Add this on Quick CSS to create a separator below the image:

    .single .big-preview.multi-big {
    border-bottom: 1px solid gray;
    }
    
    .template-blog .post .entry-content-wrapper, .template-blog .blog-meta {
    overflow: hidden;
    margin-top: 10px;
    }

    3.) You can use this:

    .tag .post-title.tag-page-post-type-title {
    border-top: 1px solid gray;
    padding-top: 10px;
    margin-top: 10px;
    }

    Best regards,
    Ismael

    #220827

    Thanks Ismael,

    I have solved the issues in the following way, following your instructions:

    (1) Replacing in loop-index.php:

    //echo preview image
    if(strpos($blog_style, ‘big’) !== false)
    {
    if($slider) $slider = ‘‘.$slider.’‘;
    if($slider) echo ‘<div class=”big-preview ‘.$blog_style.'”>’.$slider.'</div>’;
    }

    for

    //echo preview image
    if(strpos($blog_style, ‘big’) !== false)
    {
    if($slider) echo ‘<div class=”big-preview ‘.$blog_style.'”>’.$slider.'</div>’;
    }

    (2) Adding on quick css only:

    .template-blog .post .entry-content-wrapper, .template-blog .blog-meta {
    overflow: hidden;
    margin-top: 10px;
    }

    (3) Adding on quick css:

    .tag .post-title.tag-page-post-type-title {
    border-bottom: 1px solid #e1e1e1;
    padding-top: 10px;
    margin-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    }

    Thanks very much for your job. I am delighted to have chosen enfold theme because I thin:

    – It is a great theme
    – All kriesi team work to add more a more functionalities
    – And, of course, ¡a great support!

    Thanks for your time and support, Raúl.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Blog post image without link’ is closed to new replies.