Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #65041
    nelejab
    Member

    Hi,

    Is it possible to display the social icon to the right on the secondary menu line?

    Also, is it possible to move the slider text box so it displays at the top of the slider?

    Thanks for a great theme!

    #65051
    Sakin
    Keymaster

    @nelejab:
    1. Sorry, there is no option to display social icon to the right of secondary menu. For this you need to build child theme and copy function catchkathmandu_secondary_menu() to your child theme and add social icon to it. If you don’t know coding then you need to hire customizer to work on it.

    2 To move the slider text to top, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #main-slider .entry-container {
        bottom: auto;
        top: 0;
    }

    Thanks for your appreciation.

    #65199
    nelejab
    Member

    Great support! Thank you.

    I’ve worked out that to move the box further down the page I just add, for example, 12px instead of the 0 after top:. If I want to move the box further across the page to the right, what parameter would I use then?

    Looking through your answers to various questions, a lot of your answers just seem to involve knowing which parameters to change or define. Are they normal CSS parameters relating to the different variables you have defined in the code?

    Once again, thank you for excellent support!

    #65232
    Sakin
    Keymaster

    @nelejab: ok for that it will be as below:

    #main-slider .entry-container {
        bottom: auto;
        left: auto;
        right: 12px;
        top: 12px;
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Social icon and slider text box’ is closed to new replies.