• Resolved aurora.patera

    (@aurorapatera)


    Hey friend!
    Awesome plugin. Thanks for developing this! Could you tell me how to style the loader texts to show them (they are in the same colour of my background at the moment) and how to insert a success message after it uploads the file?

    Also, we’re having an issue with duplicate posts (which is no big deal but I’d like to solve it nevertheless). Could you help?

    Have a good day!

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

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

    (@odude)

    Yes, there is no option in setting to change the colors of your choice.
    You need to have a knowledge of CSS

    The file need to be edited is
    ……\wp-content\plugins\wp-upg\css\style.css

    You need to change the line shown below for progress bar
    ====================================

    /* Progress Bar */
    .upg_progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    padding: 3px;
    border-radius: 3px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .upg_progress-bar-load {
    display: block;
    height: 22px;
    background-color: #659cef;
    border-radius: 3px;
    transition: width 500ms ease-in-out;
    }
    .upg_progress-bar-process {
    display: block;
    height: 22px;
    background-color: #4caf50;
    border-radius: 3px;
    transition: width 500ms ease-in-out;
    }

    Thread Starter aurora.patera

    (@aurorapatera)

    Thanks! And for the texts? Because those are the ones that are invisible due to being the same colour of the BG.

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