Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

In this Discussion

[Documentation] How to move new comment box position?

Hi,

Now my new comment box like this :

Anyone can help me how to move the new comment box to right side?

Thank you.

Best Answer

  • 422422 Developer MVP
    Answer ✓

    in your custom css add this:

    ul.DataList div.Meta strong {
        box-shadow: 0 0 2px #777777;
        left: 720px;
        position: absolute;
        top: 24px;
        white-space: nowrap;
    }
    

    left moves the position to the right ( weird i know )

    So if you set left at 650px it moves it to the left, and 720 moves it to the right at the moment ( you have minify ) and its set at 668px

    You may have to clear cache and or add important to the attribute like:

    left: 720px !important;

    Ste

    422 Real Estate Australia , now open Check it out

    UnderDogalanemkay

Answers

Sign In or Register to comment.