Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
What background specifically?
Thread Starter
David_G
(@questas_admin)
The BODY background
The yellow and green. When viewed on andoid I only get the box around the Featured Page Image (yellow). I just tried to add opacity to the following code but I lose the effect and makes the images square. Is there a way to make that happen ONLY when viewed by android browsers and not for other browsers. OR to use a different color (white) on android..
‘.fpc-widget-front .round-div {
border-color: #ffd700;
opacity:0.0; /* I added this */
}’
Thread Starter
David_G
(@questas_admin)
I tried adding “background: -webkit-linear-gradient” as that site suggested, it works BUT makes it all yellow no gradient on any browser.
Then I added all the webkits. Same result. Currently active, not disabled.
Thread Starter
David_G
(@questas_admin)
Thank You again d4z for steering me the right direction. I was using 90 degree but changed it to “left/right” and that worked. For anyone else who may have this problem, here is what I used. Fill in your own colors.
‘background: -webkit-linear-gradient(left, red , blue); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(right, red, blue); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(right, red, blue); /* For Firefox 3.6 to 15 */
background: linear-gradient(to right, red , blue); /* Standard syntax */’
Good, thanks for sharing this 😀