I've been tasked with updating a client's WordPress website, but I'm still getting acquainted with the overall structure of the site.
When looking at the blog page (), I noticed that posts are displayed within a wrapper labeled #blogleft, as defined in the CSS file:
#blogleft {
float: left;
width: 580px;
}
However, upon inspecting the page, I found that the width is actually being overridden to 100%:
element.style {
width: 100%;
}
My query is - what would be the most straightforward way to pinpoint where this override is coming from? My best guess is it might be injected by a JavaScript file somewhere on the site.
I've been digging around in the inspector for quite some time now. Is there an easy method to identify the origin of an injected inline style like this? All assistance is greatly appreciated!