JanChristian
Member
Posted 2 years ago #
In Safari they're centered but in FF and Opera the legends (your info, your message, confirmation) are left aligned.
Here's the CSS for that part:
body div.formcontainer form.contact-form fieldset legend {
text-align: center;
text-transform: uppercase;
color:#006699;
}
I even tried adding -moz- before 'center' but that didn't do anything.
http://ambrotosphotography.com/about
benpickle
Member
Posted 2 years ago #
This was driving me crazy, but I found a solution, if you're still interested (9 months later). Apparently, browsers treat legends as "non-presentational" elements, so they don't respond to the CSS centering. If you go to the plugin editor though, and change each <legend> tag to <legend align="center">, it will work.
Good luck....