thanp73 1 Report post Posted November 1, 2011 Hi all, I have a strange problem with platformpro theme. I used custom css field to customize most things on my website and everything was working fine until now. I made a new form, inserted css in the custom css field to style it, but apparently only style for my submit button doesn't work, it gets overridden with code from "style.css", i checked my dynamic.css file, and all code is there but somehow it gets overridden. dynamic.css: style.css: Share this post Link to post Share on other sites
kastelic 6 Report post Posted November 1, 2011 Try putting !important after any rule that is being overridden, and it will in turn override any rule that comes before or after it. For example: [code] .ft_button { margin-top:10px !important; } [/code] Share this post Link to post Share on other sites
thanp73 1 Report post Posted November 2, 2011 thanks! problem solved Share this post Link to post Share on other sites