Is it possible to make Icon Boxes a PERCENTAGE of White so you can see the image below it like a transparent look?
Say a 75% of #ffffff
Or can the white be changed to a Hex Color?
I’ve found how to do this to the ICON BOX by using this code:
.page-id-60 .main_color.iconbox_top .iconbox_content {
background: rgba(255,255,255,.8);
}
What would the CSS be for changing a PROMO BOX??
See here: http://ng-sandbox.com/warren/dental-plan/
The test on the Right is with an ICON BOX with the proper ID, how can I change the PROMO box on the left – make that white background the same “TRANSPARENCY”
Thanks in Advance
Paul
Also – how do you do a series of page ID’s in this code for ICON BOX transparency?
For instance, Page ID’s 58 and 60
Just the 60 works by using:
.page-id-60 .main_color.iconbox_top .iconbox_content {
background: rgba(255,255,255,.8);
}
But trying to add Page ID in a series does not work:
.page-id-58, 60 .main_color.iconbox_top .iconbox_content {
background: rgba(255,255,255,.8);
}
Do I have to add this CSS for Each and Every Page ID that has a Icon Box?
Still needing code for “PROMO BOX” – thanks!
Hey!
The code for the promo box would be:
.page-id-60 .av_promobox {
background: rgba(255,255,255,.8);
}
If you want to target multiples you do it this way:
.page-id-58 .main_color.iconbox_top .iconbox_content, .page-id-60 .main_color.iconbox_top .iconbox_content, .page-id-38 .main_color.iconbox_top .iconbox_content {
background: rgba(255,255,255,.8);
}
Cheers!
Josue
Hey Josue!
The icon box works perfect for multiple page ID’s
Can you provide code for multiple Promo Boxes? What I’m “trying” just is not working.
Thanks!
Paul
.page-id-60 .av_promobox, .page-id-48 .av_promobox, .page-id-38 .av_promobox, .page-id-23 .av_promobox {
background: rgba(255,255,255,.8);
}