-
AuthorPosts
-
January 21, 2016 at 8:36 am #756929
Hello,
I run a weblog called NSShadowcat and I have recently been tweaking my CSS in my theme’s child class.
Theme: Ethos
Webpage: http://nsshadowcat.com/archives/69
The problem I’m facing is that the unordered list in the webpage is not displayed as the rest of the blockquote. I wish I could be of more help while describing the problem but a quick lookup should be self-explanatory. I would be extremely grateful if you could help me with the code necessary to fix this issue.
Here’s my custom css until now:
blockquote { font-family: Lucida Grande; font-size: 14px; font-color: #fefefe; margin: 0.0em 0; padding: 0.1em 25px; position: relative; color: #fefefe; border: 0px; } blockquote cite { color: #fefefe; font-size: 14px; } blockquote cite:before { content: "\2014 \2009"; } body { overflow: hidden; } blockquote p { color: #707070 !important; } .single-post .x-nav-articles { display: none; } a { color: black; } a:link { text-decoration: underline; }
Thank you
MayurJanuary 21, 2016 at 1:00 pm #757355Hi Mayur,
Thanks for writing in! I am not entirely sure what you are trying to accomplish for the list item. However you can use this selector to add CSS for the list item within blockquote –
blockquote li { color: #fefefe; font-family: Lucida Grande; font-size: 14px; }
Hope this helps.
Cheers!
January 22, 2016 at 3:07 am #758561Thank you, that is exactly what I required!
January 22, 2016 at 3:44 am #758611You’re welcome! 🙂
-
AuthorPosts