I am using a template. and when i add a checkbox and a label. i am not able to position them in the same line.
i tried display:inline; but doesnt seem to work.
http://godine.in/alpha/admin/restaurants/add
![]()
| SitePoint Sponsor |

I am using a template. and when i add a checkbox and a label. i am not able to position them in the same line.
i tried display:inline; but doesnt seem to work.
http://godine.in/alpha/admin/restaurants/add
![]()

Hi, it should unless you have something interferring with it. Could you telll me where this is happening? Checked Opera, IE7/8, and FF3.
IE6 isn't responding will because you do attribute selectors like type=["checkbox"] and IE6 doens't understand that.
Twitter-@Ryan_Reese09
http://www.ryanreese.us -Always looking for web design/development work


Mkay, so basically you can't change something that's causing mishaps in IE6..?
Twitter-@Ryan_Reese09
http://www.ryanreese.us -Always looking for web design/development work

i am trying.can u send a screenshot if u can from ie6 ?

My IE6 looks like the label on one line, and the text on the next-too lazy to SS.
Twitter-@Ryan_Reese09
http://www.ryanreese.us -Always looking for web design/development work

Thanx.
Is there anyway to remove the hidden check box properties which is showing up. the template i use has a border for input field. and the hidden element which the cakephp produces is making it visible as shown below. i tried using
input[type="hidden"] { display:none;} didnt work
http://godine.in/alpha/admin/restaurants/add
![]()

Hi, it's possible it's being overridden, but try giving the parent of that a display:none;
Some form elements you can't screw with.
Twitter-@Ryan_Reese09
http://www.ryanreese.us -Always looking for web design/development work

i used css attribute selectors and it worked
#page-content input[type="hidden"] {
border: 0px solid #cccccc;
}
Bookmarks