Hi! I’m wondering if it’s possible to have just one single semitransparent frame containing both the title and caption on the full width slider? Instead of two separate as it is by deafult, or if it’s possible to hide the frame on just the title but display it on the caption?
Best regards
/Michael
Hi Michael,
Could you post a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Hi Rikard, thanks for your reply. I’ll post the link private. I experimented with putting <H1> and <p> tags within the caption and then the <H1> is displayed without background and the <P> has background. Which kinda works, but the result I would prefer is one background containing both Caption Title and Caption Text.
Best ragards
/Michael
Hi Michael,
If you want to have a background on the caption as well you can use the following CSS:
.avia-caption-content {
background: rgba(0, 0, 0, 0.5);
margin: 0 0 1px 0;
padding: 10px 15px;
}
If you want to remove the background from the title you can use this:
.avia-caption-title {
background: rgba(0, 0, 0, 0) !important;
}
Best regards,
Rikard
Thanks Rkard, that works just fine :)