Site logo

Archived topic

Infinite Scroll Button Over-Width

3 replies · Started by Rizki on November 4, 2018

Viewing posts 1–4 of 4

Hi there,

I try add this code :

.load-more .button {
	width:100%;
	text-align:center;
}

But why the width exceeds the original layout ?

Hi there,

the element has padding which adds to its size, you can get round this by using this CSS:

.load-more .button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

Thanks, it works.

Glad i could help

This archived topic is closed to new replies.