mkr365 Posted May 14, 2008 Share Posted May 14, 2008 I'm finding some troubles with styling my ckeckboxes in firefox. At the moment i haven't css for my checkboxes so they are showing up from left to right, but i want my checkboxes from top to bottom. Does someone know there is a standard for styling a checkbox with css? Thanks in advance! Quote Link to comment https://forums.phpfreaks.com/topic/105617-solved-checkbox-css/ Share on other sites More sharing options...
wildteen88 Posted May 14, 2008 Share Posted May 14, 2008 What do you mean by left to right? Do you mean they go across the page? Rather than go down the page? If you want them to go down the page do: <p><input type="checkbox" name="delete" value="yes"> YES<br /> <input type="checkbox" name="delete" value="No">No</p> Quote Link to comment https://forums.phpfreaks.com/topic/105617-solved-checkbox-css/#findComment-541115 Share on other sites More sharing options...
mkr365 Posted May 14, 2008 Author Share Posted May 14, 2008 Here is my code: if ($categorien == $query['RubriekID']) echo '<input type="checkbox" name="categorien[]" value="'.$query['RubriekID'].'">'.$query['Rubrieknaam'].''; else echo '<input type="checkbox" name="categorien[]" value="'.$query['RubriekID'].'">'.$query['Rubrieknaam'].''; They go indeed across the page instead of down the page. Quote Link to comment https://forums.phpfreaks.com/topic/105617-solved-checkbox-css/#findComment-541124 Share on other sites More sharing options...
wildteen88 Posted May 14, 2008 Share Posted May 14, 2008 Just add <br /> between the empty quotes at the end of the line: if ($categorien == $query['RubriekID']) echo '<input type="checkbox" name="categorien[]" value="'.$query['RubriekID'].'">'.$query['Rubrieknaam'].'<br />'; else echo '<input type="checkbox" name="categorien[]" value="'.$query['RubriekID'].'">'.$query['Rubrieknaam'].'<br />'; Your checkboxes will now display down the page. Quote Link to comment https://forums.phpfreaks.com/topic/105617-solved-checkbox-css/#findComment-541136 Share on other sites More sharing options...
mkr365 Posted May 14, 2008 Author Share Posted May 14, 2008 Wow, some things are so simple. Very thanks! Quote Link to comment https://forums.phpfreaks.com/topic/105617-solved-checkbox-css/#findComment-541172 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.