How to add words to magnifying icon for popup?

Parisi

Member
How do I add words to magnifying icon for popup?
 

Attachments

  • 2014-10-08_11-27-48.png
    2014-10-08_11-27-48.png
    11.7 KB · Views: 163
Create a custom CSS for that template (see wiki), and add this:

Code:
.toggle-addoption:after {
    content: " foo";
}
If you need to restrict it to certain forms only, use the usual CSS selector syntax to narrow down the selection like prepend the form's ID to the selector string.
-- hugh
 
Note that you may need to use double colon, ::after. I just noticed that for some reason the code formatter on the forum is changing :: to :. I think single : does actually work in most browser CSS engines for detecting pseudo-selectors like ::after, ::last, etc ...but best to use double.

-- hugh
 
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top