Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1275489

    I have a sitemap in my website’s footer: https://affiliatemanager.expert/

    The top link in the [footer] sitemap is to this page: “A complete guide to choosing an Affiliate Management Agency”.

    What I want to do is edit the text from “A complete guide to choosing an Affiliate Management Agency” to “Start Here” without editing anything on the page itself.

    How can I do this?

    #1275522

    Hi, a bit hacky, but you can try to play around this:

    li.page_item.page-item-1249 a {
        margin-left: -1000px;
    }
    
    li.page_item.page-item-1249 a:after {
        content: "Start here";
        position: absolute;
        left: 0px;
        top: 37px;
    }
    #1275724

    That worked! Thanks, cherrmann! (I really need to learn CSS).

    #1275731

    Hi jamesnardell,

    Glad you got it working for you! :)

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1276012

    I used the code below.

    li.page_item.page-item-1249 a {
    margin-left: -1000px;
    }

    li.page_item.page-item-1249 a:after {
    content: “Start here”;
    position: absolute;
    left: 0px;
    }

    Something very odd that I don’t understand….

    1. Click on ‘Start Here’ from the footer link.

    2. When you’re on this page: https://affiliatemanager.expert/choosing-an-affiliate-management-agency/ the top Navigation menu gets messed up.

    Any ideas on a fix?

    #1276139

    Hi jamesnardell,

    Can you disable caching and minification for now?

    Best regards,
    Victoria

    #1276204

    I’d really prefer not to, Victoria. Is there any other way to find a fix to this issue?

    #1276324

    OK. I have now disabled caching and minification, Victoria.

    Do let me know what to do next.

    #1276397

    Hi jamesnardell,

    Actually, it’s this css that you added breaks it:
    Image 2021-01-29 at 20.12.14.png

    Please try using it like this:

    
    #footer #pages-2 li.page_item.page-item-1249 a {
        margin-left: -1000px;
    }
    #footer #pages-2 li.page_item.page-item-1249 a:after {
        content: "Start here";
        position: absolute;
        left: 0px;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1276464

    That worked! You are amazing, Victoria! Thanks for all your help.

    Take care.

    James

    #1276647

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Sitemap [Footer] – Small Edit’ is closed to new replies.