This topic is locked

How to create background image in PHPRunner 5.3?

10/28/2015 3:45:33 AM
PHPRunner General questions
O
overmars author

Hi All,
I still have an application using PHPRunner 5.3.

Can you explain me how to add the background image on the login page?
Thanks..

Sergey Kornilov admin 10/28/2015

Yes, it's very easy in fact:

http://www.w3schools.com/tags/att_body_background.asp
Another option is to do that via CSS:

http://www.w3schools.com/cssref/pr_background-image.asp
In both cases you will need to switch to HTML mode in Visual Editor.

O
overmars author 10/28/2015



Yes, it's very easy in fact:

http://www.w3schools.com/tags/att_body_background.asp
Another option is to do that via CSS:

http://www.w3schools.com/cssref/pr_background-image.asp
In both cases you will need to switch to HTML mode in Visual Editor.


Sergey,
option 1 not working in my PHPrunner 5.3
--------------------

...

<META name=GENERATOR content="MSHTML 11.00.10240.16515"></HEAD>

<BODY background="forest.jpg">{BEGIN body}{$header}

<TABLE id=center_block align=center>

<TBODY>

<TR>

...

---------------------------------

note : I place the source image "forest.jpg", in [images] inside phprunner5.3 folder.

can you explain me, whats wrong with this method?
Assuming I switch to html editor on the login page, just makesure,

for method 2 "CSS background-image Property", where I have to put the script? after <body>, before, or ?

Whats this way also working in phprunner 8.1?

Sergey Kornilov admin 10/29/2015

It will work if you specify correct path to image file. If it in images folder you should use something like

<BODY background="images/forest.jpg">


Better yet put it somethere on your website and use the full URL i.e.

<BODY background="https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=78155&image=1&table=forumreplies">;


The same thing will work in version 8.1 but you have more options using Custom CSS section in style editor.

See this for inspiration:

http://xlinesoft.com/blog/2014/10/31/random-page-background-halloween-edition/