[REQ] Skin - Cyborg-fixed

if you have the xml file and only need to install it.....
Admincp>>Styles & Templates>>Download / Upload Styles

Second section: Import Style XML File
 
i know how install skins... but i need a different xml file for the fixed version. when i edit the width percentage (in style manager) for the xml file that im using now, the header stays at 100%.. so i need a different xml file, right? i just dont know how to edit xml files. :(
 
figured it out....

you have to add this code to the top of the HEADER template.

PHP:
<!-- start header part -->
<a name="top"></a>
<table width="680" border="0" align="center" cellpadding="0" cellspacing="0" class="wrapper">
  <tr>
    <td class="bdr">&nbsp;</td>
    <td valign="top" class="ctrbgcolor"><table width="100%" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td class="headerwrap"><table width="100%" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td class="headerL">&nbsp;</td>
            <td>&nbsp;</td>
            

          </tr>
        </table></td>

      </tr>
      <tr>
        <td class="navwrap">

</td>
      </tr>
      <tr>
        <td valign="top" class="cwrap">
       
<!-- /end header part -->

680 represents the width in pixels, you can also use a percentage.
 
Back
Top