Posts: 5
Threads: 2
Joined: Mar 2011
I have my comment form centered, but the captcha image is still on the left side. how do I get it to center like the rest of the form? Thanks
Posts: 535
Threads: 31
Joined: Jul 2010
There are two ways to do this.
- Edit the file "comments/includes/template/form.php" on line 646 (search for "siimage" if I got the wrong line), and remove the inline style "float: left;"
- Add the following to the stylesheet:
#siimage {
/*style that will have to override the inline style here. Try adding float: none !important;*/
}
I don't know why it isn't in the CSS file already, but I'm sure Steven will fix that in the next release when he sees this
I'm giving you three guesses...
Posts: 5
Threads: 2
Joined: Mar 2011
(30-Mar-2011, 10:24 PM)Static Wrote: There are two ways to do this.
- Edit the file "comments/includes/template/form.php" on line 646 (search for "siimage" if I got the wrong line), and remove the inline style "float: left;"
- Add the following to the stylesheet:
#siimage {
/*style that will have to override the inline style here. Try adding float: none !important;*/
}
I don't know why it isn't in the CSS file already, but I'm sure Steven will fix that in the next release when he sees this 
ta da! It works! Thank you
Posts: 2,904
Threads: 59
Joined: Jun 2010
The issue with removing the 'float:left;' is that the audio and refresh buttons fall out of place. That must be why I left it as an inline style.
Have
you completed
the interview?
Posts: 5
Threads: 2
Joined: Mar 2011
(31-Mar-2011, 04:58 PM)Steven Wrote: The issue with removing the 'float:left;' is that the audio and refresh buttons fall out of place. That must be why I left it as an inline style.
yes,i seen that it did that. i just thought i would live with it that way.