Center Video and Music Titles
- The topic ‘Center Video and Music Titles’ is closed to new replies.
Need help? Check out our Support site, then
Is there CSS for centring the titles for video and music pages?
The blog I need help with is: (visible only to logged in users)
like on these pages:
https://mindofyano.com/youtube/
https://wordpress.com/page/mindofyano.com/746
Is there a way to remove the sound image that overlays the music thumbnails? but keep the overlay?
Entry titles for Video and Record page templates can be centered using the following CSS:
.archive-record .entry-title,
.archive-video .entry-title {
text-align: center;
}
The Record thumbnail icons can be removed using the following CSS:
.archive-record .block-grid-item-thumbnail:before {
display: none;
}
That should do what you’re looking for.
TSorry i meant the titles below the grid images, I figured it out
.block-grid-item-title {
text-align: center;
}
thanks for all the help.
Great, glad to hear it!