Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #756929

    mayurd
    Participant

    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
    Mayur

    #757355

    Rupok
    Member

    Hi 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!

    #758561

    mayurd
    Participant

    Thank you, that is exactly what I required!

    #758611

    Paul R
    Moderator

    You’re welcome! 🙂