Not Solved Copyright space & deleting body bg
#1
Not Solved
1) I'd like my copyright space to have a background. I'm talking the space the arrow's in:

[Image: footer.JPG]

2) Is it possible to delete the body background from the redirecting pages? I find it pretty out of place and unesthetic in my case.

Thank you very much.
Reply
#2
Not Solved
1. what exactly do you mean have background? what background?

2. You can edit the redirect template or disable the redirect pages completely. I removed those redirect pages since its slowing and it adds to server load.. (can be done via ACP)
Reply
#3
Not Solved
1) I would like to place the same body bg image I'm currently using.

2) No, I'm going to leave those pages where they are. I just would like to delete the background. But how? Here's my redirect template code:

<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta http-equiv="refresh" content="2;URL=$url">
<title>$title</title>
$headerinclude
</head>
<body>
<br />
<br />
<br />
<br />
<div style="margin: auto auto; width: 50%" align="center">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" class="tborder">
<tr>
<td class="thead"><strong>$title</strong></td>
</tr>
<tr>
<td class="trow1" align="center"><p>$message</p></td>
</tr>
<tr>
<td class="trow2" align="right"><a href="$url"><span class="smalltext">Clicca qui se non hai intenzione di attendere</a></a></td>
</tr>
</table>
</div>
</body>
</html>
Reply
#4
Not Solved
Just add this:
<style type="text/css">
body { background-color: #FFFFFF; }
</style>
Just change #FFFFFF to the hexidecimal value you want or color name.

Make sure you add this before the </head> tag, as then this will over ride the main CSS style sheet, for that page.
Reply
#5
Not Solved
thank you. where is the tag located?
Reply
#6
Not Solved
Mad_Griffith Wrote:
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta http-equiv="refresh" content="2;URL=$url">
<title>$title</title>
$headerinclude
</head>
<body>
<br />
<br />
<br />
<br />
<div style="margin: auto auto; width: 50%" align="center">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" class="tborder">
<tr>
<td class="thead"><strong>$title</strong></td>
</tr>
<tr>
<td class="trow1" align="center"><p>$message</p></td>
</tr>
<tr>
<td class="trow2" align="right"><a href="$url"><span class="smalltext">Clicca qui se non hai intenzione di attendere</a></a></td>
</tr>
</table>
</div>
</body>
</html>
Change the above code to:
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<meta http-equiv="refresh" content="2;URL=$url">
<title>$title</title>
$headerinclude
<style type="text/css">
body { background-color: #FFFFFF; }
</style>
</head>
<body>
<br />
<br />
<br />
<br />
<div style="margin: auto auto; width: 50%" align="center">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" class="tborder">
<tr>
<td class="thead"><strong>$title</strong></td>
</tr>
<tr>
<td class="trow1" align="center"><p>$message</p></td>
</tr>
<tr>
<td class="trow2" align="right"><a href="$url"><span class="smalltext">Clicca qui se non hai intenzione di attendere</a></a></td>
</tr>
</table>
</div>
</body>
</html>
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)