Change the blog design of Icon 6

Hi there,

I’m using this Icon 6 on this site:

I like the pages layout a lot, but not the blog design:

Right now, I’m keeping the blog in the old theme I’ve been using, but would like to move it to X. Is there any way to change the design of the blog, fe change the background color to white, remove the dates on the posts, adjust the images size on the blog page?

Thanks,
Ani

Hi Ani,

Yes, that is possible by adding some custom CSS like this:

.blog .post .entry-wrap,
.single-post .post .entry-wrap  {
    background-color: transparent !important;
}

.blog .post .entry-title a,
.blog .post .entry-content.excerpt p {
    color: #01baba;
}

.single-post .content .entry-wrap {
    color: #000;
}

.blog .post .entry-featured {
    max-width: 500px;
    margin: 0 auto;    
}

.single-post .p-meta {
    display: none;
}

Please feel free to change the values of the CSS properties in the code above.

Here are some reference links related to the suggestions above:

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.