![]() |
|
automatic image resizing - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Design (https://sinister.ly/Forum-Design) +--- Forum: Web Design (https://sinister.ly/Forum-Web-Design) +--- Thread: automatic image resizing (/Thread-automatic-image-resizing) |
automatic image resizing - BlueCat - 09-02-2014 when trying to place an image of 128x512 in my html pages it seems as though it shrinks itself down into a small icon? Anyone had problems with this? RE: automatic image resizing - bluedog.tar.gz - 09-02-2014 Pastebin it please. (I can't tell for sure, but did you double check that it wasn't a 404? LOL) RE: automatic image resizing - Dusk - 09-09-2014 I think you put something like this Code: <script type="text/javascript">
//<![CDATA[
$(function () {
$(window).resize(function (e, e1) {
$("#wWidth").text($(window).width());
$("#wHeight").text($(window).height());
});
});
//]]>
</script>
<span id="wWidth"></span>
<span id="wHeight"></span>I'm not sure but, can you show us some screenshots RE: automatic image resizing - Dusk - 09-09-2014 I think you put something like this Code: <script type="text/javascript">
//<![CDATA[
$(function () {
$(window).resize(function (e, e1) {
$("#wWidth").text($(window).width());
$("#wHeight").text($(window).height());
});
});
//]]>
</script>
<span id="wWidth"></span>
<span id="wHeight"></span>I'm not sure but, can you show us some screenshots RE: automatic image resizing - Gr33n - 09-09-2014 Please post your code, there are tons of possible reasons this is happening! RE: automatic image resizing - Gr33n - 09-09-2014 Please post your code, there are tons of possible reasons this is happening! RE: automatic image resizing - BlueCat - 09-09-2014 No need to. I fixed it. RE: automatic image resizing - BlueCat - 09-09-2014 No need to. I fixed it. RE: automatic image resizing - Singularity_mybb_import13102 - 09-09-2014 So I guess that means this can be closed and solved. It might be helpful for you to post your issue and solution though; in case someone stumbles upon this thread with a similar issue in the future. RE: automatic image resizing - Singularity_mybb_import13102 - 09-09-2014 So I guess that means this can be closed and solved. It might be helpful for you to post your issue and solution though; in case someone stumbles upon this thread with a similar issue in the future. |