easytech Posted November 4, 2008 Share Posted November 4, 2008 Hi guys, In my online store my text is not behaving in firefox as it has in Internet Explorer. It is supposed to be well formatted into paragraphs. It is sitting to the left, but the </br> is not behaving, can anyone help please? Cheers :D An example of the code that it is formatted in below. aboutus.php define('TEXT_INFORMATION', 'Welcome to <b>Easytech New Zealand</b>, we are an online computer store who aim to bring you quality custom built computer sytems at the <b>lowest price possible</b> without compromise.</br> </br> We also deal with upgrade packages and setup services within auckland. At Easy-Tech, we focus on three types of computer builds which can generally be identified by price. These consist of Office/Home computers(low cost), Extreme gaming/Design computers(highest cost) and Media based computers(medium cost).</br> </br> Of course if you are not able to find the one that suites you we do have a <b>online custom PC builder</b> for you to use and you can <b>create your own PC to order!</b>. </br></br> Our team have all previously been professional online gamers, and understand what performance means. We put every single computer you purchase through a burn in test, to ensure compatability and performance. Each system you purchase will have had at least three hours spent preparing it for you. And if anything were to be faulty we want to fix or replace the corresponding part as soon as possible.</br> </br> If you are still unsure about what your looking for, please give us a call or e-mail us and we will discuss which solution best suites your needs, Or check out our <b>frequently asked questions.'); I have tried to give you a precise explanation of what I need to do and the problem, so If someone could enlighten me with a decent answer :D Thanks All. Link to comment Share on other sites More sharing options...
Guest Posted November 4, 2008 Share Posted November 4, 2008 Not sure, but maybe try <br> </br> Link to comment Share on other sites More sharing options...
easytech Posted November 4, 2008 Author Share Posted November 4, 2008 Not sure, but maybe try <br> </br> Found the solution, thx coopco. Apparently firefox doesn't like </br> but rather <br> So often I overlook the obvious!!! firefox is'nt all its cracked out to be for advanced use, I'm always having to modify code to it's liking and ALWAYS having to clear the cache :( Link to comment Share on other sites More sharing options...
Guest Posted November 4, 2008 Share Posted November 4, 2008 Found the solution, thx coopco. Apparently firefox doesn't like </br> but rather <br> So often I overlook the obvious!!! firefox is'nt all its cracked out to be for advanced use, I'm always having to modify code to it's liking and ALWAYS having to clear the cache :( What about a <br /> Link to comment Share on other sites More sharing options...
usernamenone Posted November 4, 2008 Share Posted November 4, 2008 <p> and </p> will get you a paragraph <br><br> will get you a double space break Link to comment Share on other sites More sharing options...
Web-Translations Posted November 4, 2008 Share Posted November 4, 2008 Hi guys, In my online store my text is not behaving in firefox as it has in Internet Explorer. It is supposed to be well formatted into paragraphs. It is sitting to the left, but the </br> is not behaving, can anyone help please? Cheers :D An example of the code that it is formatted in below. aboutus.php define('TEXT_INFORMATION', 'Welcome to <b>Easytech New Zealand</b>, we are an online computer store who aim to bring you quality custom built computer sytems at the <b>lowest price possible</b> without compromise.</br> </br> We also deal with upgrade packages and setup services within auckland. At Easy-Tech, we focus on three types of computer builds which can generally be identified by price. These consist of Office/Home computers(low cost), Extreme gaming/Design computers(highest cost) and Media based computers(medium cost).</br> </br> Of course if you are not able to find the one that suites you we do have a <b>online custom PC builder</b> for you to use and you can <b>create your own PC to order!</b>. </br></br> Our team have all previously been professional online gamers, and understand what performance means. We put every single computer you purchase through a burn in test, to ensure compatability and performance. Each system you purchase will have had at least three hours spent preparing it for you. And if anything were to be faulty we want to fix or replace the corresponding part as soon as possible.</br> </br> If you are still unsure about what your looking for, please give us a call or e-mail us and we will discuss which solution best suites your needs, Or check out our <b>frequently asked questions.'); I have tried to give you a precise explanation of what I need to do and the problem, so If someone could enlighten me with a decent answer :D Thanks All. Try swapping </br> for <br />. Also, use <strong></strong> instead of <b></b>. Link to comment Share on other sites More sharing options...
php_Guy Posted November 4, 2008 Share Posted November 4, 2008 As they said, </br> is not a command. Use <br>, <br/> or <br /> instead. <br /> is preferrable. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.