Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #994186
    bbbutler
    Participant

    I am new to wordpress and I do not know code or child themes. There must be a way to make the blog featured image smaller. It’s so overwhelming when you go to my blog. Please help.

    #994386
    Darshana
    Moderator

    Hi there,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer.

    
    .single-post .entry-featured {
        float: left;
        margin-right: 1%;
        width: 40%;
    }
    

    Hope that helps.

    #994391
    Joao
    Moderator

    Hi There,

    Go to Appereance / Customizer / Custom / CSS and add the following code:

    /*This sets the maximum width , position  and adds a border on all POST Featured Images*/
    
    .blog .entry-featured {
    position: relative;
    padding: 5;
    width: 250px;
    float: none;
    margin: 20px auto;
    }
    
    /*This sets the maximum size and centers all POST Featured Images*/
    
    .single .entry-featured {
    position: relative;
    padding: 5;
    width: 600px;
    float: none;
    margin: 20px auto;
    }
    
    /*This sets the maximum size and centers all PAGE Featured Images*/
    
    .entry-featured {
    position: relative;
    padding: 5;
    width: 750px;
    float: none;
    margin: 20px auto;
    }

    Once you have the code pasted you also can play with the px values in the code to adjust it according to your taste.

    Let us know if you don“t understand something or need help with anything.

    Hope that helps,

    Joao

  • <script> jQuery(function($){ $("#no-reply-994186 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>