Viewing 15 replies - 1 through 15 (of 17 total)
  • Hello jkotsch 🙂

    The scroll to top button you have on your site now is a plugin called:
    scrollup v2.1.1
    So it looks like you don’t have removed all the plugins.

    Cheers,
    Petter

    Thread Starter jko

    (@jkotsch)

    No, that is one I just added a few minutes ago.

    Thread Starter jko

    (@jkotsch)

    I have double checked all of my plugins, and I dont see any for scroll ups. Where else can I find it?

    check your style.css:

    /*To Top*/
    .to_top {
        width: 40px;
        height: 38px;
        display: block;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        color: #fff;
        background: rgba(0, 0, 0, 0.2);
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        position: fixed;
        bottom: 20px;
        right: 20px;
        cursor: pointer;
        text-align: center;
        padding-top: 2px;
        display: none;
        opacity: 0.4;
        z-index: 99;
    }
    
    .to_top:hover {
        opacity: 1;
    }
    
    .to_top i {
        font-size: 26px;
        padding-top: 4px;
    }
    
    .to_top.hide_totop {
        display: none !important;
    }

    Then change the opacity to make it darker 🙂

    Cheers

    Thread Starter jko

    (@jkotsch)

    Where do I find this at? I dont know css.

    Don´t worry its very simple. Just go to your admin dashboard:

    yoursite.com/wp-admin

    When you are in your dashboard click on:
    Appearance > Editor

    In the editor the first you will see is your style.css file.

    scroll down to you see:

    .to_top:hover {
        opacity: 1;
    }

    Thread Starter jko

    (@jkotsch)

    I tried that and changed the opacity and it didn’t do anything.

    Theme Author OptimizerWP

    (@layerthemes)

    Hi

    Insert this in Appearance -> Customize -> Miscellaneous -> Custom CSS

    .to_top {
        background-color: #000;
        opacity: 1;
    }

    Thanks

    Thread Starter jko

    (@jkotsch)

    Thank you!! That is exactly what I needed.

    Thread Starter jko

    (@jkotsch)

    I know I marked this as resolved, but it’s not anymore. I was looking at my other pages and the scroll to top button is only black on the main page. I need it black for every single page for the website.

    Please advise.

    Thread Starter jko

    (@jkotsch)

    The button is not black anymore anywhere on the site. Help.

    I don’t see any of the code from this thread on your site any more. Did you edit the stylesheet as wpkinds suggested or did you use the built-in custom CSS option as layerthemes suggested?

    Thread Starter jko

    (@jkotsch)

    Strange, I added all the code there. I use the custom CSS because idk how to setup a child theme.

    Thread Starter jko

    (@jkotsch)

    Its weird. Like I’ll add the css code then it will work for a while but then it will stop. So i delete it and add it again and it works for a while.

    Right now (1:54pm Mountain time), I see the button is black: http://imgur.com/bQvwhRx

    Do you see the button as black right now? If so, does the button remain black if you don’t do anything on the site (don’t log in, don’t add new posts, etc.) for an hour or so and then return?

Viewing 15 replies - 1 through 15 (of 17 total)

The topic ‘scroll to top button’ is closed to new replies.