I am trying to change the position of a <div> tag on my site using CSS (or by what ever means that works). Unfortunately, this div does not have an id tag, and while it does have a specified class, it is not the only div with this class. Also, it us unknown if it is always displayed in a consistent order with other divs on the page (meaning it may or may not always be, say, the 5th div).
What I do know is that this div, and one other nestled div, has a z-index of 10 specified in the inline, javascript generated, style. Further, this parent div with the z-index of 10 also has the specified class whereas the child div does not.
Can I somehow use javascript to move this div down a few pixels? The site requires javascript, so I am comfortable using javascript as my solution.