Background

Problems installing LinkMan?
Post Reply
plugmas.com
Posts: 3
Joined: Fri Sep 14, 2007 11:01 pm

Background

Post by plugmas.com »

Script URL: http://www.plugmas.com/lexchange/index.php
Version of script: 1.03
Hosting company: epowhost
URL of phpinfo.php: -
URL of session_test.php: -
What terms did you try when SEARCHING for a solution: -

Write your message below:

Hi,
I install recently Link Manager. ¿what can i say? Wonderful script! Thanks dear Klemen!

Im trying to add an background image and i try putting this little code in the index.php page:

<!--
body {
background-image: url(images/snow-scene.jpg);
}

But i couldnt see anything. ¿somebody know what´s the mistake? ¿Somebody know how to change the linkman banner by a new one?

Thanks and regard,
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

You're not using the original LinkMan, but a mod, try contacting the mod author.

A note about the background image - try editing

Code: Select all

body,td {
	background-color : #FFFFFF;
	color : #000000;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size : 11px;
}
in style.css file, something like

Code: Select all

body,td {
	background-color : #FFFFFF;
	color : #000000;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size : 11px;
	background-image: url(images/snow-scene.jpg);
}
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
huronind
Posts: 5
Joined: Tue Nov 27, 2007 3:45 pm

help with background -

Post by huronind »

Script URL: http://www.huronind.com/linkman/links.php
Version of script: 1.03
Hosting company: godaddy
URL of phpinfo.php: - http://www.huronind.com/linkman/phpinfo.php
URL of session_test.php: - ?
What terms did you try when SEARCHING for a solution: -

Write your message below:
in links.php added echo statements to try to control the look of the links:

Code: Select all

echo '<body bgcolor="#C0C0C0">';
	    echo '<table width="700" bgcolor="#FFFFFF" style="border-left-style: solid; border-left-width: 1px; border-right-style: solid; border-right-width: 1px">';
	    echo '<a href="'.$url.'" target="_blank" class="linkman">'.$title.'</a> -'.$description.'<br><br>';
	    echo '</table>';
Its not working, just want white background and a black 1px right and left border to match the header and footer.

Thanks!
Stacy
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Have you tried as explained in my previous reply?
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
huronind
Posts: 5
Joined: Tue Nov 27, 2007 3:45 pm

I looked at it, but I am not using an image

Post by huronind »

and using 2 different background colors

one for the page itself and one for the table

so I couldn't see how that would work?
huronind
Posts: 5
Joined: Tue Nov 27, 2007 3:45 pm

still not working

Post by huronind »

style.css coded as


Code: Select all

body,td {
	background-color : #FFFFFF;
	border-left-style: solid;
	border-left-width: 1px;
	border-right-style: solid;
	border-right-width: 1px;
	color : #000000;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size : 11px;
}
and set background color in header and footer only to gray --

http://www.huronind.com/linkman/links.php

any suggestions appreciated!!

Thanks,
Stacy

ps - changed links.php to

Code: Select all

foreach ($lines as $thisline)
{
	$thisline=trim($thisline);
    if (!empty($thisline)) {
	    list($name,$email,$title,$url,$recurl,$description)=explode($settings['delimiter'],$thisline);
	    if ($settings['clean'] != 1) {$url='go.php?url='.$url;}
	    echo '<table width="700">';
	    echo '<a href="'.$url.'" target="_blank" class="linkman">'.$title.'</a> -'.$description.'<br><br>';
	    echo '</table>';
    }
huronind
Posts: 5
Joined: Tue Nov 27, 2007 3:45 pm

image aproach is not working either

Post by huronind »

http://www.huronind.com/linkman/links.php

Code: Select all

body,td {
	background-color : #FFFFFF;
	color : #000000;
	font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size : 11px;
	background-image: url(images/bodybg.png);
I would really appreciate some help to get this right - Thanks!!
FRAMESnGIFTS
Posts: 4
Joined: Fri Dec 21, 2007 2:22 pm

Post by FRAMESnGIFTS »

Couldn't you just put all the required info into header.txt?

I did away with the CSS file and put what I wanted in the header txt file. I imagine your background image tile info could be used also using this file.

Klemen just wanted to thank you for an excellent script. Very simple and straight forward to install and use.

Liz
http://www.framesngifts.com
Post Reply