Tagged: x
-
AuthorPosts
-
June 20, 2016 at 8:35 pm #1051735
LelyModeratorHi There,
Upon checking again it is disabled on your Customizer again. It should always be set to ON from Appearance > Customize > Footer > Scroll Top Anchor. To help you better, can you clarify what are the issue you have encountered after the previous CSS suggestion?
June 21, 2016 at 6:25 pm #1053354
that1guyParticipantit has either been transparent(recently, until I hover over it) the arrow disappears when I hover over it or it’s covering up content. I would like it to be under pages/content and not over/covering anything. I’ve posted images and vids! Can someone just give me some code to where I can start fresh and not have to update, replace or add anything??
Also to be sure, I’m not to put any CSS code in when editing in cornerstone at all right? Just in Appearance > Customize > Custome > edit global CSS?
June 22, 2016 at 1:39 am #1053838
ChristopherModeratorHi there,
The scroll anchor button has fixed position and it covers part of your content that’s why we didn’t make it full width.
The code we provided in previous replies helped you to achieve the layout you want, so I don’t understand what the issue is?
In this replay https://community.theme.co/forums/topic/2-lines-of-text-in-the-footer/page/2/#post-1050164 you said :
When I hover over the Back to top area the arrow disappears and the whole bar is transparent and not a solid color
So it means that the issue was about hovering state, so I provided you with this replay https://community.theme.co/forums/topic/2-lines-of-text-in-the-footer/page/2/#post-1050171 to change hover state.
Would you please clarify why you remove all CSS code and want to start over?
Hope it helps.
June 22, 2016 at 10:08 am #1054458
that1guyParticipantJust in case I input something wrong. So what all should I put in CSS starting fresh, and can you give me the code in one go?
Also, should I do it in Cornerstone or in the regular customizer?
Fingers crossed this time!
Thanks for all responses
June 22, 2016 at 11:11 am #1054578
JoaoModeratorHi There,
Upon Reading the thread I believe you should add this code to your Appereance > Customizer > Custom > CSS
footer.x-colophon.bottom { padding-bottom: 70px; } .x-scroll-top.left { left: 0 !important; } body .x-scroll-top { width: 100%; border: 0; text-align: center; background-color: #000; border-radius: 0; height: auto; text-align: right; padding-right: 10px; color: red; } body .x-scroll-top:hover { color: #fff; background-color: #000; opacity: 1 !important; }Let us know how it goes
Thanks
Joao
June 22, 2016 at 2:01 pm #1054891
that1guyParticipantThanks for replying, Joao.
1. The border going across the screen is transparent
2. Its only a solid color when I hover over it
3. It’s still covering content.. is there a way to like make the page raise up over the border when it pops upPlease check the link to the video I don’t know how else to explain, sorry. Should I just give up?!
June 22, 2016 at 7:43 pm #1055342
Rue NelModeratorHello There,
Please update your css code block:
footer.x-colophon.bottom { padding-bottom: 70px; } .x-scroll-top.left { left: 0 !important; } body .x-scroll-top { border: 0; text-align: center; background-color: #000; border-radius: 0; height: auto; text-align: right; padding-right: 10px; color: red; } body .x-scroll-top:hover { color: #fff; background-color: #000; opacity: 1 !important; } body .x-scroll-top.in { opacity: 1; }Please let us know if this works out for you.
June 22, 2016 at 9:58 pm #1055640
that1guyParticipantRue Nel, it’s now only a small box, but the color of the box is solid now.
So, now how do I get the border to stretch across the screen and also under the page and not on top/covering. See screen shot
Thanks, getting there!
June 23, 2016 at 2:58 am #1055924
Paul RModeratorHi,
You can add this under Custom > Edit Global CSS in the Customizer.
body .x-scroll-top.right { right:0; width:100%; background-color:rgba(0,0,0,0.6); }Hope that helps.
June 23, 2016 at 9:52 am #1056422
that1guyParticipantPaul, that worked but now it’s back to being transparent. What I did to make it a solid color is.. Instead of the
“background-color:rgba(0,0,0,0.6);”
that you suggestedI put
background-color:rgba(0,0,0,0,0);
*changing the “(0,0,0,0.9)” to (0,0,0,0,0)
basically, I change the (period/dot) to a comma and the (9) to a 0
now how do I get the border to be under the page, like on this site
https://themify.me/ (scroll to bottom) the “back to top” button is under the page and doesn’t cover anything up
Thanks, almost there!
June 23, 2016 at 7:20 pm #1057198
Rue NelModeratorHello There,
Do you want something like this?

If that is the case, please make use of this code instead:
body .x-scroll-top.right { position: relative; right: auto; width:100%; background-color: rgba(0,0,0,1); }And if you want something big and at the center like this:

Please use this code instead:
body .x-scroll-top.right { right: auto; width: 100%; background-color: rgba(0,0,0,1); position: relative; text-align: center; font-size: 64px; }Hope this helps.
June 23, 2016 at 11:31 pm #1057567
that1guyParticipantRue Nel, the second code in your last post is good enough for me for now. Is there a way to also have a separate back to top arrow like before that shows up at about 15% down the page and then disappear when the other onne at the bottom shows up?
Thanks a lot!
June 24, 2016 at 1:27 am #1057657
Rue NelModeratorHello Again,
To save you from trouble and to make the replies shorter, I went ahead and edited your site. I activated the footer widgets and added one widget area. I inserted a text widget and added this custom code in it:
<div class="cs-ta-center"><a class="back-to-top" href="#top" title="Back to Top"> <i class="x-icon-angle-up" data-x-icon=""></i> </a></div>And then, I added a custom code in the customizer:
.x-colophon.top { padding-top: 0; } body .back-to-top { text-decoration: none; font-size: 64px; color: red; } body .back-to-top:hover { color: #fff; }What I’ve done is that, I’ve created a back to top link in your footer. This is to preserve the default scroll to top link on the side as you scroll the page.
Hope this would work out for you.
June 24, 2016 at 8:51 am #1058043
that1guyParticipantThanks, that’ll work.
June 24, 2016 at 9:44 am #1058127
JoaoModeratorGreat to hear it.
Let us know if you need help with anything else.
Joao
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1040711 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
