Okay
  Public Ticket #1176272
Footer
Closed

Comments

  •  2
    techbuddygr started the conversation

    Hello.  I use a footer with 4 columns. But they are not aligned on center. On the right side of the footer there is more space than  the left. I want the columns to be centered. Also, on columns 1,2 and 3, i cannot align the image on the center. Thank you.

  •  9,011
    Tahir replied

    Hey Again,

    You have a unclosed anchor tag that is causing this : 

    Thanks 


    ThemeNectar Support Team 

  •  2
    techbuddygr replied

    what do you mena? how do i close the anchor?

  •  9,011
    Tahir replied
    <a href="http://terzakis-obgyn.gr/terzakis/?page_id=2198">
        <img src="http://terzakis-obgyn.gr/terzakis/wp-content/uploads/2017/05/birth-512.png" alt="Υπολογίστε την πιθανή ημ/νία τοκετού" style="width: 90px; height: 90px;">
    </a>

    You have this missing : 

    in the above html code in the Footer Widget 2 . 

    Thanks 


    ThemeNectar Support Team 

  •  2
    techbuddygr replied

    thank you Tahir. Can i ask my final 3 questions or do i need to open a new ticket? 

    1. how can i align the text that is above and below the images on footer?

    2. how can i adjust the footer height.

    3. when visiting website from a mobile phone, if you open the main menu, the menu items are messed up and the social icon get in the way. how can i fix this? how can i decrease the font size? maybe this will solve the issue.

  •  9,011
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    /* align center footer widget text */
    .widget {
        text-align: center;
    }
    /* reduce footer padding/height */
    #footer-outer .row {
        padding: 15px 0px;
    }
    /* remove extra space */
    #footer-outer br {
        display: none !important;
    }
    /* Reduce size of off canvas menu */
    body #slide-out-widget-area.slide-out-from-right-hover .inner .off-canvas-menu-container li a {
        font-size: 15px !important;
    }
    /* adjust footer icons in mobile menu */
    #slide-out-widget-area.slide-out-from-right-hover {
        padding-bottom: 0px;
    }

    Thanks


    ThemeNectar Support Team