This topic is locked
[SOLVED]

 Remove blue "select" link from underneath a multiselect field

4/3/2020 10:11:08 AM
PHPRunner General questions
woodey2002 author

Hi Guys,
Does anyone know how I can remove the blue link called "select" from underneath a multiselect field?
I have a lot of multiselects and need to save space.
Maybe Javascript or CSS?
Cheers,

J

Sergey Kornilov admin 4/3/2020

You can do this using either CSS or Javascript. CSS is probably easier as it will be applied to all pages at the same time.
Please see CSS examples here:

https://xlinesoft.com/phprunner/docs/customizing_styles_examples.htm
Also there are two videos that explain in depth the CSS topic:

https://www.youtube.com/watch?v=_DmMYRCUtU8

https://www.youtube.com/watch?v=yFnD38oslIc

woodey2002 author 4/3/2020

Perfect Thanks Sergey.
Here is the code I added to custom CSS of the page in question
a#openlookupadd your field name here_1 {

visibility: hidden;

}
Thanks