![]() |
How to Use 960 Grid System with CodeIdniter - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: How to Use 960 Grid System with CodeIdniter (/showthread.php?tid=49390) |
How to Use 960 Grid System with CodeIdniter - El Forum - 02-17-2012 [eluser]ludo31[/eluser] Hello I try to use 960 Grid System in CodeIgniter My folder is like This : the principal folder CodeIgniter: CodeIgniter | -application |_Controller |_View |_Model |_css -system in Controller folder I have : a file : site.php in view : accueil.php but when I try to insert the 960 grid in view file it doesn't hork even if I load the url Code: <?php <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link rel="stylesheet" type="text/css" media="all" href="<?php echo base_url();?> ../css/reset.css" /> <link rel="stylesheet" type="text/css" media="all" href="<?php echo base_url();?>../css/text.css" /> <link rel="stylesheet" type="text/css" media="all" href="<?php echo base_url();?>../css/960.css" /> </head> <body> <div class="container_12"> <h2> grid coulum 12 </h2> <div class="grid_12"> <p> 940 </p> </div> </div> </body> </html> remark at the link : I use Code: ../css/text.css I also try to take css folder out of application in the same folder than system so I change link like this : Code: ../../css/text.css but it doesn't work !! but When I try to a new file in desktop and make 960 grid system in the same it works !! does anyone know what's the problem ?? thanks How to Use 960 Grid System with CodeIdniter - El Forum - 02-17-2012 [eluser]CroNiX[/eluser] /application and /system directories are not accessible via the url for security reasons. CodeIgniter | -application |_Controller |_View |_Model -system -css -images -js Code: <link rel=“stylesheet” type=“text/css” media=“all” href=”<?php echo base_url();?>css/reset.css” /> How to Use 960 Grid System with CodeIdniter - El Forum - 02-18-2012 [eluser]ludo31[/eluser] [quote author="CroNiX" date="1329519850"]/application and /system directories are not accessible via the url for security reasons. CodeIgniter | -application |_Controller |_View |_Model -system -css -images -js Code: <link rel=“stylesheet” type=“text/css” media=“all” href=”<?php echo base_url();?>css/reset.css” /> thank you it works :bug: |