Tagged: Header Size
Just thought I would share this quick change I had to make to Enfold 2.6.1
I am designing a client’s site, and he has requested a larger header than the maximum of 300px.
I went into the theme on my ftp and changed one line of code. Go to
“enfold/includes/admin/register-admin-options.php”
and look around line 996 for the following code:
$customsize = array();
for ($x=45; $x<=300; $x++){ $customsize[$x.'px'] = $x; }
You can change 300 to any other number you like.
Hope this helps someone else!
D