I need to be able to create the text below, especially the “&” which sits below the line. Is there any way to do this in the Special Heading or in a Text Block ? Thanks !
Hey bibbitybop,
Could you provide us with a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Sure. I also sent login info in the private section if you need it. Thanks !
Hi,
Please try the following in Quick CSS under Enfold–>General Styling:
h3.av-special-heading-tag span.special_amp {
vertical-align: bottom !important;
}
Regards,
Rikard
That moves the ‘&’ down to where the top is even with with the capital letters. However, I need to move the ‘&” down where the top is even with the lower case letters, as shown in the picture. Can we move it down a little further ? Thanks.
Hi,
Adjust the code to this:
h3.av-special-heading-tag span.special_amp {
vertical-align: bottom !important;
bottom: -15px;
position: relative;
}
Best regards,
Ismael
That works ! Thank-you.