• Resolved julian74

    (@julian74)


    Hi i want to add text in bottom of image loader, is that possible?

    • This topic was modified 8 months, 3 weeks ago by julian74.

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

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

    (@codepeople)

    Hello @julian74

    Yes, that’s possible. You can do it with CSS. For example, enter the following piece of code into the “Include an ad, or your own block of code” attribute in the plugin settings page:


    <style>
    .lp-logo-wrapper::after{
    content:"My Text Here";
    display:inline-block;
    width:100%;
    min-width:300px;
    margin-left:50%;
    transform:translate(-50%);
    text-align:center;
    font-size:24px;
    font-family:sans-serif;
    }
    </style>

    Best regards.

    Thread Starter julian74

    (@julian74)

    thank you, it works!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add text’ is closed to new replies.