Create no footer?


Author Message
bforbes

Posted: 1/31/2010
Quote message 

Hello,
I have a client that does not want a footer. Instead, she wants the bottom of the sheet area to be flush to the bottom of the screen (no bottom border). Is there a way to do this in Artisteer?
Thanks
 
Garry

Posted: 1/31/2010
Quote message 

I think there is no option in Artisteer to remove footer.
 
Shawn Gadwa

Posted: 2/1/2010
Quote message 

There is no option in Artisteer to remove the footer. However, you can do it manually.

1. Make your artisteer template and export it into a folder.

2. Find index.php and scroll to the end of the file. Remove anything that references to a footer. Like this:

<div class="art-Footer">
<div class="art-Footer-inner">
<?php echo artxModules($document, 'syndicate'); ?>
<div class="art-Footer-text">
<?php if (artxCountModules($document, 'copyright') == 0): ?>
<p>Copyright &copy; 2009 ---.<br />
All Rights Reserved.</p>

<?php else: ?>
<?php echo artxModules($document, 'copyright', 'art-nostyle'); ?>
<?php endif; ?>
</div>
</div>
<div class="art-Footer-background"></div>
</div>

<div class="cleared"></div>
</div>
</div>
<div class="cleared"></div>
<p class="art-page-footer"><a href="http://www.artisteer.com/?p=joomla_templates">Joomla template</a> created with Artisteer by Shawn Gadwa.</p>
</div>

Note: You might want to use the syndicate module. If so, you should be able to just leave that and leave the rest, I think.

3. Open up the css folder and open template.css in a text editor.

Find where it says

.art-Sheet-cr, .art-Sheet-cl
{
top: 30px;
bottom: 30px;
width: 60px;
background-image: url('../images/Sheet-v.png');
}


and remove whatever you have for the bottom and just set it for 0.

Do the same thing for .art-Sheet-cc so that it looks like this:

{
position:absolute;
z-index:-1;
top: 30px;
left: 30px;
right: 30px;
bottom: 0px;
background-color: #F4F5F6;
}



Hope that helps.
~Shawn
 
Shawn Gadwa

Posted: 2/1/2010
Quote message 

Also remember to backup the folder before you attempt to make any manual changes to the files.
 
bforbes

Posted: 2/1/2010
Quote message 

Quote Shawn Gadwa:

Also remember to backup the folder before you attempt to make any manual changes to the files.


Thanks Shawn,
I'll spend some time this weekend working on this. I'll also make a suggestion to Artisteer for sheet bottom offset (0px) settings