My goal is to adjust a division by including a width element in its CSS properties. I have attempted to use Chrome and Firebug to copy the CSS path, but it seems that the result is incorrect. After inserting it into my style.css file, the division remains unchanged. Even upon inspecting after refreshing, it is evident that the CSS properties have not been added.
For instance, if I want to modify the style of a division named "fpart" in my footer section, copying the CSS path gives me: body > div > div.fpart. However, adding this line to my style.css—body > div > div.fpart { width:900px; }—does not yield any changes. Furthermore, the "fpart" division is located within my footer, not in the body, so the selector might need to be something like: #footer .fpart { width:900px; }
The question remains: What tool should I use to acquire the correct name of the element, which can then be successfully integrated into my style.css file for desired outcomes?