• Resolved adminseekout

    (@adminseekout)


    hi guys,

    I have got some question to ask.

    1) how do i move both my title, the pagination as well as the ” submit button” to the middle? take a look

    this is my current css for site review

    .glsr-field {
        text-align: center;
    }
    
    .glsr-review {
        display: flex;
        flex-grow: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .glsr-review .glsr-review-avatar {
        margin-left: 0;
        margin-right: 0;
    }
    • This topic was modified 6 years, 1 month ago by adminseekout.
    • This topic was modified 6 years, 1 month ago by adminseekout.
Viewing 15 replies - 1 through 15 (of 15 total)
  • Thread Starter adminseekout

    (@adminseekout)

    Hi i am sorry have got another issue with recaptcha.

    i have inserted both the site key and secret key into the setting and in my site it state that it s protected by recaptcha. however, i can’t seems to submit my form as my verification always fail. do you have any solution to this?
    kindly check this out

    Plugin Author Gemini Labs

    (@geminilabs)

    Can you confirm that:

    1. The reCAPTCHA keys have been generated correctly for your domain
    2. You have generated key for the Invisible reCAPTCHA (not v2)
    3. Are you using any other plugins that also use reCAPTCHA?

    You may also try out the unreleased v3.0 beta of Site Reviews https://github.com/geminilabs/site-reviews-v3/archive/v3.0.0-beta-4.zip which features a more robust recaptcha integration and should log more specific errors to the plugin console on reCAPTCHA failure.

    Plugin Author Gemini Labs

    (@geminilabs)

    The v3.0 beta also gives you style options for better integration with your site. Along with any custom CSS you are adding, it may also fix your pagination to match your existing pagination styles on your website without having to do anything.

    Thread Starter adminseekout

    (@adminseekout)

    recaptcha

    does that mean that only 1 recaptcha is attach to only 1 domain site? because i have got another recaptcha running at v2. and i use the same domain to create another invisible recaptcha for site reviews.

    styling

    i am currently using v3.0beta. but unfortunately i think i would still need to add some css code into it to make it presentable and move those titles to the middle. do you happen to know the code snippets for this?

    Plugin Author Gemini Labs

    (@geminilabs)

    1. reCAPTCHA v2 keys will not work with the Invisible reCAPTCHA.
    2. Unless I know your website, I cannot help with this.

    Please download and send me the System Info report and the Console Log for Site Reviews. You will find these under the “Site Reviews > Tools” menu.

    Send them to: site-reviews[at]geminilabs[dot]io

    Thread Starter adminseekout

    (@adminseekout)

    Hi,
    sorry for the late reply, have sent the document to you. help me have a look! thanks alot!!

    @geminilabs is there any shortcut that will give me:

    <div class=”glsr-review”></div>
    <div class=”glsr-review”></div>

    for each review without below wrapping

    <div class=”glsr-shortcode shortcode-site-reviews”>
    <div class=”glsr-reviews-wrap”>
    <div class=”glsr-reviews”>

    </div>
    </div>
    </div>

    Plugin Author Gemini Labs

    (@geminilabs)

    @timovega please open a new support topic for this question.\
    Thanks

    Plugin Author Gemini Labs

    (@geminilabs)

    @adminseekout Try this:

    .shortcode-site-reviews-form {
        max-width: 600px;
        text-align: center;
        margin: 0 auto;
    }

    I would also suggest since you are using the “Contact Form 7” plugin to try changing the Site Reviews plugin style to “Plugin: Contact Form 7 (v5)” and see if that improves the styling of the submission form.

    Thread Starter adminseekout

    (@adminseekout)

    hi!

    i tried your code above and yes it work like a charm. but is there any css snippets i could use to move the pagination style and shift it to the middle?

    https://photos.app.goo.gl/pTjNwqim4yJQ7pfw9

    Plugin Author Gemini Labs

    (@geminilabs)

    .glsr-navigation {
        text-align: center;
    }
    Thread Starter adminseekout

    (@adminseekout)

    Thank you!!! one last thing before i end this off. sorry but i can’t figure out how to play arond the css. i am trying to achieve a button for the pagination with background and hover background. is there anyway i could achieve this?

    here is some example

    https://photos.app.goo.gl/34qwZq5FSKQmD1ap9

    and ( when hover)

    https://photos.app.goo.gl/iUbBcr1feuJLDkZ68

    Plugin Author Gemini Labs

    (@geminilabs)

    .page-numbers {
        text-decoration: none;
        color: #fff;    
        background-color: #000;
        border-radius: 2px;
        transition: color 0.2s, background-color 0.3s;
        padding: 10px;
    }
    .page-numbers.current {
        background-color: #48484F;
        cursor: default;
    }
    a.page-numbers:hover {
        text-decoration: none;
        color: #0a0a0a;
        background-color: #b79567;
    }
    • This reply was modified 6 years, 1 month ago by Gemini Labs.
    • This reply was modified 6 years, 1 month ago by Gemini Labs.
    • This reply was modified 6 years, 1 month ago by Gemini Labs.
    Thread Starter adminseekout

    (@adminseekout)

    you like a god i can always count on! thanks mate! works like a charm!

    Plugin Author Gemini Labs

    (@geminilabs)

    No problem! Please leave a review for the plugin if you have some time. Thanks.

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘formatting and positioning’ is closed to new replies.