When I load my page, one of the images is higher than it is supposed to be. When I right click "Inspect element" anywhere on the page, the image shifts back to its normal position. What could cause this? In FF the image is in its correct position on page load. Here's what it looks like before and after inspect element:
It might be a cache issue. After opening Developer Tools(F12) in Chrome, refresh cache by pressing Ctrl + F5.
Inspect Elements lets you tweak the appearance and content of a web page, by adding temporary edits to the site's CSS and HTML files. Once you close or reload the page, your changes will be gone; you'll only see the changes on your computer and aren't actually editing the real website itself.
Permanent Inspect Element. This extension lets you save the changes you make to a static web page using Inspect Element to remain there even after you refresh the page.
If you use the css below instead it should solve your problem.
#content{
position: relative;
}
.page-company-profile .node .taxonomy_image_wrapper {
position: absolute;
left: 500px;
top: 58px;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With