Page 1 of 1

Switch Portal, customization?

Posted: Mon Dec 04, 2017 4:23 pm
by LasseThid
Is it possible to customize the appearence of the Switch Portal?

I have a submit point that looks way better with the old Switch Client than it does in Switch Portal:

Switch Client 13:
Image

Switch Portal 17 update 2:
Image

or
Image

Re: Switch Portal, customization?

Posted: Tue Dec 05, 2017 10:03 am
by loicaigon
Hi,

I don't really know how the standard webportal is customizable. I guess you should be able to reach internal html folder inside switch preferences folders but I was under the impression that you would use the Switch API to build your own web portal.

FWIW

Loic

Re: Switch Portal, customization?

Posted: Tue Dec 05, 2017 10:56 am
by LasseThid
Oh, ok...

I googled Enfocus Switch Portal API and came up with this, which I suppose is what you're directing me towards?
http://www.enfocus.com/manuals/Develope ... index.html
Unfortunately I don't understand anything of it, so I guess I have to either stay with the trust ole client or accept the crappy look of the new portal... :lol:

I guess I'll have to wait for the Chump Edition of that document..

Re: Switch Portal, customization?

Posted: Tue Dec 05, 2017 6:06 pm
by loicaigon
Hi

Indeed it was the info I as referring to. Sorry I forgot to add the link at first.

Loic

Re: Switch Portal, customization?

Posted: Wed Dec 06, 2017 12:38 am
by victor Lukenga
Hi,you can do it by manipulating the CSS which is simple see the pic attached
the option will to link a custom CSS sheet in the index.html and find what you can tweak;

Build your own Web Portal is a solution but we will have to get our brains stronger than ever :D


(hint : put "!important" when classes don't seems to change)

Code: Select all

if you are not familiar with CSS here an exemple


.thisClassYouWantToManipulate{
	background-color:red!important;
	border-radius:5px!important;
}
hope it will help.

Victor

Re: Switch Portal, customization?

Posted: Wed Dec 06, 2017 10:03 am
by LasseThid
Thanks Loic and Victor.

My problem seems to be that I'm a prepress operator and not a programmer... :lol:
I learned some coding once, but that was in the previous millenium... :shock: ... and it was assembler for the Zilog Z80... :lol: :lol: :lol: :lol:

Re: Switch Portal, customization?

Posted: Wed Dec 06, 2017 11:14 am
by loicaigon
Nice one Victor ! I really like your tweak.
Great to know it's feasible somehow ;)