|
Author |
Message |
crispinternet
Joined: 19 May 2008
Posts: 2
Location: Cheshire
|
Posted: Mon May 19, 2008 5:44 am Post subject: spacer.gif when outputting html from photoshop |
|
|
Hi All,
Im new to this photoshop forum and ive had a bit of a poke at tryign to find the solution to my problrms but nithing yet has been fitting. Basically when im out putting html from photoshop after slicing im getting these odd spacer.gif slices created but cant trace them any where to the psd they just dont exsist.
they look like this currently in the code...
Code: |
<tr>
<td width="12" height="0" nowrap="nowrap"></td>
<td width="46" height="0" nowrap="nowrap"></td>
<td width="8" height="0" nowrap="nowrap"></td>
<td width="81" height="0" nowrap="nowrap"></td>
<td width="181" height="0" nowrap="nowrap"></td>
<td width="5" height="0" nowrap="nowrap"></td>
<td width="9" height="0" nowrap="nowrap"></td>
<td width="60" height="0" nowrap="nowrap"></td>
<td width="16" height="0" nowrap="nowrap"></td>
<td width="273" height="0" nowrap="nowrap"></td>
<td width="83" height="0" nowrap="nowrap"></td>
<td width="36" height="0" nowrap="nowrap"></td>
<td width="3" height="0" nowrap="nowrap"></td>
<td width="35" height="0" nowrap="nowrap"></td>
<td width="77" height="0" nowrap="nowrap"></td>
<td width="77" height="0" nowrap="nowrap"></td>
<td width="22" height="0" nowrap="nowrap"></td>
<td width="0" height="0"></td>
</tr>
|
and basically when i design sites in php i usually have a layout like this
Code: |
<!-- Doc Information Start -->
<?
/*********************************************************************************
** Custom Multizone Website: Webpage
* Page: index.php
* Creator: Alan Sherlock
* Creation Date: May 2008
* Modifier: None
* Modification Date: Never
*
* Web Location: /var/www/vhosts/mymultizone/
* Server Name: ***********
* OS Version: Fedora Core 5
* Apache Version: 2.0.2
* Mysql Version: 5
* Php Version: 5
*
********************************************************************************/
$site_title = "Custom Multizone - Captivate | Entertain | Interact | Promote";
$footer_note = "Custom Multizone Limited - Copyright 2000 All Rights Reserved";
?>
<!-- Doc Information End -->
<!-- Head Start -->
<html>
<head>
<title><? echo ("$site_title"); ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<!-- Head Finish -->
<!-- Custom Multizone Index Start -->
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- Custom Multizone Table Start -->
<table id="Table_01" width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<!-- Index Header Start -->
<? include('header.php'); ?>
<!-- Index Header Finish -->
</td>
</tr>
<tr>
<td>
<!-- Index Splash Start -->
<? include('splash.php'); ?>
<!-- Index Splash Finish -->
</td>
</tr>
<tr>
<!-- Index Main Start -->
<? include('main.php'); ?>
<!-- Index Main Finish -->
</td>
</tr>
<tr>
<td>
<!-- Index Footer Start -->
<? include('footer.php'); ?>
<!-- Index Footer Finish -->
</td>
</tr>
</table>
<!-- Custom Multizone Table Finish -->
</body>
</html>
<!-- Custom Multizone Index Finish -->
|
thats my basic index page, it just pulls in the header, footer etc etc
but my problem is these little spacer things are popping up at the bottom of each include which is causing a line where the template doesnt join properly
example here
http://development.mymultizone.co.uk/
look at the bottom footer etc and theres my problem
can any one tell me what im doing wrong or if my output settings are wrong because which ever way i do it the same result happens...
Many thanks for any replies
Alan |
|
|
|
 |
crispinternet
Joined: 19 May 2008
Posts: 2
Location: Cheshire
|
Posted: Mon May 19, 2008 10:25 am Post subject: |
|
|
No takers on this one then???
Alan |
|
|
|
 |
doubrovski
Joined: 29 Sep 2007
Posts: 230
|
Posted: Mon May 19, 2008 11:58 am Post subject: |
|
|
Alan,
Sometimes Photoshop creates a transparent image (spacer.gif) to fill empty cells in generated HTML table. _________________ Andrei Doubrovski
SimplePhotoshop.com |
|
|
|
 |
|