how can i bring icon to vertical center?
How can i remove the underline (link url)
Hi,
Try adding this css code in Quick CSS (located in Enfold > General Styling):
.home #av_section_6 .avia_textblock p {
position: relative;
}
.home #av_section_6 .avia_textblock > p > a:nth-child(2) {
position: absolute !important;
top: -20px;
left: 50%;
margin-left: -11px !important;
}
the icon might not look centered because of the text below it not occupying the whole space, but if you center the text below it or add a background color you should see it centered. Or you can adjust the margin-left value as you see fit.
You can remove the underline by adding this css code:
.home #av_section_6 .avia_textblock a {
text-decoration: none;
}
Best regards,
Nikko