selected filled should be highlighted in the front end page

0
Hi, I have list of fields at front end in a page. If I select one of the filed, it should be highlighted that filled with different color or something like that. So please help me  can I use any css or any other way is there. FYI I am using Template grid and displaying list of fields.
asked
2 answers
0

Yes you can! Look for the ‘active’ class on the template grid item using the inspector in your browser and give that class a background colour in the custom CSS file.

I don’t have a project open with a template grid right now, but for a list view it looks like this:

.mx-listview .mx-listview-item:focus, .mx-listview .mx-listview-item:active

 

answered
0
.mx-templategrid .mx-templategrid-item.selected

Seems it’s a little bit different for the template grid. But this is the class you’re looking for.

answered