Jump to content
Sign in to follow this  
johnwake

Formatting of forms screwed up with Platform Pro upgrade

Recommended Posts

johnwake

This was my money page, http://www.arizonarealestatenotebook.com/im-ready-to-buy. Now it looks like 1995 internet with center justification. The form is coded to be left justified. The form comes from Formstack.com. I don't have access to the code. (Form input goes to my Saleforce account.) Notice also that the email sign-up submit button (powered by Feedburner) is no longer center justified when it was before. Can you throw me some CSS to make tables and forms render as coded?

Share this post


Link to post
Share on other sites
Andrew

Sure, Are you using Firebug? A `text-align: left` should be all you need.

Share this post


Link to post
Share on other sites
catrina

Add this:

div.fsSectionText, #fsCell5417199, #fsCell5417200, #fsCell5417204, #fsCell5417205, #fsRow534281-6, #fsRow534281-7, #fsRow534281-8, #fsCell5417213, #fsRow534281-11, #fsRow534281-12, #fsRow534281-13, #fsRow534281-14, #fsRow534281-16, #fsRow534281-17, #fsRow534281-19, #fsRow534281-22, #fsRow534281-23, #fsRow534281-24, #fsRow534281-25, #fsRow534281-26, #fsRow534281-27, #fsRow534281-28, #fsRow534281-29, #fsRow534281-30 {text-align: justify}

In the future, you can use Firebug for Firefox to identify and create the custom CSS you need.


Please read the docs before posting. Please do not private message me unless I ask you to.

Designer | Catrina Dulay

Founder | Catrina and Mouse

Share this post


Link to post
Share on other sites
johnwake

Isn't there some CSS I can apply to table or tbody to resolve this problem site wide? To basically neutralize whatever was added to the upgrade that caused the problem?

Share this post


Link to post
Share on other sites
Andrew

Sure, the rules you need: .hentry table th, #comments table th { text-align: left;} .hentry table td, #comments table td { text-align: left;}

Share this post


Link to post
Share on other sites
johnwake

That could work but in the original table, not all td were aligned left. Anyway, I ended up reverted to the previous version of Platform Pro. On the upside, I learned to love the Google fonts in the new version so just added them to the old version which was already set up to use them. I guess you young whippersnappers don't use tables and forms but my data blogging is dependent on them.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×