This topic is locked

Change opacity of icons

8/17/2010 9:13:00 AM
PHPRunner General questions
A
Astrid author

Is it possible to change the opacity of the icons (view and edit). I can see that there is a class .listIcons img.listIcon with properties:

margin:0 3px;

opacity:0.3;
Would like to change opacity to 0.9 as icons are not very visible.
I can do it in the generated PHP files, but when I rebuild my project changes are gone.

A
ann 8/17/2010

Astrid,
you can change it in the HTML mode on the Visual Editortab.

Find the following line and edit the opacity:

.listIcons img.listIcon{margin:0 3px;opacity:0.3;filter:alpha(opacity=30);}
A
Astrid author 8/17/2010



Astrid,
you can change it in the HTML mode on the Visual Editortab.

Find the following line and edit the opacity:

.listIcons img.listIcon{margin:0 3px;opacity:0.3;filter:alpha(opacity=30);}




Ann,

Thx. Was hoping that I could do it in some source code to make it default. But it works!

A
ann 8/17/2010

Astrid,
you also can edit the opacity in the generated \layouts\YourLayoutName\lheader.htm file.