is there a way to change the type of a skin....?

brodel34

New Member
is there a way to manually change a skin to fixed rather than wide (taking up the whole page)? i have a skin... but i need it fixed.

i beleive they sometimes call the wider versions "expanded." i need the opposite of that.

the skin im using is cyborg if that helps.
 
Admincp>>styles and templates>>Style Manager>>your style

scroll down to Sizes and Dimensions section
(just after the footer template section)

edit:
Main Table Width (pixels or percentage)

if only the header changes add:
Code:
width:[color=Red]yourwidth[/color];

to the Page Backgrounds Extra CSS Attributes
 
brodel34 said:
thanx, it worked... but i want the header to change in size along with it. the header is staying 100%.

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