Hello,
I am trying to incorporate images and text in my mega menu columns, but they aren’t aligning properly. I used the following short code to include the image and link to the appropriate page.
I just add the title text after the short code and it appears to the right, but it doesn’t not appear centered next to the image. Is there a simple way to fix this?
Hi!
Try surrounding the text with a span like so.
<span>Software</span>
And then add this to your custom CSS.
.mega_menu_title span {
position: relative;
top: -10px;
}
Regards,
Elliott