• Resolved aks2026

    (@aks2026)


    I have a PRO subscription and am trying to use CSS to customise the Password Protected Form page. I have managed to make most of the changes I wanted, but cannot find a way to change the colour of the body text. Currently it is set as a medium grey, but I want it to be #333333. Could you please provide the code snippet needed?

    Could you please also provide a code snippet to remove the copyright line under the form? It automatically says ‘© MARSDEN WOO. All rights reserved’ but I want to hide this text line please.

    Thanks!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Noor Alam

    (@nalam-1)

    Hi,

    Please use the following CSS snippets to make the requested changes on the Password Protected Form page.

    /* Start Code Copy */
    
    /* Change body text colour */
    .wpepp-password-top-text p,
    .wpepp-password-top-text .wpepp-top-content,
    .wpepp-password-bottom-text p,
    .wpepp-password-bottom-text .wpepp-bottom-content {
        color: #333333;
    }
    
    /* Hide copyright footer text */
    .wpepp-site-password-footer {
        display: none;
    }
    
    /* End Code Copy */
    

    Please add this code to your Custom CSS section and clear any cache if the changes do not appear immediately.

    Hope this helps!

    Thread Starter aks2026

    (@aks2026)

    It works perfectly, thank you.

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.