• Hello,

    Loving this theme. Please can you let me know how to change the font, font size, and font colour of the title and subtitle text that overlays the images on the image menu? Also, how can I remove the border on the images?

    Thanks a lot!

    Kate

Viewing 1 replies (of 1 total)
  • This CSS should allow you to set the fonts of the image menu:

    .image-menu-modual .image_menu_item_link .image_menu_message h4 {
        font-size: 12px;
        color: black;
    }
    
    .image-menu-modual .image_menu_item_link:hover .image_menu_message h5 {
        font-size: 10px;
        color: black;
    }

    Just add whatever font properties you want to the CSS and add to Theme Options> Custom CSS.

    This CSS will remove the border from the image menu:

    .image-menu-modual .image_menu_message.imt-valign-bottom {
        border: none;
    }

    Let me know if that works for you!

    -Kevin

Viewing 1 replies (of 1 total)
  • The topic ‘Changing image menu font and border’ is closed to new replies.