• Resolved crod

    (@crod)


    Hello,

    how can I remove the black box hover on “next post”

    Is there a way to make the widgets on the side closer to each other?

    Can I remove the footer social ONLY from my homepage? (i still would like it to appear on other pages.

    thanks!

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hi there,
    You will need to add some custom CSS to achieve this.
    Install and activate this plugin then go to “Add Custom CSS” on your dashboard and paste this

    
    /*remove hover */
    #paging a:hover {
        background: transparent;
        color: #111;
    }
    /*Widgets closer*/
    .sidebar.sidebar-right .widget {
        padding: 10px 0 10px 30px;
    }
    /*Remove Social icons in Homepage*/
    .home footer .site-tools{
      display:none;
    }
    
    

    in the box.

    Let me know if this helps

    Thread Starter crod

    (@crod)

    THANK YOU fotis. Everything expect for the last one, the social icons are still appearing at the bottom of my homepage…

    Hi,
    can you send me a URL so I can see what went wrong?

    Thread Starter crod

    (@crod)

    Hi there,
    It seems it is password protected? Can you disable your maintenance plugin?

    Thread Starter crod

    (@crod)

    Hi, sorry about that. I’ve disabled the password now!

    Hi there,
    add this

    .home .socials {
        display: none!important;
    }

    instead

    Thread Starter crod

    (@crod)

    THANKS! it worked 🙂

    Glad I could help!
    Please mark this thread as resolved then 😀

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘theme related questions’ is closed to new replies.