The firebug firefox extension allows you to edit in real time your CSS code. Instead of having to make a change, reload, make a change, reload you can just edit it live to see the results.
Open config.php file (Under application/config folder) and change the following line
$config['base_url'] = “”;
to
$config['base_url'] = “http://localhost/cimenu”; //here cimenu is the folder where all the files of CodeIgniter is
Now open autoload.php file (Under application/config folder) and change the following line
$autoload['helper'] = array();
to
$autoload['helper'] = array(‘url’, ‘form’);
Now create a folder named menu under cimenu(This is the project name) folder, that is, in your root folder. Now put all the files of the external menu to the menu folder under cimenu.
Lets create a php file and name it mymenu.php under application/controller folder and write the following code: Read the rest of this entry »
Much better! Just a few of words of warning: This CSS shorthand version will only work if you’re specifying both the font-size and the font-family. The font-family command must always be at the very end of this shorthand command, and font-size must come directly before this. Also, if you don’t specify the font-weight, font-style, or font-variant then these values will automatically default to a value of normal, so do bear this in mind too.” Read the rest of this entry »