List Manager Forum

Editing css

Usuario gigi 2016-10-30 19:10:20

Hello,
on my site there listmanager uses a color (here the same dark-green as in the header of the whole page) for the background of the filter-field and in the export-area at the bottom (http://www.fromm-gesellschaft.eu/index.php/de/publikationen-blog/alle-dateien-ansehen/). I can´t find the css entry that defines the color to be e.g. white. Can you help me?

Moonsoft support 2016-10-31 09:00:53

Hi,

Background color is defined at template css: http://www.fromm-gesellschaft.eu/templates/purity_iii/css/custom.css, line 13:

.navbar-nav {
background-color: #3b651d;
}

If you need only change the background on List Manager, you should add in any css file executed on this page the following:

#lm_wrapper .navbar-nav {
background-color: #fff;
}

Hope this helps. Regards,

Usuario gigi 2016-10-31 11:56:23

Thank you! That helped!