Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
What Custom CSS code can be written to right justify the contact form fields?
Quatrain ƒotographic, LLC
…seeing, thinking, teaching. Visual Poetry.
https://quatrainfotographic.com
Offline
try this:
form.backlight-form input {
text-align: right;
}
this aligns the text entered in the form fields.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Thanks, Rod...
This solution works great for the text inside of each respective field, but I'd actually like to take all the form fields and move them all the way across the page [defaults to left margin] so that they line up on the right margin of the page.
Sorry that I didn't clarify that earlier.
Don
Quatrain ƒotographic, LLC
…seeing, thinking, teaching. Visual Poetry.
https://quatrainfotographic.com
Offline
I’ll take a look tomorrow when I can get to my pc and use a browser inspector
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Maybe this:
form.backlight-form input {
margin-left: auto;
margin-right: 0;
}
Else you could float:right, but that would be sort of strong-arming it, and I'd prefer investigating other avenues before resorting to that.
Offline
to get the labels and the message text area to align right, I added to what Matt has:
form.backlight-form input, form.backlight-form textarea {
margin-left: auto;
margin-right: 0;
}
form.backlight-form p {
text-align:right;
}
If you also need to control the width of the text area:
form textarea {
max-width: 500px;
}
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Thanks Matt & Rod!
Got it to work with the following as I need it to function. I'll look at the other options provided too.
form.backlight-form {
margin-left: auto;
margin-right: 20px;
float: right;
}
https://quatrainfotographic.com/contact.php
/* Let's Disco! */
[LOL]
Quatrain ƒotographic, LLC
…seeing, thinking, teaching. Visual Poetry.
https://quatrainfotographic.com
Offline
Pages: 1