• I want to change “Next” to a different word in all posts, but can’t find where to do it

    The page I need help with: [log in to see the link]

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hello,
    ?
    ?Please add this extra CSS code in Customizer -> General Settings -> Additional CSS :

    .nav-next span.meta-nav {
    visibility: hidden;
    position: relative;

    }

    .nav-next span.meta-nav::after {
    visibility: visible;
    position: absolute;

    content: “yourText:”!important;
    }

    @media screen and (min-width: 1024px){

    .nav-next span.meta-nav::after {
    visibility: visible;
    position: absolute;
    margin-left:-70px!important;
    }
    }

    i.font-icon-post.fa.fa-angle-double-left {
    margin-right:20px!important;
    }
    }

    You need to replace the value of content to your desired word.

    Thread Starter medzie

    (@medzie)

    @cristianbarbu thanks, it works, can u tell me how to do the same with the “previous”?

    Hello,

    Please also add this CSS code:

    .nav-previous span.meta-nav {
    visibility: hidden;
    position: relative;

    }

    .nav-previous span.meta-nav::after {
    visibility: visible;
    position: absolute;

    content: “yourPreviousText:”!important;
    }

    @media screen and (min-width: 1024px){

    .nav-previous span.meta-nav::after {
    visibility: visible;
    position: absolute;
    margin-left:-80px!important;

    }
    }

    Thread Starter medzie

    (@medzie)

    @cristianbarbu unfortunately the old text overlaps the new text, you can see on any post

    • This reply was modified 3 years, 4 months ago by medzie.

    Hello,

    Can you specify the exact word you want added?

    Thread Starter medzie

    (@medzie)

    @cristianbarbu Now I see after changing the window width, the text is not responsive and overlaps ??

    Thread Starter medzie

    (@medzie)

    @cristianbarbu next -> Nast?pny
    previous -> Poprzedni

    Hello,

    Please replace the previous CSS code with this one:

    .nav-next span.meta-nav {
    visibility: hidden;
    position: relative;

    }

    .nav-next span.meta-nav::after {
    visibility: visible;
    position: absolute;

    content: “Nast?pny:”!important;
    }

    @media screen and (min-width: 1024px){

    .nav-next span.meta-nav::after {
    visibility: visible;
    position: absolute;
    margin-left:-70px!important;
    }
    }

    .nav-previous span.meta-nav {
    visibility: hidden;
    position: relative;

    }

    .nav-previous span.meta-nav::after {
    visibility: visible;
    position: absolute;

    content: “Poprzedni:”!important;
    }

    @media screen and (min-width: 1024px){

    .nav-previous span.meta-nav::after {
    visibility: visible;
    position: absolute;
    margin-left:-80px!important;

    }

    i.font-icon-post.fa.fa-angle-double-left {
    margin-right:20px!important;
    }
    }

    Thread Starter medzie

    (@medzie)

    on the phone and tablet the text overlaps the name of the post ??

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Mesmerize change word in post’ is closed to new replies.