Font size of albums

HI, I was wondering how to change the font size of all the albums. Our theme font is rather large because the website is for those 55+ in age so they can see it, and because of that the album names don’t show but a few characters. I was wanting to make it much smaller so you could see the majority of the album name. TYIA

Hello Tammy1999,

I assume you want to change the album title under media > album tab.

To change the font size of album name, you will need to set font size for .rtmedia-container .rtmedia-list .rtmedia-item-title h4 selector.

Goto wp-admin > rtMedia > Custom CSS and put the style as given below,

.rtmedia-container .rtmedia-list .rtmedia-item-title h4 {
    font-size: 15px;
}

Increase or decrease font size 15px as per needed in above code.

Let us know if this works for you.

If you are looking something else, please provide your website URL and the exact location where you want to change font size along with screenshot so that it will be more helpful.

Regards,

Didn’t change anything. I decreased the font a couple of times with no change.

Please try to add !important to update the priority. Replace code with below one,

body .rtmedia-container .rtmedia-list .rtmedia-item-title h4 {
    font-size: 15px !important;
}

OR

Could you please provide the website link and the exact location where you want to change font size so that we can check it.

Regards, Manish

That worked perfectly!!! Thank you so much

Glad to know it works for you.

Regards,