ausdigitalmedia Posted October 17, 2013 Share Posted October 17, 2013 Ok so I am trying to get my head around the process for customizing a wordpress php site. I've been doing this for a while and generally just use firebug on Mozilla to find the css code a tweak it. But now I need to go to the next step. Lets take this page as an example. http://www.thewattletree.com/contact/ I want to change the css code for the text boxes from this input, textarea { padding: 5px; border-color: #CCCCCC #EFEFEF #EFEFEF #CCCCCC; border-width:1px; border-style:solid; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius:3px; color: #777;background:url("/inputbg.jpg") ; font: 300 0.9em/0.9em 'Cardo',arial,sans-serif; } to this .input, textarea2 { padding: 5px; border-color: #CCCCCC #EFEFEF #EFEFEF #CCCCCC; border-width:1px; border-style:solid; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius:3px; color: #777;background-color: #DDDDDD; font: 300 1em/1em 'Cardo',arial,sans-serif;} But I only want to do it for this page and not the rest of the site. So what is the process that I should use for finding the code and then changing the style? Thank you. Quote Link to comment Share on other sites More sharing options...
cyberRobot Posted October 17, 2013 Share Posted October 17, 2013 Have you looked into creating a separate page template? http://codex.wordpress.org/Page_Templates Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.