• Resolved cloudviewventures

    (@cloudviewventures)


    Hey there,

    I looked around the support forum and didn’t find any reference to this, so I’m starting a new thread in case it’s a future issue for someone else.

    I’m trying to add the [ratemypost-result] shortcode to my posts, and while it works whether I add it manually or toggle the option to have it added at the top automatically, it lacks some basic customization options such as being able to center it, or to add some text before or after it in a way that it would be displayed inline. No matter how a try, it creates a line break, and it’s always left aligned.

    Are the options to customize that a bit more? Maybe to add a bit of text or align it? And to have it displayed inline where it’s inserted rather than forcing a paragraph?

    Thank you, and great plugin by the way!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Blaz K.

    (@blazk)

    Hi @cloudviewventures,

    at the moment the results widget does not offer much customization but it’s in my plan to make it more customizable in the future versions. If you want to add text before or after the results widget in one line you need to display .rmp-results div inline block. You can also align results widget center or right with custom CSS. See the snippet below:

    
    .rmp-results {
        display: inline-block;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    

    Hope this was helpful.

    Regards,
    Blaz

    Thread Starter cloudviewventures

    (@cloudviewventures)

    Thanks Blaz! I wasn’t able to get it inline, but was able to center it. For now that’ll work. 🙂

    Thanks for working on this in future versions, and for the quick response. This plugin is super clean and it’s been an awesome solution to one of my projects.

    Plugin Support Blaz K.

    (@blazk)

    @cloudviewventures I forgot to say that the the element next to the widget should also be displayed inline-block 🙂 so, if you have the widget displayed inline-block and you want a paragraph inline next to it, the paragraph should look something like this:

    
    <p style="display: inline-block;">Hello world</p>
    

    Blaz

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

The topic ‘Using the [ratemypost-result] shortcode’ is closed to new replies.