Beepster
Like when using id's apparently I have to create a whole new set of instructions for every change even if it is the same element I'm screwing with. For example I have to open a new set of curly brackets to change a font then another to change the weight then another to change the color etc... as opposed to just writing one long set of instructions like I can do with a regular element like paragraphs.
That doesn't sound right. For any CSS rule, you can state as many parameters you like between the curly brackets, as long as they're separated by semicolons, for instance:
#share_index { position: absolute; height: auto; width: 470px; top: 465px;} Be careful not to confuse ID's with classes. ID's should only be used to identify a
unique element that is only used once on the page, whereas classes are used when you want to stylize a
group of elements in a certain way.
Post what you're trying to do in terms of code and we can put you on the right track for sure.