Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1051735
    Lely
    Moderator

    Hi 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?

    #1053354
    that1guy
    Participant

    it 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?

    #1053838
    Christopher
    Moderator

    Hi 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.

    #1054458
    that1guy
    Participant

    Just 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

    #1054578
    Joao
    Moderator

    Hi 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

    #1054891
    that1guy
    Participant

    Thanks 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 up

    Please check the link to the video I don’t know how else to explain, sorry. Should I just give up?!

    https://vid.me/e2LE

    #1055342
    Rue Nel
    Moderator

    Hello 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.

    #1055640
    that1guy
    Participant

    Rue 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!

    #1055924
    Paul R
    Moderator

    Hi,

    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.

    #1056422
    that1guy
    Participant

    Paul, 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!

    #1057198
    Rue Nel
    Moderator

    Hello 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.

    #1057567
    that1guy
    Participant

    Rue 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!

    #1057657
    Rue Nel
    Moderator

    Hello 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.

    #1058043
    that1guy
    Participant

    Thanks, that’ll work.

    #1058127
    Joao
    Moderator

    Great to hear it.

    Let us know if you need help with anything else.

    Joao

  • <script> jQuery(function($){ $("#no-reply-1040711 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>