What do # entries in css files mean?

What do # entries in css files mean?

by Martin Koops -
Number of replies: 2

Many entries in the css file are preceded by a #.

Does nayone know what this means?

Average of ratings: -
In reply to Martin Koops

Re: What do # entries in css files mean?

by Jeffery Watkins -
Martin,

Those are id tags.  They are similar to CSS classes and are used almost the same in the stylesheets.

The best thing you could do if working with Moodle Themes is to switch to FireFox and get the extension Web Developer.  Under the Information tab, click Display ID and Class Details to see ids and classes in your Moodle site.  Then simply find them in your style sheet to change values.

Jeff
In reply to Jeffery Watkins

Re: What do # entries in css files mean?

by Martin Koops -
OK, I noticed the id's in firefox, did not know it was possible to set css properties for them, thanks.