Widget CSS Customization
-
Hello I am using the Triton Lite theme and I would like to request a snippet for the following. If you take a look at the middle row widgets in the main page, there’s a music playlist. In that playlist there’s a text in italic that says “Un podcast de vlogazul.com” is there a snippet to make that text normal and not italic? And also the text below it that says “LA TÁCTICA CELESTE” in uppercase, can I make that regular and not uppercase?
I was given this snippets but they are not working.
.wp-playlist-item-album {
font-style: normal;
}.wp-playlist-item-artist {
text-transform: none;
}The blog I need help with is: (visible only to logged in users)
-
That’s the right code and it works for me, can you add it back in to your custom CSS and let me know. That way I can check what’s going on live on your site and see if any of the other CSS is conflicting with it.
-
Sounds good, I already add it those codes back into my CSS. Let me know if there’s any problem, Thanks.
-
Try just increasing the specificity and hopefully that will make it take precedence over the default code:
.wp-audio-playlist .wp-playlist-item-album { font-style: normal; } .wp-audio-playlist .wp-playlist-item-artist { text-transform: none; }
- The topic ‘Widget CSS Customization’ is closed to new replies.