5 replies
  • WEB DESIGN
  • |
hello guys,

it's 3 days i work on finding some options in my theme wordpress but no way

i want to make page color baground trensparent because that will look beautiful.

my theme wordpress is Kaleido and after i contact support staff it says that will be done with css3 options but i dont know how because i m just beginner

thank you in advance and i which you help (sorry for my bad english )
#css3 #theme #wordpress
  • Profile picture of the author Nathan Franklin
    If you'd like, PM me the logins and I'll take a look for you in an hour or so.
    {{ DiscussionBoard.errors[9795312].message }}
  • Profile picture of the author buyandsellit
    Try to learn basic css and on how to use firebug.
    {{ DiscussionBoard.errors[9795608].message }}
  • Profile picture of the author justsomemoney
    it's problem about css3 because i want make background trensparent but i dont know how integrate code on this theme
    {{ DiscussionBoard.errors[9795935].message }}
  • Profile picture of the author kumarraj
    Originally Posted by justsomemoney View Post

    hello guys,

    it's 3 days i work on finding some options in my theme wordpress but no way

    i want to make page color baground trensparent because that will look beautiful.

    my theme wordpress is Kaleido and after i contact support staff it says that will be done with css3 options but i dont know how because i m just beginner

    thank you in advance and i which you help (sorry for my bad english )
    If you want to set background transparent for any element you can add the following code.
    Code:
    <style>
    .try{
       background: rgba(0, 0, 0, 0.5);
    }
    </style>
    I am adding an example for a try class. First three number represent color and last one represents opacity, where 1 is fully opaque.
    {{ DiscussionBoard.errors[9796384].message }}

Trending Topics