Hi, a bit of a noob question, I'm just getting into WP and CSS, I use FireBug to study the CSS and can make live edits which display correctly, however when I switch to the WP bult in editor the CSS has completely different formatting.
EG: FireBug shows me this, nice neat and easy to understand and edit:
#menu_container input[type="text"] {
background-color: #000000;
border: medium none;
border-radius: 5px 5px 5px 5px;
color: #FFFFFF;
float: right;
height: 25px;
padding: 0 5px;
width: 172px;
but WP shows me this...currently gobbledygook to me :) :
#menu_container input[type=text] { width: 172px; height: 25px; background-color: #000; color: #fff; -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px; float: right; border: none; padding: 0 5px; }
Is there any plugin or other that will allow me to see what i *think* is referred to as HTML CSS ?
Thanks in advance and apologies for the noobness, but we all had to start somewhere ...right ;)