• Webv4

    From HusTler@1:103/705 to All on Tuesday, May 28, 2019 16:33:46
    What directory do I put background images in to use on the website?? sbbs/webv4/???? I created a custom.css in sbbs/webv4/root/css. Is this the right tag if the name of the background is "background.jpg"??

    body {
    background: url(background.jpg);
    }

    HusTler
    *Havens BBS havens.synchro.net:23 (1:267/160)*

    ---
    þ Synchronet þ Sent from Havens BBS havens.synchro.net:23 (1:267/160)
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From echicken@1:103/705 to HusTler on Tuesday, May 28, 2019 17:47:11
    Re: Webv4
    By: HusTler to All on Tue May 28 2019 16:33:46

    What directory do I put background images in to use on the website?? sbbs/webv4/???? I created a custom.css in sbbs/webv4/root/css. Is this the

    Anywhere you like, as long as it's publically accessible (the browser needs to be able to source the image from there). I'll suggest:

    sbbs/webv4/root/images/

    body {
    background: url(background.jpg);
    }

    I believe the URL needs to be quoted. If you create an "images" directory and put "background.jpg" there:

    background: url("/images/background.jpg");

    ---
    echicken
    electronic chicken bbs - bbs.electronicchicken.com - 416-425-5435
    þ Synchronet þ electronic chicken bbs - bbs.electronicchicken.com
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Denn@1:103/705 to HusTler on Wednesday, May 29, 2019 00:00:23
    Re: Webv4
    By: HusTler to All on Tue May 28 2019 04:33 pm

    What directory do I put background images in to use on the website?? sbbs/webv4/???? I created a custom.css in sbbs/webv4/root/css. Is this the right tag if the name of the background is "background.jpg"??

    I actually made a tutorial on this on outwestbbs.com bulletin 7 ----------------------------------------------------------------

    Ok here is how to mod your webv4 in synchronet 3.17 in your sbbs\webv4\root\css directory open or create a file called custom.css in plain text format.

    if you just want to change the background color put this line in your custom.css

    body {
    background-color: black;
    }

    you can change black to any html color green, red, blue, yellow etc..
    or you can use a HEX color ie.. #1e88e5 #00c853 #546e7a
    here is a good website to find HEX colors https://htmlcolors.com/

    or you can add a background picture as well below is an example

    body {
    background-image: url("http://yourbbs.com/pics/background.jpg");
    }

    in sbbs\webv4\root create a folder any name you want to store your backgrounds. example sbbs\webv4\root\pics


    hope this helps

    ---
    þ Synchronet þ outwestbbs.com - the Outwest BBS
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From HusTler@1:103/705 to Denn on Wednesday, May 29, 2019 10:02:23
    Re: Webv4
    By: Denn to HusTler on Wed May 29 2019 12:00 am

    Re: Webv4
    By: HusTler to All on Tue May 28 2019 16:33:46

    What directory do I put background images in to use on the website?? sbbs/webv4/???? I created a custom.css in sbbs/webv4/root/css. Is this

    Anywhere you like, as long as it's publically accessible (the browser needs be able to source the image from there). I'll suggest:

    sbbs/webv4/root/images/

    body {
    background: url(background.jpg);
    }

    I believe the URL needs to be quoted. If you create an "images" directory a put "background.jpg" there:

    background: url("/images/background.jpg");

    Thanks for the Tutorial.

    HusTler
    *Havens BBS havens.synchro.net:23 (1:267/160)*

    ---
    þ Synchronet þ Sent from Havens BBS havens.synchro.net:23 (1:267/160)
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)