Site logo

Archived topic

various questions

3 replies · Started by Iván on April 7, 2018

Viewing posts 1–4 of 4

Hi Tom,

I have various questions:

1/ How can I center all my buttons (read more, send, etc...)?
2/ I would like the container of nav-links to be green, not white (take a look at picolisimo.es, please)
3/ In mobile version, I would like to show a bit of the green background at both sides of my content. How can I get it?

Thank you very much!

Iván

Hi Iván,

1. This CSS shoudl do:

p.read-more-container {
    text-align: center;
}

2. Removing the padding should fix that:

.separate-containers .paging-navigation {
    padding: 0;
}

3. Try this:

@media (max-width: 768px) {
    .site.grid-container {
        margin-left: 10px;
        margin-right: 10px;
    }
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

EVERYTHING WORKED! Thank you so much!!

No problem :)

This archived topic is closed to new replies.