Wordpress - Help with borders

1

I am in need of help with my wordpress page. link

In the image of the body, whose text says "from the field to your house", I have difficulties to remove the edges of the sides. I would like the image to be completely expanded towards the edges.

I was reviewing the code with google chrome and I saw that it would be under the id = content and the class = site-content, but I do not know how to correct this ... and also, if what you identify is correct.

Thank you and good day.

    
asked by FDJ 24.01.2017 в 03:32
source

1 answer

0

Enter the style.css of your template and modify the following values:

Before:

.entry-content, .entry-summary {
    padding: 0 10% 10%;
}

So that it sticks only to the sides:

.entry-content, .entry-summary {
    padding-left: 0;
    padding-right: 0;
}

To stick to the sides and below:

.entry-content, .entry-summary {
    padding: 0;
}

This way you are saying that there is no "stuffing" inside the <div class="entry-content"> .

I recommend you see articles like this that will be very useful to you.

    
answered by 24.01.2017 в 05:48