x

Remove "TOP" button on footer

I currently am working on a site and it has been going fairly smoothly.

I had chosen the theme colors as dark blue, light grey, and light green. However, I noticed today that there is an ugly "TOP" button which sends you to the top of page. It is a nice feature to have on the site but it is a bright bronze and does not fit with the rest of the site.

Is there a way to edit the design of the button - or at least remove it?

It is on the top right of the footer section of my website.

When I try to edit the footer the button isn't there, I can only edit the footer text.

1,470 Views
Message 1 of 7
Report
1 Best Answer

Best Answer

Hi @jakelarsen1999,

The TOP button is managed with the .scrolltop class. If you want to get rid of it add this to the end of your main css file:

.scrolltop {
    display: none;
}

You can also choose to change its color and background to something that suits your theme. For example:

.scrolltop {
    background: #222222;
    color: #80c64d;
}

Which will produce this look:

image

 Let me know if you need any more guidance.

Regards, Mark

View Best Answer >

1,443 Views
Message 8 of 7
Report
6 REPLIES 6

@jakelarsen1999

Website address?

1,468 Views
Message 8 of 7
Report

@NJRFTF

atlantabible.org
Any way to fix this is appreciated, thanks!
1,463 Views
Message 8 of 7
Report

Best Answer

Hi @jakelarsen1999,

The TOP button is managed with the .scrolltop class. If you want to get rid of it add this to the end of your main css file:

.scrolltop {
    display: none;
}

You can also choose to change its color and background to something that suits your theme. For example:

.scrolltop {
    background: #222222;
    color: #80c64d;
}

Which will produce this look:

image

 Let me know if you need any more guidance.

Regards, Mark

1,444 Views
Message 8 of 7
Report

Hi @jakelarsen1999,

How did you go with your website? It seems to be gone now. Did you find another solution or use the CSS that I provided?

It's helpful if you can reply to the help offered so other users know if it can solve their problems too.

Regards, Mark

1,429 Views
Message 8 of 7
Report

@MJCS

Thanks, it did work! I originally kept the button and made it look nicer, but it looks cleaner and more symmetric without it.

Thank you and I'll mark your answer as the solution
1,424 Views
Message 8 of 7
Report

Glad to hear that, @jakelarsen1999.

Cheers, Mark

1,421 Views
Message 8 of 7
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.