• Resolved bonnieg77

    (@bonnieg77)


    Is there any way to disable or get rid of the gray line centered at the bottom of each page? It comes directly after the content ends.

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hello bonnieg77,

    Please share the site url so can help you with custom css as per the need.

    Kind Regards,

    Manoj

    Theme Author Archimidis Mertzanos

    (@archimidism)

    Dear @bonnieg77
    please try the following CSS in the WordPress customizer tab in the additional CSS field.

    .blog-item:after {
        display: none;
    }

    If the above does not work

    `.blog-item:after {
    display: none !important;
    }

    Kind regards
    ArchimidisM

    Thread Starter bonnieg77

    (@bonnieg77)

    thank you but unfortunately that didn’t work- maybe because these are all pages, not posts? here is a link to one of them (they are all the same though, using FAQ template) https://scimountainchallenge.com/wp1/course-info/gear/

    Theme Author Archimidis Mertzanos

    (@archimidism)

    Dear @bonnieg77 if you mean the line that goes below the content
    the following code works
    because I have already tested in the customizer.
    .blog-item:after{display:none;}
    I have just tested to our faq page
    https://akisthemes.info/demos/atlast-business/faq/ and it worked.

    If you mean the border of the footer that goes full width try this code:
    .footer-area{border:none;}
    Cheers,
    ArchimidisM

    Thread Starter bonnieg77

    (@bonnieg77)

    Hi, I mean the line that goes below the content which I still see on your linked page- I screenshot it and circled what I’m talking about but can’t find a place to upload the pic (is there somewhere I can do this to show you?) I also screenshot my custom CSS area, but here is exactly what I have in that area and it is not disabling the line- am I missing something?

    /*
    You can add your own CSS here.

    .blog-item:after{display:none;}

    Click the help icon above to learn more.
    */

    Thread Starter bonnieg77

    (@bonnieg77)

    Since this has not been resolved on my end do I need to start a new thread? Please advise- I can share a screenshot showing the line is still there. Thank you!

    Theme Author Archimidis Mertzanos

    (@archimidism)

    Dear @bonnieg77 continue this thread. The code you have sent me , seems that the actual CSS is inside a comment.

    Have you paste this one?

    /*
    You can add your own CSS here.
    
    .blog-item:after{display:none;}
    
    Click the help icon above to learn more.
    */

    The code should not be commented.
    For example:

    /*
    You can add your own CSS here.
    Click the help icon above to learn more. 
    
    The /* */ are comments.
    */
    .blog-item:after{display:none;}
    

    Could you please screenshot the customizer code?

    Thread Starter bonnieg77

    (@bonnieg77)

    My bad, I had the code within the comment, sorry! Thank you for the help ??

    Theme Author Archimidis Mertzanos

    (@archimidism)

    Oh no worries!
    Thanks for your feedback!
    ArchimidisM

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Disable the gray line at the bottom of each page’ is closed to new replies.