RadioFeed Webpage Customisation

YBBNOOL

Member
Feed Provider
Joined
May 25, 2024
Messages
5
Hi

I am using the excellent RadioFeed web server. I have one question. Is it possible to edit the webpage to remove everything but the Listen Live box.

I know it is possible to tweak the styles, etc. but I was hoping there might be a way to remove sections.

I hope this makes sense. I have attached an image for clarity.

Thank you in advance .
 

Attachments

  • Screenshot_20240525_181710_Photos.jpg
    Screenshot_20240525_181710_Photos.jpg
    20.5 KB · Views: 22

1808208

Member
Joined
Sep 25, 2018
Messages
49
Location
Hawaii
Go into the style1.css file in proscan folder.. (open in notepad)

scroll down to just above #table1... and add
#scannercontainer {
display:none;
}

all other divs you want hidden just add display:none;
to the top of the list of attributes for that item.

make sure to just hit save.
 

Attachments

  • Screenshot.png
    Screenshot.png
    19.2 KB · Views: 16
Last edited:

YBBNOOL

Member
Feed Provider
Joined
May 25, 2024
Messages
5
Go into the style1.css file in proscan folder.. (open in notepad)

scroll down to just above #table1... and add
#scannercontainer {
display:none;
}

all other divs you want hidden just add display:none;
to the top of the list of attributes for that item.

make sure to just hit save.

Thank you for the advice. I was able to do what I needed, your guidance certainly helped.
 
Top