• Resolved TheHigherEdCIO

    (@thehigheredcio)


    WP 4.9.1
    Theme Kleo 4.3
    MR Pro 5.3.1

    The Rating Form and Rating Comment alignment were originally aligned wide left and I wanted it to float left aligned with the content. AS an interim step I applied the fix from support post:

    <a href="https://wordpress.org/support/topic/how-to-center-the-rating-box-and-also-to-show-in-on-post-page-only/">https://wordpress.org/support/topic/how-to-center-the-rating-box-and-also-to-show-in-on-post-page-only/ </a>
    
    .rating-form form {
        display: block !important;
    }
    .rating-form, .rating-form p {
        text-align: center !important;
    }

    [Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]

    That worked to center align the rating form but the comment form is still aligned wide left. Looking to amend the CSS solution to include the comment form in the alignment.

    Ideally I would like to change this from center alignment to float (is that right terminology) align left with the post content.

    • This topic was modified 6 years, 3 months ago by James Huff.
    • This topic was modified 6 years, 3 months ago by bdbrown.

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

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

    (@dpowney)

    Try adding CSS:

    textarea#mrp-comment-0 {
        text-align: center;
    }

    Daniel

    Thread Starter TheHigherEdCIO

    (@thehigheredcio)

    Center alignment is working but the comment box is still stretching to full width instead of inheriting the post margins.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Control Rating Form and Comment Box Alignment’ is closed to new replies.