Hi support team,
i want to add a box shadow to h1. Please see the example website. Could you help me please?
Hi vnfan!
use a code like this inside your Quick CSS field:
.avia_textblock.av_inherit_color {
background: rgba(0, 0, 0, 0.6);
}
Best regards,
Andy
Hi Andy,
I have add the code but the box is too long. Please take a look again.
Hey!
Please wrap your H1 tag into a span with a custom class
<span class="my-custom-class"><h1>here is my text</h1></span>
and then change the code to following one
.my-custom-class { background: rgba(0, 0, 0, 0.6); }
Best regards,
Yigit
Hi Yigit,
it didn`t help. This is how the code look liked
[av_textblock size='' font_color='custom' color='#ffffff']
<span class=”my-custom-class”>
<h1>Impressum</h1>
</span>
[/av_textblock]
Hi!
Do you mind creating a temporary admin login and posting it here privately?
Regards,
Yigit
yes. Please see the privat content.
Hey!
I wrapped your text into a custom div and changed the code to
.custom-text { background: rgba(0, 0, 0, 0.6); float: left; }
.custom-text h1 { margin: 3px; }
Please review your website now
Regards,
Yigit
great. Thank you Yigit.