• Web Development Questions That Don't Need Their Own Thread v2
    3,079 replies, posted
We're having some troubles with using internet explorer, doctype totally breaks our website in chrome, safari and firefox. Most of our client's customers will use internet explorer 6> so if it breaks both chrome and IE, our client most likely won't be happy. Do you guys have any solutions?
[QUOTE=Ac!dL3ak;30153066][code]Fatal error: Namespace declaration statement has to be the very first statement in the script in code.php on line 1[/code][/QUOTE] i'll give you a hint, it's because php sucks
[QUOTE=tngr;30153827]i'll give you a hint, it's because php sucks[/QUOTE] that narrows it down a lot
[QUOTE=Ac!dL3ak;30153066][php] <?php namespace herp; class derp { public static $foo = "bar"; } [/php][/QUOTE] [editline]31st May 2011[/editline] [QUOTE=tngr;30153827]i'll give you a hint, it's because php sucks[/QUOTE] What did you do this time Tangara?
[QUOTE=StinkyJoe;30154075][editline]31st May 2011[/editline] What did you do this time Tangara?[/QUOTE] i was like in chat: hey guys, paste this into the url bar: javascript:$.post("/chat/", { message: SECURITYTOKEN, token: SECURITYTOKEN }); [editline]31st May 2011[/editline] it's only a three-dayer though
[QUOTE=tngr;30154263]i was like in chat: hey guys, paste this into the url bar: javascript:$.post("/chat/", { message: SECURITYTOKEN, token: SECURITYTOKEN }); [editline]31st May 2011[/editline] it's only a three-dayer though[/QUOTE]so you could get their security token, heh
Once chat is live, I'm going for garry's vb session hash. Disclaimer: I did not say that.
[URL=http://imageshack.us/photo/my-images/801/indexpage.png/][IMG]http://img801.imageshack.us/img801/8003/indexpage.png[/IMG][/URL] Okay so like how do i get rid of the space on top which is circled in red. And how do I add a border or banner/photo in the sides where the green squiglly lines are? Source code is in my comment lower on the page.
[IMG]http://i.imgur.com/bibCc.png[/IMG] how accurate are these stats? this is sorta creepy
[QUOTE=garychencool;30157345][URL=http://imageshack.us/photo/my-images/801/indexpage.png/][IMG]http://img801.imageshack.us/img801/8003/indexpage.png[/IMG][/URL] Okay so like how do i get rid of the space on top which is circled in red. And how do I add a border or banner/photo in the sides where the green squiglly lines are? PM me for the HTML/CSS Code.[/QUOTE] You're better off just posting the code in [noparse][code][/code][/noparse] tags. Moving the menu up will be an issue with the containers padding. The other issue is easily solved by adding a background-image property to the body. Since it looks like you're using Dreamweaver design view, it may be more complicated. [editline]31st May 2011[/editline] -snip- Using jQuery for something easily done in CSS is dumb.
[QUOTE=garychencool;30157345][URL=http://imageshack.us/photo/my-images/801/indexpage.png/][IMG]http://img801.imageshack.us/img801/8003/indexpage.png[/IMG][/URL] Okay so like how do i get rid of the space on top which is circled in red. And how do I add a border or banner/photo in the sides where the green squiglly lines are? PM me for the HTML/CSS Code.[/QUOTE] I don't really see the point of PMing for the code since all websites show the source code no matter how hard you try to not allow anothers to see it.
[QUOTE=zzlawlzz;30159390]I don't really see the point of PMing for the code since all websites show the source code no matter how hard you try to not allow anothers to see it.[/QUOTE] Good point... Here's the code: [code] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ice="http://ns.adobe.com/incontextediting"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <style type="text/css"> <!-- body { font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif; background: #4E5869; margin: 0; padding: 0; color: #000; background-color: #2C95F3; } /* ~~ Element/tag selectors ~~ */ ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */ padding: 0; margin: 0; } h1, h2, h3, h4, h5, h6, p { margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */ padding-right: 15px; padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */ font-size: 15px; } a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */ border: none; } /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */ a:link { color:#000000; text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */ } a:visited { color: #000000; text-decoration: none; } a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */ text-decoration: underline; color: #000000; } /* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */ .container { width: 80%; max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */ min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */ background: #FFF; margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */ } /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */ .header { background: #0066FF; } /* ~~ These are the columns for the layout. ~~ 1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design. 2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin. 3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document. 4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source. */ .sidebar1 { float: left; width: 20%; background: #FFFFFF; padding-bottom: 10px; } .content { padding: 10px 0; width: 80%; float: left; } /* ~~ This grouped selector gives the lists in the .content area space ~~ */ .content ul, .content ol { padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */ font-size: 15px; } /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */ ul.nav { list-style: none; /* this removes the list marker */ border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */ margin-bottom: 15px; /* this creates the space between the navigation on the content below */ } ul.nav li { border-bottom: 1px solid #666; /* this creates the button separation */ } ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */ padding: 5px 5px 5px 15px; display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */ text-decoration: none; background: #09C; color: #000; } ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */ background: #369; color: #D6D6D6; } /* ~~ The footer ~~ */ .footer { padding: 10px 0; background: #2C95F3; position: relative;/* this gives IE6 hasLayout to properly clear */ clear: both; /* this clear property forces the .container to understand where the columns end and contain them */ } /* ~~ miscellaneous float/clear classes ~~ */ .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */ float: right; margin-left: 8px; } .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */ float: left; margin-right: 8px; } .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */ clear:both; height:0; font-size: 1px; line-height: 0px; } .container .header h1 { font-size: 10%; } .container .header h1 { font-size: 10px; } .container .header h1 { font-size: 50px; color: #7CBECD; } --> </style><!--[if lte IE 7]> <style> .content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */ ul.nav a { zoom: 1; } /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */ </style> <![endif]--><script src="includes/ice/ice.js" type="text/javascript"></script></head> <body> <div class="container"> <div class="header"> <h1><!-- end .header --> <a href="index.html">Gary Chen's Business Portfolio</a></h1> </div> <div class="sidebar1"> <ul class="nav"> <li><a href="myReportCards.html">Report Cards</a></li> <li><a href="awardsAndAccomplishments.html">Awards and Accomplishments</a></li> <li><a href="workInBusiness.html">Work in Business</a></li> <li><a href="workInOtherCourses.html">Work in other Courses in School</a></li> <li><a href="siteMap.html">Site Map</a></li> </ul> <p>&nbsp;</p> <!-- Use of this code assumes agreement with the Google Custom Search Terms of Service. --> <!-- The terms of service are available at http://www.google.com/cse/docs/tos.html --> <form name="cse" id="searchbox_demo" action="http://www.google.com/cse"> <input type="hidden" name="cref" value="" /> <input type="hidden" name="ie" value="utf-8" /> <input type="hidden" name="hl" value="" /> <input name="q" type="text" size="20" /> <input type="submit" name="sa" value="Search Google" /> </form> <script type="text/javascript" src="http://www.google.com/cse/tools/onthefly?form=searchbox_demo&lang="></script> <!-- end .sidebar1 --></div> <div class="content" ice:editable="*"> <h1>About this site</h1> <p>This website is my Business Portfolio showcasing my best work, awards and accomplishments in Grade 9. This website includes my report cards, awards, accomplishments, work in my business course and work in other courses in Grade 9.</p> <h2>About Me</h2> <p> My name is Gary Chen I am 14 years old. I was born on July 23rd, 1996 somewhere in Canada. My family is made up of my mom, my dad and younger brother. Our favorite family vacation was when we went to British Columbia. When we were there, we went to several places such as Vancouver&rsquo;s Chinatown and the Columbian Ice Field.</p> <p> I am every comfortable using the computer and I use it every day. I have years of experience with computers. I know how to use, fix, configure and break computers with a high level of knowledge. I use the computer for many tasks such as word processing, website development and design to game design, development and programming. As technology get&rsquo;s more intuitive to use, I&rsquo;m always up-to-date with the current tech and news.</p> <p>Some of my interests are anything tech in various computer-related things such as using the Internet and playing video games. I don&rsquo;t have any favorite kind of music or sport because I kind of hate all of them. I mainly play FPS games such as Counter Strike. I also am a fanatic about computer hardware and software such as processors, over-clocking stuff and pimping out my computers. </p> <p>My general plan after high school is to go to Waterloo University to learn anything computer-related ranging from computer security to programming and designing programs and games. My general future will be purely something computer-related such as a Computer Security Technician to a Game Coder. I would also like to go to conventions about tech-related stuff such as Comic Con, E3, GDC and many other conventions. <!-- end .content --></p> </div> <div class="footer"> <p align="center">Copyright © 2011 Gary Chen. All rights reserved. This has been a WMCProduction.</p> <!-- end .footer --></div> <!-- end .container --></div> </body> </html> [/code] So the comments are there because it was from a base template in Dreamweaver CS5.
[QUOTE=garychencool;30159784]wall of china[/QUOTE] [url]http://jsfiddle.net/zzlawlzz/Cf3u9/[/url] time to edit. [editline]31st May 2011[/editline] it looks fine on IE
[QUOTE=zzlawlzz;30159909][url]http://jsfiddle.net/zzlawlzz/Cf3u9/[/url] time to edit. [editline]31st May 2011[/editline] it looks fine on IE[/QUOTE] Um...., yeah..... My page on IE7 [URL=http://imageshack.us/photo/my-images/803/indexpageie7.png/][IMG]http://img803.imageshack.us/img803/6882/indexpageie7.png[/IMG][/URL] My page on Google Chrome... [URL=http://imageshack.us/photo/my-images/812/indexpageongooglechrome.png/][IMG]http://img812.imageshack.us/img812/7324/indexpageongooglechrome.png[/IMG][/URL] And finally, my page on jsFiddle (btw, thanks for linking me to the site) [URL=http://imageshack.us/photo/my-images/189/indexpageonjsfiddle.png/][IMG]http://img189.imageshack.us/img189/8684/indexpageonjsfiddle.png[/IMG][/URL] I think on jsFiddle, it's different or something....
oh right that's why you like that idiot lucky you're 14
[QUOTE=parket;30160169]oh right that's why you like that idiot lucky you're 14[/QUOTE] noooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo, im 13!!!!!!! /sarcasm btw, lucky isn't an idiot. WHY SO STEREOTYPICAL?
[QUOTE=parket;30160169]oh right that's why you like that idiot lucky you're 14[/QUOTE] Why dont you stop being so stereotypical? Not all 14 year-olds are idiot's.
what happens if you dont use {} after if, saw some code did this and dont understand how it works
[QUOTE=Pocoyo;30160466]what happens if you dont use {} after if, saw some code did this and dont understand how it works[/QUOTE] Are you referring to PHP?
yeap
[QUOTE=tngr;30154263]i was like in chat: hey guys, paste this into the url bar: javascript:$.post("/chat/", { message: SECURITYTOKEN, token: SECURITYTOKEN }); [editline]31st May 2011[/editline] it's only a three-dayer though[/QUOTE] I did that first, and then javascript: $.post("/chat/", { message: $("chat").html(), token: SECURITYTOKEN }); which got me a month :<
[QUOTE=Pocoyo;30160521]yeap[/QUOTE] Its the correct Syntax for an if statment. if ($fp = "down") { echo "FP is Down, QQ."; }
[php] if ($fp == "down") { echo "FP is Down, QQ."; }[/php]
[QUOTE=20 Smartness;30160966][php] if ($fp == "down") { echo "FP is Down, QQ."; }[/php][/QUOTE] Ah, Forgot to use php tags, Apologies.
[QUOTE=Dorkslayz;30160978]Ah, Forgot to use php tags, Apologies.[/QUOTE] No, double equals.
[QUOTE=20 Smartness;30161021]No, double equals.[/QUOTE] Yeah, That too.
i meant something like [php] if ($fp == 'down') echo 'fp is down'; else if ($fp == 'up') echo 'fp is up'; else echo 'not up or down'; [/php] where {}s are not used, sorry if i didnt phrase my question correctly.
[QUOTE=Dorkslayz;30160941]Its the correct Syntax for an if statment. [php] if ($fp == "down") { echo "FP is Down, QQ."; } [/php][/QUOTE] He asked why an if statement had no brackets. You can leave out the brackets if there's only one thing happening. Like this: [php] if ($fp == "down") echo "FP is Down, QQ."; [/php] While it looks a little neater sometimes, I wouldn't recommend it because it breaks consistency.
what happens if there are multiple lines after it?
They get executed on the spot.
Sorry, you need to Log In to post a reply to this thread.