I added this css under general styling to apply to the special heading on my home page:
.special-heading-border {
border-bottom: 2px dashed #CCBDB8!important;
padding-bottom: 10px!important;
}
The dashed underline is extending out to the right side however, and is not appearing underneath the heading like an underline as I want it too? How can I fix this?
Hey Moondreamer21,
Remove what you have and add this to quick css:
.av-special-heading.av-special-heading-h3{
border-bottom: 2px dashed #CCBDB8!important;
padding-bottom: 10px!important;
}
Best regards,
Jordan Shannon
It looks good on desktop, but it’s not appearing properly on mobile – can you test it and offer an css code adjustment?
Hi,
Add this to quick css in place of what I gave above:
.av-special-heading.av-special-heading-h3{
border-bottom: 2px dashed #CCBDB8!important;
padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
.av-special-heading.av-special-heading-h3{
padding-bottom:40px;
}}
Best regards,
Jordan Shannon
Thanks Jordan, but it doesn’t seem to work to position the dash on mobile.
When I switched the padding to top (instead of bottom) as an experiment for mobile, it puts space above all the text, too.
Hi,
It should work, please just add what I posted. Make sure it is placed at the very top of quick css so that it runs first. Also be sure to clear your cache a few times over.
Best regards,
Jordan Shannon
Ah, looks like it’s working now – thanks Jordan! :D
Hi,
No problem. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon