0 Members and 3 Guests are viewing this topic.
Ill throw mine in the mix as well.I just noticed c4757p it looks like we shop at the same place for storage bins.
What's the red contraption on the shelf between power supply and multimeters? I assume some hot air device right?
That's a heat gun. For whatever reason you really don't see that style much anymore but they were very common at one time.
Here's my incarnation of a work bench. Storage shelving makes a nice bench for the price. Should be moving to a new house later which will be better so I can have a separate bedroom too
Photo is too large, completely unviewable...
// This is a part of: ./forum/Themes/default/scripts/topic.js// *** Other functions...function expandThumb(thumbID){ var img = document.getElementById('thumb_' + thumbID); var link = document.getElementById('link_' + thumbID); var tmp = img.src; img.src = link.href; link.href = tmp; img.style.width = ''; // here is the fix: img.style.maxWidth = '60%'; // not larger than this percentage of the screen img.style.height = ''; return false;}
I would add this to the CSS, it will make images resize to their parent element if larger width than their parent element. This should fix images on the whole website and anything in the future.Code: [Select]a img { max-width: 100%;}Code: [Select].bbc_img { max-width: 100%;}
a img { max-width: 100%;}
.bbc_img { max-width: 100%;}
You can add those two additional max-width: 100%; lines of code intohttps://www.eevblog.com/forum/Themes/default/css/index.css
Quote from: Shock on October 28, 2013, 11:18:47 amYou can add those two additional max-width: 100%; lines of code intohttps://www.eevblog.com/forum/Themes/default/css/index.cssDone!