Community Forums › Forums › Archived Forums › Design Tips and Tricks › Genesis Responsive Slider
Tagged: excerpts, opaque, responsive slider
- This topic has 11 replies, 5 voices, and was last updated 11 years, 6 months ago by susanlangenes.
-
AuthorPosts
-
February 7, 2013 at 4:41 pm #18772rasolisMember
Back in the older Genesis slider, the excerpt that appeared in the slider, was opaque. How do I make the excerpt content area in the slider opaque?
Thanks,
Anthony
February 7, 2013 at 7:03 pm #18809susanlangenesMemberAdd the following to the very end of your child theme's stylesheet:
.slide-excerpt {
opacity: 1;
filter:alpha(opacity=100); /* For IE8 and earlier */
}March 4, 2013 at 2:19 am #24006rasolisMemberYeah, it didn't work, see http://www.bodyevolution.org.
March 6, 2013 at 9:31 am #24545Marcel BootsmanMemberThis code:
.slide-excerpt {
opacity: 1;
filter:alpha(opacity=100); /* For IE8 and earlier */
}
Makes the silde-excerpt non-transparent. Change the values to ie. 0.5 and 50, then it should work.
Also remove the !important bit that is in your CSS code now.
March 6, 2013 at 11:24 am #24562rasolisMemberDidn't work - I've cleared cache, CloudFlare and put !important (per Nick's recommendation). Still doesn't work.
March 13, 2013 at 1:06 pm #25907AnitaCKeymasterI've had this issue before trying to copy a new slider CSS code into my style.css. The only way I've been able to edit the slider is within the slider itself and I have to remember that if I update the plugin - I have to add my code back. The code in your slider reads this:
#genesis-responsive-slider .slide-excerpt { margin: 0; opacity: 0.95; padding: 30px 30px 20px; }
Change 0.95 opacity to 0.8.
Need help with customization or troubleshooting? Reach out to me.
March 13, 2013 at 1:10 pm #25910RiavonMembernevermind ... it looks like I was beat to the punch yet again.
Twitter: @riavonentprises
March 13, 2013 at 1:12 pm #25912rasolisMemberYeah I tried using a range of numbers in the Opacity section. It didn't do anything. I'll try Anitac's suggestion. Thanks all!
April 8, 2013 at 6:03 pm #34154rasolisMemberStill not getting the General excerpt clearer (opacity) - I have tried everyone's suggestion on this thread. Any more ideas? Maybe a link to where it worked for you?
April 8, 2013 at 6:35 pm #34163susanlangenesMemberHere's a site where I have that slider: http://music.collagecreative.net/
I made it opaque for you.
I see that you have put opacity: 0.95!important somewhere. Where is that? If you want it opaque, it should work to change that to opacity: 1!important
I'm admittedly a little confused by the initial question as well as the responses in this thread. Opaque means non-transparent. As in, solid white. I'm assuming that's what you're after based on the initial question, but I wonder if what you really mean is that you want the background on that div to NOT be opaque.
If that's indeed the case (you want it to be semi-transparent), then you need to address the opacity of the background itself, and not the entire div, because if you make the entire div semi-transparent then the text is also affected.
You might try this:
background: rgba(255, 255, 255, 0.3);
Which will give a background color of white with 30% opacity.
Please advise!
April 8, 2013 at 6:40 pm #34168rasolisMemberLOL - sorry I meant to say less opaque. I need the general excerpt to be more transparent, they way it was in the original Genesis slider (before responsive).
If it affects the text too then that won't work either. If you are familiar with the older Genesis slider, it was a little more transparent than today's responsive version.
Appreciate the help and sorry for the confusion on my part.
April 8, 2013 at 7:20 pm #34175susanlangenesMemberRight on, glad we got that cleared up.
So I'd suggest this:
background: rgba(255, 255, 255, 0.3);
(and of course that last number can be whatever you want). I just implemented that here: http://music.collagecreative.net/ and made the opacity 0.75.
-
AuthorPosts
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.