Back To The Top

Back To The Top 1.0.3b

No permission to download
I tried 100 up to 1000 it didn't seem to change it. I want it a bit slower. How would i achieve the transition effect?
thanks,
 
I tried 100 up to 1000 it didn't seem to change it. I want it a bit slower. How would i achieve the transition effect?
thanks,
edit back_to_top.css

Change from
Code:
#top-link {
        display:none;
        position: fixed;
        bottom: {$xenOptions.back_to_top_bottom}px;
        right: {$xenOptions.back_to_top_right}px;
        cursor: pointer;
        outline: none;
        padding: 3px 5px;
        font-size: 1em;
        font-family: '{$xenOptions.back_to_top_font}', Helvetica, Arial, sans-serif;
        text-decoration: none;
        background: {$xenOptions.back_to_top_background}; opacity: 0.75;
        color: {$xenOptions.back_to_top_color} !important;
        z-index:1;
        -moz-box-shadow: 0 0 5px #888;
        -webkit-box-shadow: 0 0 5px#888;
        box-shadow: 0 0 5px #888;
}
to
Code:
#top-link {
        display:none;
        position: fixed;
        bottom: {$xenOptions.back_to_top_bottom}px;
        right: {$xenOptions.back_to_top_right}px;
        cursor: pointer;
        outline: none;
        padding: 3px 5px;
        font-size: 1em;
        font-family: '{$xenOptions.back_to_top_font}', Helvetica, Arial, sans-serif;
        text-decoration: none;
        background: {$xenOptions.back_to_top_background}; opacity: 0.75;
        color: {$xenOptions.back_to_top_color} !important;
        z-index:1;
        -moz-box-shadow: 0 0 5px #888;
        -webkit-box-shadow: 0 0 5px#888;
        box-shadow: 0 0 5px #888;
        transition: background 1s;
}

#top-link:hover {
    background:black;
    }
 
In that case, it should work. What did the template have in there before you made the manual edit?
 
300 as you confirmed. Am i good besides that. i wont need to change again.
But if it said 300 in the template, you have an outdated template, as it's an option value.

Rich (BB code):
        $(document).ready(function() {
                $('#top-link').topLink({
                        min: 400,
                        fadeSpeed: {$xenOptions.back_to_top_fadespeed}
                });
                //smoothscroll
                $('#top-link').click(function(e) {
                        e.preventDefault();
                        $.scrollTo(0,{$xenOptions.back_to_top_scrollspeed});
                });
        });
 
Top Bottom