line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

<?php 
/* DO IT! Will make smarter in the future! */
$wf_grid = new wflux_layout();
$wf_grid->containers();
//$wf_grid->blocks();
//$wf_grid->space_loops();
//$wf_grid->push_loops();
$wf_grid->relative_loops();
$wf_grid->columns();
$wf_grid->relative_push_pull();
$wf_grid->media_queries_utility();
$wf_grid->media_queries();
/**
 * Percent based CSS and media query layout generator
 * @since 2.0
 */
class wflux_layout
{
    protected $width;
    // INPUT - Width of main container
    protected $width_units;
    // INPUT - Units for main container width (% or pixels)
    protected $columns_basic;