• Hello,
    I started using the Libretto Theme and have a question: Is it possible to give the text box in the blog a kind of transparency (50% or so) like the comment boxes have?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi there,

    Are you referring to the entire content area of a post?

    If so, here is the code for content box that will match the the background for the comment box:

    @media only screen and (min-width: 860px)
    .libretto-long-form {
    background: rgba(255, 255, 255, 0.75);
    }

    Please let me know if you are referring to the entire content area or just the area where the text located. There are all connected, so they will all be the same color.

    Thanks,

    Thread Starter chris1618

    (@chris1618)

    Hello,
    I can give you the example. My project can be seen here: https://luispescador.de/bom-dia/ I would like to have the background of the blog (Bom Dia) and the Menu at the bottom (search/Categories/Meta etc.) as the box for the comments, so that I can see the Azulejos a little bit through the white….

    Thanks a lot

    That’s fine. You can try adding this under Customize > CSS.

    .libretto-long-form {
        background: rgba(250, 249, 245, 0.95);
    }

    The comment form uses .75 for that last number, if you need them to match. You can try that to see if you like it, but I find it’s hard to read the quote.

    Thread Starter chris1618

    (@chris1618)

    Supernova, thanks a lot. that looks really good. That is exactly what I wanted to have. Is there the possibility to do the same for the menu section an the end od the page? (I mean the so to say footer with the menu for the categorys, the metadata etc)

    Then everything would be perfect

    To apply the transparency to the footer area as well, just modify that code as follows:

    .libretto-long-form, #footer-sidebar {
        background: rgba(250, 249, 245, 0.90);
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Transparent Content Box’ is closed to new replies.