Hi, how can I customize the load more button in a masonry galley? I want to increase the font size and change the font color and maybe add a different background color.
Thanks.
for example if you don’t like it fullwidth :
#top .av-masonry-load-more {
display: inline-block;
box-shadow: 3px 3px 6px #666;
border-radius: 15px;
left: 50% ;
transform: translateX(-50%);
position: relative;
top: 15px;
}
Yes, but that is not the design I want.
I want the button to look like in the screenshot – https://screencast.com/t/BXbIa7Qi3E – and to keep it in the center. How can I do that?
nice to see one screenshot – and you are not able to adjust the few lines yourself ?
Centering from a screeshot is hard to say – center to what – a link is alway better
#top .av-masonry-load-more {
display: inline-block;
box-shadow: 1px 1px 3px #666;
border-radius: 15px;
left: 50% ;
transform: translateX(-50%);
position: relative;
top: 15px;
color: #fff ;
background-color : rgb(30,205,215) !important;
font-size: 28px !important
}
PS : you get rid of that deformation by letter-spacing set to 0px
Hi,
That worked for you?
Best regards,
Basilis
It still isn’t aligned to the center. How can I align it?
Hi,
Please try this as well:
.av-masonry-load-more {
display: table !important;
transform: translateX(0%) !important;
margin: 20px auto !important;
}
Best regards,
Rikard
Hello. I could create a new topic, but after all it is about customizing the masonry load more button. We’d like to change the “load more” text to our language. Possible to do it with add_filter and a str_replace or something else?
Hi,
@tekniskakari Please use this plugin – https://wordpress.org/plugins/loco-translate/
Cheers!
Yigit
Thanks!