I want to modify a division by adding a width element in its CSS options. I use chrome and firebug also to copy the CSS' path, but i guess that the output is not right. Once i put it in my style.css, it makes no changes to the divison. Also, if i do an inspectiona after refresh, i can clearly see that css options are not added.
Example: i want to alter the style of division called "fpart" in my footer. When i do copy css path, i get this output: body > div > div.fpart If i add this line: body > div > div.fpart { width:900px; } in my style.css, it wont work. Also, division fpart ( div style="fpart" ) is not on body, its on my footer, so i guess it should be something like: #footer .fpart { width:900px; } etc
Question is, what tool to use in order to get the correct element's name, that i will be able to add in my style.css and will work?