Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #90955
    LBC
    Participant

    Hi everyone,
    First of all congratulation by the theme.

    I have been facing issues in the featured content setting. I had set 4 column and 4 featured images to the main page and I have decided to work with 3 column and 3 featured images, but when I applied the change by replacing the number of column and removing the images to 3 the theme has been continuing showing 4 positions in the main page. How can I fix it?

    The site is BorgesCunha.com.br

    Thanks a lot!

    #90982
    Mahesh
    Participant

    @lbc: Thank you for using Adventurous theme.
    I checked your site and the issue is because of the Custom CSS you are using. Below is the Custom CSS you are using and I’ve commented out the code that is causing the problem please check.

    #masthead #site-logo img {
        max-height: 80px; /* Your desired height for normal header logo */
    }
    
    #masthead.fixed-header #site-logo img {
        max-height: 45px; /* Your desired height for fixed header logo */
    }
    
    /*.container {
        width: 98%;
        padding: 0 10px;
    }*/
    
    #featured-heading{
        width: 100%;
    }
    /*#featured-post.layout-four .featued-content-wrap, #featured-post.layout-three .featued-content-wrap {
        width: 100%;
    }
    
    #featured-post.layout-four .post, #featured-post.layout-three .post {
        width: 23%;
    }*/
    
    @media screen and (min-width: 981px) {
        #primary {
            width: 80%;
        }
    
        #secondary {
            width: 30%;
        }
        #secondary .widget {
            width: auto;
        }
    
        #featured-post .featued-content-wrap {
            margin: 0 auto;
        }
    
        #homepage-message .left-section {
            width: auto;
        }
    }
    
    @media screen and (max-width: 980px) and (min-width: 678px) {
        #primary {
                width: 100%;
        }
    
        #secondary {
            width: 100%;
        }
    
        #secondary .widget {
            margin-left: 20px;
            width: 40%;
        }
        /*#featured-post.layout-four .featued-content-wrap, #featured-post.layout-three .featued-content-wrap {
            margin: 0 auto;
        }
        #featured-post.layout-four .post:nth-child(2n+1), #featured-post.layout-three .post:nth-child(2n+1), #secondary .widget:nth-child(2n+1) {
            clear: none;
        }
        #featured-post.layout-four .post:nth-child(4n+1), #featured-post.layout-three .post:nth-child(3n+1){
            clear: none;
        }
    
        #featured-post.layout-four .post, #featured-post.layout-three .post {
            width: 21%;
        }*/
    }
    
    /*@media screen and (max-width: 767px) {
        .container {
            width: 96%;
        }
        #featured-post.layout-four .post:nth-child(2n+1), #featured-post.layout-three .post:nth-child(2n+1), #secondary .widget:nth-child(2n+1) {
            clear: both;
        }
        #featured-post.layout-four .post:nth-child(4n+1), #featured-post.layout-three .post:nth-child(3n+1) {
            clear: both;
        }
    
        #featured-post.layout-four .post, #featured-post.layout-three .post {
            width: 46%;
        }
    }*/
    
    @media screen and (max-width: 700px) {
        #secondary {
            margin: 0;
            width: 100%;
        }
        #secondary .widget {
            margin-left: 0;
            padding: 10px 4%;
            width: 91%;
        }
    }
    
    /*@media screen and (max-width: 560px) {
        #featured-post.layout-four .post, #featured-post.layout-three .post {
            width: 100%;
        }
        #featured-post.layout-four .post img.wp-post-image, #featured-post.layout-three .post img.wp-post-image {
            display: inline-block;
        }
    }*/
    
    #powered {
          display: none;
    }

    Note: You can either copy the above CSS or remove the commented out codes and use the remaining.

    Regards,
    Mahesh

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Number of Fetured Content cannot be reduced’ is closed to new replies.