Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #427669

    Hi,

    Seems like the question didn’t go through yesterday. Listed everything point wise
    1. Looking to move the caption of the thumbnail image below the image.
    Scroll Down, open the link Uniform in a Box, The caption of the thumbnail image, I would like to move it below the image. By default its above it. Tried finding the CSS element associated with it but couldn’t since it hides automatically unless the mouse cursor is over it.

    2. I would like to add another Logo on the right part of the header. How can I go about doing this? Any guide I could follow of Enfold?

    Thanks,
    Suums

    #428120

    Hey Sumeru!

    Thank you for using Enfold.

    1.) Looks like you managed to move the captions below the image.

    2.) If you want to another logo, please refer to this link: http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/

    You can also use this filter in the functions.php file to add another logo manually:

    add_filter('avf_logo_subtext', 'avf_logo_addition');
    function avf_logo_addition($sub) {
        $sub .= "New Logo Here";
        return $sub;
    }

    Use html tags to add the logo.

    Regards,
    Ismael

    #428156
    This reply has been marked as private.
    #428874

    Hey!

    Try this to adjust the tooltip position.

    .avia-tooltip.avia-tt {
      margin-top: 170px;
    }
    
    .avia-tooltip .avia-arrow-wrap {
      top: -20px;
    }
    
    .avia-arrow {
      top: 15px;
      margin-left: -5px;
    }

    Note that this is going to be applied to all elements with the tooltip caption.

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.