• Hello all,

    I’m currently running the ButterBelly theme by InkThemes.com and I was wondering where I would find the part in the code that limits the number of articles/blog posts shown on the main page. Right now, there are 10 being shown, but I would like there to be 6. This isn’t affected by what is put in settings, so I’m thinking it must be something within the theme itself.

    Also, when one views a category page (Like https://colleeniscreative.com/category/living-life/) it shows previews of the blog posts. I would like it to show the full article, but am not sure what code to look for.

    Can anyone help me out? Thanks!

Viewing 1 replies (of 1 total)
  • Thread Starter retrokitty

    (@retrokitty)

    I found this code in style.css. Could this be what needs to be edited to modify the homepage display?

    .feature-content {
        overflow: hidden;
        /* display: none; */
        padding-bottom: 57px;
        margin-bottom: 46px;
        background: url(images/line.png) bottom center repeat-x;
    }
    
    .feature-content .feature-content-inner {
        width: 354px;
        height: auto;
        margin-top: 5px;
        text-align: center;
    }
    
    .feature-content .feature-content-inner:hover {
        box-shadow: 0 1px 8px #abe5e1;
        -moz-box-shadow: 0 1px 8px #abe5e1;
        -webkit-box-shadow: 0 1px 8px #abe5e1;
    }
    
    .feature-content .feature-content-inner h3 {
        border: 1px solid #e4e4e4;
        margin-bottom: 0;
        font-size: 22px;
        padding: 25px 10px;
        line-height: 26px;
    }
    
    .feature-content .feature-content-inner:hover h3 {
        border: 1px solid #abe5e1;
    }
    
    .feature-content .feature-content-inner h3 a {
        color: #222222;
    }
    
    .feature-content .feature-content-inner .image-box {
        width: 354px;
        height: 172px;
        overflow: hidden;
    }
    
    .feature-content .feature-content-inner img {
        width: 354px;
        height: 172px;
        -webkit-transition: all 0.4s ease-in;
        -moz-transition: all 0.4s ease-in;
        -o-transition: all 0.4s ease-in;
        -ms-transition: all 0.4s ease-in;
        transition: all 0.4s ease-in;
    }
    
    .feature-content .feature-content-inner .feature-content-text {
        border: 1px solid #e4e4e4;
        border-top: none;
        padding-top: 15px;
        padding: 20px 10px 25px 10px;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
    }
    
    .feature-content .feature-content-inner:hover .feature-content-text {
        border: 1px solid #abe5e1;
        border-top: none;
    }
    
    .feature-content .feature-content-inner .feature-content-text h3 {
        font-weight: bold;
    }
    
    .feature-content .feature-content-inner .feature-content-text h3 a {
        color: #000000;
    }
    
    .feature-content .feature-content-inner .feature-content-text p {
        color: #535353;
        line-height: 24px;
        font-size: 16px;
        color: #161616;
    }
    
    .feature-content .feature-content-inner .feature-content-text .circle img {
        width: 143px;
        height: 143px;
        margin-bottom: 25px;
        border-radius: 82px;
        margin-top: -92px;
        text-align: center;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        border: 3px solid #fff;
    }
    
    .feature-content .feature-content-inner.first {
        margin-left: 5px;
    }
    
    .feature-content .feature-content-inner.second {
        margin-left: 12px;
    }
    
    .feature-content .feature-content-inner.third {
        margin-left: 18px;
    }
    
    .feature_mid_content {
        margin-bottom: 0px;
        padding-bottom: 55px;
        margin-bottom: 48px;
        overflow: hidden;
        background: url(images/line.png) bottom center repeat-x;
    }
    
    .feature_mid_content .featurebox h2 {
        margin-bottom: 8px;
        color: #111;
    }
    
    .feature_mid_content .featurebox p.short_desc {
        font-size: 16px;
        color: #222;
        margin-bottom: 24px;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Articles Display on Main and Category Pages’ is closed to new replies.