I am using Joomla! 3.9.13 and Phoca guestbook 3.0.11. In my guestbook, I want to have all 3 things (look at the attached picture) in one row.. How do I do that? Please help!
![Image](http://shrani.si/f/1W/cx/4Bn2S6G7/gb1.jpg)
Code: Select all
.input-append {
display:inline-flex;
}
Code: Select all
p.pgb-captcha-in {
display:inline-block;
}
And now it's like this:p.pgb-captcha-in {
display:inline-block;
}
Code: Select all
p.pgb-captcha-in {
display: flex;
float:left;
}
label#jform_guestbook_captcha-lbl {
float:left;
}
/*Word AntiSpam Verification-centered*/
label#jform_guestbook_captcha-lbl {
padding-top:5px;
margin-right:3px;
}
input#jform_guestbook_captcha {
margin-top:5px;
margin-left:3px;
}