Site logo

Archived topic

Charge theme issue

1 reply · Started by Arief on November 19, 2020

Viewing posts 1–2 of 2

sorry is there anyway i can make excerpt in single post which appeared below featured image become alligned with the post content itself in desktop view? Or remove the white in left and right of my blog content and make the content wider.

I’ve used this additional css as suggestes here to show excerpt below image

.single p.post-excerpt {
max-width: 800px;
margin: auto;
text-align: justify;
color: #001819;
font-size: 20px;
font-weight: 700;
}

Hi,

Your .entry-content's width is limited by this CSS found on your Appearance > Customize > Additional CSS:

            
.one-container .entry-content,.comments-area,footer.entry-meta {
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }

If you want your entry content to have the same width as the excerpt, you'll have to change this CSS' max-width: 600px; to a value similar to your excerpt (800px);

This archived topic is closed to new replies.