wordpress theme css3

by 5 replies
6
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 )
#website design #css3 #theme #wordpress
  • If you'd like, PM me the logins and I'll take a look for you in an hour or so.
  • Try to learn basic css and on how to use firebug.
  • it's problem about css3 because i want make background trensparent but i dont know how integrate code on this theme
  • 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.
    • [1] reply

Next Topics on Trending Feed