Notifications
Clear all

Style [Solved] Turn LOAD MORE TOPICS into button

2 Posts
2 Users
2 Reactions
383 Views
Posts: 93
Topic starter
(@nutritionchat)
Estimable Member
Joined: 4 years ago

I searched, but could not find this posted on the forums.

This is the css I've just come up with, that seems to work OK.

/* Turn LOAD MORE TOPICS into button */ 
.wpf-more-topics {
    text-align: center !important;
    font-weight: 600;
    font-size: larger !important;
    background-color: yellow;
    max-width: 200px;
    margin: 0 auto !important;
    padding: 10px 0px !important;
border: solid 1px #ccc !important;
box-shadow: 1px 1px 5px #ccc !important;
transition: all 0.2s ease-in-out;}

.wpf-more-topics:hover {
box-shadow: 0px 0px 0px #ccc !important;
transition: all 0.2s ease-in-out;
}
1 Reply
RealAct
Posts: 224
(@realact)
Reputable Member
Joined: 6 years ago

Thanks, I like that better than the plain link.