MyBB Community Forums

Full Version: Aligning the 'Quick Edit' Post Options
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
[Image: 2e5ad3a36c.png]

How would I align the "Edit Reason" along with the two buttons below it over to the right? (Using MyBB 1.8)
Bump

...no one knows? D:
css

.post_body form button {
float:right;
}
.post_body form .textbox {
float: right;
}


Might affect every button on a form in the post_body - but how many forms in the post_body are there?
I was trying it like this
.post_content label {position:relative; top:30px; left:220px;}
.post_content input[id^="quickedit"] {position:relative; top:30px; left:220px;}
Maybe this way.

Add to theme showthread.css:
.post_body button[type=submit], 
.post_body button[type=cancel] {
    float: right;
}
~~~~~~~~~~~~~~~~~~~~~~
EDIT: OK..this moves only the buttons to the right..
My attempt... Toungue


.post_body form label {
    position:relative; 
    top: 10px; 
    left: 40px;
    float: right;
    margin-right: 330px;
}

.post_body form input[id^="quickedit"] {
    position:relative;  
    left: 400px;
    float: right;
} 

.post_body form button {
    position: relative;
    top: 35px;
    right: -75%;
}
(2015-01-11, 02:58 AM)SvePu Wrote: [ -> ]Maybe this way.

Add to theme showthread.css:

.post_body button[type=submit], 
.post_body button[type=cancel] {
    float: right;
}
~~~~~~~~~~~~~~~~~~~~~~
EDIT: OK..this moves only the buttons to the right..

Well, I tried this


.post_body button[type=submit],
.post_body button[type=cancel],
.post_body label[for=editreason],
.post_body input[class=textbox]{
    float: right;
}

But, it didn't work out too well Dx
[Image: 0437478ffb.png]
^ well, you can try other suggestions!
(2015-01-12, 12:59 AM).m. Wrote: [ -> ]^ well, you can try other suggestions!

The rest ended up in the same/similar ways.
^ have you hard refreshed your browser (eg. press CTRL + F5) on a thread page after editing the style sheet ? (see image)
Pages: 1 2