Anzeo Posted August 17, 2007 Share Posted August 17, 2007 Hi all, For some strange reason my php error's aren't showing anymore. I've hadn't had this problem before, but with this site I'm using CSS for the first time and I'm not sure wether that could cause the problem. Here is my style sheet: /* Karoo Stylesheet */ /* Volgorde: boven - rechts - onder - links */ /* Afbeeldingen */ img.footer {position:relative; top:45px} /* Body */ body {text-align:center; margin-top:1px; font-family:Arial, Helvetica, sans-serif; font-size:smaller; background-color:#CCCCCC;cursor:default} /* Div */ div#sitecontainer {margin: 0 auto 0 auto; text-align:left; width:1024px; background-color:#FFFFFF} div#headerbox {width:100%; height:96px; margin: 0 0 0 0; background-color:#CCCCCC} div#menubox {width:170px; margin:25px 0 45px 21px; float:left} div#contentcontainer {width:600px; margin:32px 0 45px 21px; float:left} div#sidebarbox {width:170px; margin:25px 0 45px 21px; float:left; padding: 0 0 0 0} div#footerbox {width:100%; height:48px; clear:left; background-color:#CCCCCC; text-align:center} div.contentbox {width:100%; margin: 32px 0 0 0; float:left} div.formcontainer {width: 600px; margin: 25px 0 25px 0} div.buttonbox {width:100%;clear:left;padding:0 0 0 180px;margin:0 0 25px 0} /* note: Voor post en form gelden dezelfde waarden */ div.postheader {width:100%; height:32px; background: url(../images/post_top.png) no-repeat 0 0; padding: 1px 1px 1px 1px; margin: 50px 0 0 0} div.postmid {width:100%; height:32px; background: url(../images/post_mid.png) no-repeat 0 0} div.postbtm {width:100%; height:32px; background: #FFFFFF url(../images/post_btm.png);clear:left} div.postbody {width:100%; height:100%; background:#0e5167; margin: -2px 0 0 0; padding: 25px 0 0 0} div.centreer {width:600px; text-align:center} div.notificationbox {width:450px;border: solid medium;margin: 25px 75px 25px 75px;text-align:center; font-size:16px;-moz-border-radius: 10px} div.notification {width:300px;margin: 21px auto 15px auto} div.error {color:#FE5B25;background: url(../images/error.png) #FF9955 no-repeat 21px 50%;border-color:#FE5B25} div.check {color:#0E5167;background: url(../images/check.png) #0088AA no-repeat 21px 50%;border-color:#0E5167} /* Formopmaak */ label {width:100px; margin:0 15px 25px 5px;float:left; clear:left} input[type="text"],input[type="password"] {width:150px;border-style:solid; border-color:#CCC; float:left} input[type="text"]:focus,input[type="text"]:hover,input[type="password"]:focus,input[type="password"]:hover {border-color:#fe5b25} input[type="hidden"].formend {clear:both;display:block} textarea {width:300px;height:150px;border-style:solid;border-color:#CCC; float:left;clear:both;margin:0px 0px 25px 50px;display:block} textarea:focus,textarea:hover {border-color:#fe5b25} input.button {float:left;margin:0 0 25px 20px} /* Kleuren */ .blauw {color:#005577} .groen {color:#009933} .oranje {color:#fe5b25} .wit {color:#FFF} /* Links */ a {text-decoration:none; color:#fe5b25} a.external:before {content:url(../images/exlink.png)} a.menu {position:relative; left:5px; color:#FFFFFF} a.menu:link {text-decoration:none} a.menu:visited {text-decoration:none} a.menu:hover {text-decoration:underline} /* List */ ul {list-style-type:square; color:#fe5b25; margin: 20px auto 20px auto} li {margin: 5px auto 5px auto} /* Span */ span.melding {color:#FF0000;font-style:oblique} span.noot {color:#CCC;font-size:11px;font-style:oblique} span.notification {margin:21px auto 21px auto} span.small {font-size: 18px} span.kalender {display:block;font-weight:bold; font-variant:small-caps;margin:15px auto 15px auto;font-size:16px} span.kalenderevent {display:block; margin: 5px auto 5px 5px; max-width:150px;max-height:16px; overflow:hidden} span.li {color:#000} /* Tabelopmaak */ table.opmaak {border: #0e5167 solid 2px; margin: 15px auto 15px 50px;border-spacing:0px} td.opmaak {padding:2px 8px 2px 8px} td.lb {border-left: #ccc groove 1px } tr.licht {background-color:#FFF; color:#000} tr.donker {background-color:#0e5167; color:#FFF} /* Tekstopmaak */ h1 {color:#0e5167; font-weight:bold} h1.menu {font-size:20px; line-height:0px; color:#FFFFFF; position:relative; top:5px; left:5px} h2 {color:#FFF; font-weight:bold; text-align:center; line-height:0px} h3 {color:#0e5167; font-weight:lighter; font-style:italic; line-height:0px; margin: 30px 0 10px 0} And this is one of the pages where I get an error, but it's not showing me: This will only show properly in FF! Does anyone remarks something akward in my css code? Or should I look somewhere else? Like a custom php error handler or such? Thanks in advance, Anzeo Quote Link to comment Share on other sites More sharing options...
tarun Posted August 17, 2007 Share Posted August 17, 2007 I Dont Think Its Anything To Do With Your CSS But You Could Use To Force PHP To Display All Errors <?php error_reporting(E_ALL); ini_set('display_errors', '1'); ?> ThanX, Tarun Quote Link to comment Share on other sites More sharing options...
Anzeo Posted August 17, 2007 Author Share Posted August 17, 2007 Thanks for the help. I'll check it out and let you know if it's working ^^ EDIT: Thanks, it's showing again ^^! 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.