• I have tried everything to try get those white boxes my posts make, transparent or to just have them disappear, please help here is a link,

Viewing 10 replies - 1 through 10 (of 10 total)
  • user css proporty opacity
    example

    .classname{
      opacity:0.5 /*Will set opacity to 50%*/
     }

    opacity accepts value from 0 to 1.

    Hello fransie,

    There is no link to your site can you please provide that!

    Thank you.

    Thread Starter fransie

    (@fransie)

    Thread Starter fransie

    (@fransie)

    that is the link sam, sajiddesigner i tried copy pasting that in my custom css and nothing happens…

    Hello Fransie
    please use following code in CSS

    article.post {
     opacity:0.7 /*Will set opacity to 50%*/
    }

    This will solve your issue.

    Thank you

    Thread Starter fransie

    (@fransie)

    Thank you so much i have been trying to do that for days now! Is it possible to only make the box see through and not the text? really appreciate the help!

    You can set the background color of the box with an opacity using rgba;

    article.post {
        background-color: rgba(200, 54, 54, 0.7);
    }

    You can get rgb values from a tool like Photoshop or an online convertor like this one http://hex2rgba.devoth.com/

    This works in all current browsers. Internet explorer 8 will show a solid color.

    Fransie remove opacity and use background-color as suggested by Justin Tucker.
    And kindly mark this question as resolved if this is resolved

    Thank you

    Hello Fransie,

    You can try this in your Custom CSS to make the box transparent:

    article.page, .hentry {
        background: transparent none repeat scroll 0 0 !important;
    }
    .hentry, .hentry p, article p {
        color: #fff;
    }

    If the above code is not helping you please provide a screenshot of the page or provide direct link to the page where you face the problem.

    Hope that helps you, feel free to ask if there is any other problem.

    Thank you.

    Thread Starter fransie

    (@fransie)

    Hi guys thanks for all the help it worked i have a new problem if you guys can possibly take a look and maybe assist with a solution?

    https://wordpress.org/support/topic/auto-post-on-page-after-upload?replies=7#post-7986999

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘How to make post box transparent’ is closed to new replies.