Advertisement
nlozovan

Untitled

Mar 26th, 2014
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. FIND:
  2.  
  3. static $size = array(
  4. 'large' => 'twelve columns',
  5. 'lmedium' => 'nine columns',
  6. 'medium' => 'nine columns'
  7. );
  8.  
  9. CHANGE IN:
  10.  
  11. static $size = array(
  12. 'large' => 'twelve columns',
  13. 'lmedium' => 'eight columns',
  14. 'medium' => 'eight columns'
  15. );
  16.  
  17.  
  18. AGAIN SEARCH FOR:
  19.  
  20. echo '<div id="secondary" class="three columns ' . $classes . '" role="complementary">';
  21.  
  22. CHANGE IN:
  23.  
  24. echo '<div id="secondary" class="four columns ' . $classes . '" role="complementary">';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement