Tagged: CSS, full width easy slider, text
hi,
i had this code from before but it’s not working…
avia-caption-content { font-size: 24px; }
need to edit both the title and text styles…
thanks :)
jaz
Hi jazbird!
Please add following code to Quick CSS
h2.avia-caption-title {
font-size: 24px!important;
}
div.avia-caption-content {
font-size: 16px!important;
}
Cheers!
Yigit
thank you!
hmmm… actually didn’t work at all?
this is the page i’m trying to edit…
want to make the slider caption not all uppercase & adjust font styling.
http://b3e.cf9.myftpupload.com
wasn’t sure if i need to add the dot before the css – like .h2.avia-caption-title… etc
but i tried both and nothing changed.
j
Hey!
Please add following code to Quick CSS instead
div .slideshow_caption h2 {
text-transform: none!important;
font-size: 24px!important;
}
Best regards,
Yigit
hi yigit,
that’s not working either…?
j
Hi!
I wanted to check but it seems like you are now using Special Heading element. Please try following code
body .av-special-heading .av-special-heading-tag { text-transform: none!important; font-size: 24px!important; }
Cheers!
Yigit
thanks – it seems to be working now… i think i was having caching issues too so edits weren’t showing up.
while i’m here – if i have a heading with a link in it… H2 heading – how can i make it so the text that is a link has colored? it’s just all showing up the same. do i need to put tags around it?
thank you!
Hi!
You can change the color with:
#top h2 a{
color: #ff0000;
}
and the hover color with:
#top h2 a:hover{
color: #ff0000;
}
Best regards,
Peter
And how would I make the caption in italics?
Never mind – I was able to work with your instructions to get what I was after. Here it is, fyi: this made the Easy Slider caption title green and italicized:
div .slideshow_caption h2 {
text-transform: none!important;
font-size: 32px!important; color: #a5ce39; font-style:italic;
}
Hey!
Great, glad you found a solution :)
Cheers!
Peter