Reputation: 57
I have some problems center aligning the Read More button. How can I center align the read more button?
.moretag {
color: #404040 !important;
}
.moretag:hover {
color: #fa5742 !important;
}
Upvotes: 1
Views: 999
Reputation: 5639
This should do it. You should also post your code instead of links.
.moretag img {
display: block;
margin-left: auto;
margin-right: auto;
}
also since you're using an image for the button. You should crop the image closer to the button so it can be truly centered.
Upvotes: 1