I need to get these service boxes just a little transparent so that it matches the rest of the theme.
How do I make the service boxes semi-transparent? See link below for explanation
https://dl.dropboxusercontent.com/u/52916400/boxes.png
You guys are amazing!
Hi erik!
Please add following code to Quick CSS
.main_color.iconbox_top .iconbox_content {
background-color: transparent;
}
Cheers!
Yigit
I still wanted the white, but have it semi-transparent 50%?
Hey!
My bad, please use following code
.main_color.iconbox_top .iconbox_content {
background-color: rgba(255,255,255,0.5);
}
Best regards,
Yigit
That’s it. This is looking awesome Yigit!
How about these last parts:
https://dl.dropboxusercontent.com/u/52916400/fields%20transparent.png
Hi!
Please add following code to Quick CSS as well
#top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
background-color: rgba(255,255,255,0.5);
}
.av_promobox {
background-color: rgba(255,255,255,0.5)!important;
}
Cheers!
Yigit