Archived topic
Load More and Loading button CSS
3 replies · Started by Kle on May 20, 2018
Hi there,
I'm customizing with css the "Load More" button (of posts) but there are a couple of things I need help with.
I am trying to center it and can't yet, I've tried tex-align and other things and so far still setas on the left side.
And also, I customized its hover look, but I would like to modify the default background colors of the "Loading..." message as well. How can I css that?
Thank you.
Hi there,
This CSS should center it:
.masonry-load-more.load-more {
text-align: center;
}
This should change the loading text background:
.masonry-load-more .button:focus {
background-color: #000;
}
Let me know if this helps.
They work well, thank You Leo!
No problem :)