avs-code / PREM-Podium-race-E-manager

Description PREM (Podium race e manager) is management software for races and race leagues. It can be used to create overviews of race results. Based on Paddock 7.10beta by: demontpx
https://arv187.github.io/PREM-Podium-race-E-manager/
GNU General Public License v3.0
5 stars 1 forks source link

Background collor #47

Closed Simracer2018 closed 6 years ago

Simracer2018 commented 6 years ago

Hello, where can I possibly for all sides the background [collor] or maybe even a picture change / insert? Thank you in advance for your help! greeting

avs-code commented 6 years ago

-To change blackground colour In Index.php file, Line 50. Add the blackground color code: background-color: lightblue; *lightblue is a example, you can use others colours. It should show something like this:

body {font-family: "Lato", sans-serif; background-color: lightblue;}

*note that each commando must be separated by ;

If you want use a image as blackground try this: background-image: url("images/2011_FIA_GT1_Silverstone_2.jpg"); It should show something like this:

body {font-family: "Lato", sans-serif; background-image: url("images/2011_FIA_GT1_Silverstone_2.jpg");}

*note that the url is relative to the installation of PREM

To more info PREM use the W3 css styles: https://www.w3schools.com/css/css_background.asp

- To change or insert picture in slider show The file is main.php line 47 Here you have the url to image and their height:

<img src="images/2011_FIA_GT1_Silverstone_2.jpg" style="height:500px">

Image title: <h3>FIA GT1 at Silverstone in 2011</h3> And image description: <p><b>By ToNG!? - FIA GT1, CC BY 2.0, https://commons.wikimedia.org/w/index.php?curid=20368769</b></p>

P.S: Show me your website if you want to see how it looks with your changes. 😃

Simracer2018 commented 6 years ago

Thanks for the quick and good help. Worked !!!