• Resolved triplexxx

    (@triplexxx)


    Hello everyone, I’m starting with the Acme Blog and have a problem with the featured image: I can’t find where do I have to upload or change it and the web shows IMAGE NOT AVAILABLE.
    Can anyone help me?

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Acme Themes

    (@acmethemes)

    Hello triplexxx,

    Thank you for using our theme AcmeBlog.

    While adding/editing post, at the right bottom there is a box for adding feature image, by adding image there you can remove IMAGE NOT AVAILABLE.

    Let us know if this solve your problem.

    Best Regards,
    Acme Themes

    HI everyone

    could you please help me with below?

    I’m trying to remove feature image from a single post. I went through lots of similar topics, was trying to change css codes as advised but it did not work.

    The only one place when I could see the sense of playing with css was content-single.php (please see below which part i was playing with)

    Is that something you could help me with?

    Link to my website
    https://babskablogostrefa.pl/domowy-relaks-recenzja-sanctuary-spa/

    Many thanks

    <!–post thumbnal options–>
    <div class=”single-feat clearfix”>
    <figure class=”single-thumb single-thumb-full”>
    <?php
    $sidebar_layout = acmeblog_sidebar_selection();
    if( $sidebar_layout == “no-sidebar”){
    $thumbnail = ‘large’;
    $no_image = get_template_directory_uri().’/assets/img/no-image-840-480.jpg’;
    }
    else{
    $thumbnail = ‘medium’;
    $no_image = get_template_directory_uri().’/assets/img/no-image-690-400.jpg’;

    }
    if( has_post_thumbnail() ):
    the_post_thumbnail( $thumbnail );
    else:
    $img_url[0] = $no_image;
    ?>
    <img src=”<?php echo esc_url( $img_url[0] ); ?>” alt=”<?php the_title_attribute(); ?>”

    Theme Author Acme Themes

    (@acmethemes)

    Hello tarjabfb,

    You can use the following custom CSS:

    .single .single-feat {
        display: none;
    }

    Please read the documentation here https://www.doc.acmethemes.com/acmeblog/#WhereandhowtoaddcustomCSS

    Best Regards,
    Acme Themes

    .single .single-feat {
        height: 70% !important;
    width: 70% !important;
    }

    I used this to change the featured size in posts.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Featured image in posts’ is closed to new replies.