============================================================================================================================
Modification Name: Eliminate Spaces In Header Navigation Images

Version: 1.0

Description: If you hate all the excess space between the navigation images in the header links then this modification will fix that.

Code By: John Briggs

Compatability: XMB 1.9.5 SP1

Release Note: This is a simple tweak and nothing more so feel free to post and share as you desire with no restrictions.

Notes: This modification is released under the GPL v3. You should have received a copy of it with this software package.

Please backup your files before installing this modification.
Neither XMB Garage nor the author can be held responsible if your board stops functioning properly due to you installing this modification.
You can obtain support for this modification from XMB Garage.
============================================================================================================================
=======
Step 1:
=======
=================
Edit File: header.php
=================
==========
Find Code:
==========

$links = implode(' &nbsp; ', $links);

================
Replace Code With:
================

$links = implode('&nbsp;', $links);

==========
Find Code:
==========

$pluglink = implode(' &nbsp; ', $pluglinks);

================
Replace Code With:
================

$pluglink = implode('&nbsp;', $pluglinks);

============================================================================================================================
Enjoy!