Hi,
How do I change the size of the title for the accordion slider?
Is there any way to make the text flip 90 degrees counter clock wise?
How do I make it so the text is not all caps?
How do I change the background color (the semi transparent black?)
Hi mcraig77!
thanks your using the theme.
Size for the title:
#top .aviaccordion-title {
font-size: 20px;
}
Rotating title:
#top .aviaccordion-title {
-webkit-transform:rotate(-90deg); -moz-transform:rotate(-90deg); -o-transform:rotate(-90deg); transform:rotate(-90deg);
}
Not all caps:
#top .aviaccordion-title {
text-transform: none;
}
afterwards change the letters also in the avia layout builder to small letters.
Background color:
#top .aviaccordion-preview-title-wrap {
background: rgba(255,0,0,0.5)
}
use the first three numbers as the color code and the last one (0.5) is the opacity.
Hope that helps! Let us know if you need any more help.
Cheers!
Andy
Hey!
please try by adding this code:
#top .aviaccordion-preview-title-wrap {
display: flex;
padding-top: 355px;
}
Cheers!
Andy