﻿<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0">
  <channel>
    <title>Quomon - images</title>
    <link>https://quomon.com</link>
    <description>Questions and Answers for IT &amp; Graphic Design Professionals - images</description>
    <language>en-us</language>
    <copyright>Quomon</copyright>
    <generator />
    <webMaster />
    <lastBuildDate>Wed, 10 Jun 2026 01:35:01 GMT</lastBuildDate>
    <ttl>20</ttl>
    <item>
      <guid>https://quomon.com/3274764/What-are-the-most-commonly-used-image-types-when-building-websites</guid>
      <title>What are the most commonly used image types when building websites?</title>
      <link>https://quomon.com/3274764/What-are-the-most-commonly-used-image-types-when-building-websites</link>
      <description />
      <author>imageopa</author>
      <pubDate>Sat, 13 Jun 2020 11:34:57 GMT</pubDate>
      <comments>https://quomon.com/3274764/What-are-the-most-commonly-used-image-types-when-building-websites#comments</comments>
      <category>Websites, images</category>
    </item>
    <item>
      <guid>https://quomon.com/52294/Advanced-Word-to-Pdf-Converter-Word-Document-formats</guid>
      <title>Advanced Word to Pdf Converter (Word Document formats)</title>
      <link>https://quomon.com/52294/Advanced-Word-to-Pdf-Converter-Word-Document-formats</link>
      <description>I'm using Advanced Word to Pdf Converter to convert batches of Word Documents to Pdf format.  These Word documents consist of multiple pages however once the conversion has been made to Pdf format the multiple pages are all reflected as a single page and the alignment is far left of the page thus loosing some of the information making the document now unreadable.  In my settings I've had to also use the option "Output PDF as image format" because the converter does not accept the other option "Output PDF as default format", I get the message [1037]Error: Can not open fileC:\Bruce\etc.\etc.\etc.   Is there anyone that has an answer to this problem, please. </description>
      <author>brucehay76</author>
      <pubDate>Wed, 25 Jan 2012 08:11:37 GMT</pubDate>
      <comments>https://quomon.com/52294/Advanced-Word-to-Pdf-Converter-Word-Document-formats#comments</comments>
      <category>images, open, format, Pages, Settings, pdf</category>
    </item>
    <item>
      <guid>https://quomon.com/52292/im-stuck-on-safe-mode-cant-get-normal-mode-to-work</guid>
      <title>im stuck on safe mode cant get normal mode to work.</title>
      <link>https://quomon.com/52292/im-stuck-on-safe-mode-cant-get-normal-mode-to-work</link>
      <description>ive gotten my computer to work some what but the root of my problem is i cannot get it out of safe mode. ive tried recovery but wont let me because of safe mode. cant restore because it says no restore point i dont know why it should outomatically restore after 3 months,6 months, or a year automatically. i dont recall turning it off at all. the screen is image is huge i cant get the resolution correct its too big. i think it has something to do with my graffix driver its there but seems like it was turned off please, please help</description>
      <author>sithbola69</author>
      <pubDate>Thu, 19 Jan 2012 07:58:12 GMT</pubDate>
      <comments>https://quomon.com/52292/im-stuck-on-safe-mode-cant-get-normal-mode-to-work#comments</comments>
      <category>computer, images, driver, Screen, stuck</category>
    </item>
    <item>
      <guid>https://quomon.com/50244/Need-Help-with-CSS-Page-Layout</guid>
      <title>Need Help with CSS Page Layout</title>
      <link>https://quomon.com/50244/Need-Help-with-CSS-Page-Layout</link>
      <description>Hi!  I need your help. Trying to redesign my band's website and I am a relative rookie at web design.

You can see the concept I am going for here:

(Basic template for the site)
&lt;a href="http://www.yusifmusic.com/NEWSITE/bio.html" target="_blank" rel="nofollow"&gt;www.yusifmusic.com/NEWSITE/bio.html&lt;/a&gt;

So what I initially tried to do was use the image as a background image but that was very difficult.

So I ended up splitting the image into 3 sections in photoshop-- header, content, &amp;amp; footer-- and put them in 3 divs that are stacked on each other, and made the middle one (content) overflow. This is very functional and accomplishes what I wanted the page to do.

HOWEVER

I noticed that because I am using absolute pixel values there are a ton of problems rendering the page across platforms (iPhone for example, smaller laptops).

I want to make the CSS layout based on percentages so that it will render the same on all screens. However, whenever I try to use percentages (for the width, for example) and test my layout by dragging the browser window larger or smaller, there is a problem. The divs are resizing in relation to the browser window, however, the text within them (the word "Bio" or the list in the middle, for example) are not fixed within the div and start to slide around horizontally in relation to the div.

I think there is a smarter way to do this.

What is the solution? Should I use absolute pixel values but just make the 3 images (and divs) smaller? If it's impossible to use percentages for this task, then what is the best pixel size to design for?

Is there a better way to accomplish this layout without splitting the image up into 3 pieces?

Ideally the background image would take up the whole screen, there would be no black margin/background, and all the scrollable content would be in the middle (yellow section) of the image.

Thanks in advance!!


Here is the code:





Yusif!



body
{
background-color:black;
margin-left: 15%;
margin-right: 15%;
}

#Header
{
position: absolute;
width: 798px;
height: 99px;
top: 16px;
background-color: yellow;
background-image: url("images/Header.jpg");
background-repeat:no-repeat;
background-color: black;
color: black;

}

#Content
{
position: absolute;
width: 818px;
height: 554px;
top: 115px;
background-image: url("images/Content.jpg");
background-repeat:no-repeat;
overflow: auto;
background-color: black;
color: black;

}


#Footer
{
position: absolute;
width: 798px;
height: 147px;
top: 668px;
background-color: yellow;
background-image: url("images/BioFooter.jpg");
background-repeat:no-repeat;
background-color: black;
color: black;
}

#Copyright
{
position: absolute;
width: 799px;
height: 21px;
top: 818px;
background-color: black;
color:#c8bf27;

}




&lt;div&gt;

&lt;br&gt;
&lt;br&gt;

&lt;u&gt;BIO&lt;/u&gt;


&lt;/div&gt;


&lt;div&gt;

CONTENT
1&lt;br&gt;

2&lt;br&gt;
3&lt;br&gt;
4&lt;br&gt;
5&lt;br&gt;
6&lt;br&gt;
7&lt;br&gt;
8&lt;br&gt;
9&lt;br&gt;
10&lt;br&gt;
11&lt;br&gt;
12&lt;br&gt;
13&lt;br&gt;
14&lt;br&gt;
15&lt;br&gt;
16&lt;br&gt;
17&lt;br&gt;
18&lt;br&gt;
19&lt;br&gt;
20&lt;br&gt;
21&lt;br&gt;
22&lt;br&gt;
23&lt;br&gt;
24&lt;br&gt;
25&lt;br&gt;
26&lt;br&gt;
27&lt;br&gt;
28&lt;br&gt;
29&lt;br&gt;

&lt;/div&gt;

&lt;div&gt;
© 2011 Yusif!
&lt;/div&gt;

&lt;div&gt;
&lt;/div&gt;






</description>
      <author>refae</author>
      <pubDate>Wed, 21 Sep 2011 21:20:59 GMT</pubDate>
      <comments>https://quomon.com/50244/Need-Help-with-CSS-Page-Layout#comments</comments>
      <category>Websites, html, browsers, css, code, images</category>
    </item>
    <item>
      <guid>https://quomon.com/50023/How-can-i-add-scrollbars-for-adjusting-color-sharpness-etc-in-asp-net-webpage</guid>
      <title>How can i add scrollbars for adjusting color, sharpness etc in asp.net webpage?</title>
      <link>https://quomon.com/50023/How-can-i-add-scrollbars-for-adjusting-color-sharpness-etc-in-asp-net-webpage</link>
      <description>I want to add small scrollbars on page with which i can adjust color or sharpness of any image. at the moment i am looking for the code to simply add those scrollbars. </description>
      <author>baljinder4003</author>
      <pubDate>Wed, 09 Mar 2011 05:08:54 GMT</pubDate>
      <comments>https://quomon.com/50023/How-can-i-add-scrollbars-for-adjusting-color-sharpness-etc-in-asp-net-webpage#comments</comments>
      <category>asp, images, code</category>
    </item>
    <item>
      <guid>https://quomon.com/50016/Convert-hex-string-to-ansi-string-in-C</guid>
      <title>Convert hex string to ansi string in C#</title>
      <link>https://quomon.com/50016/Convert-hex-string-to-ansi-string-in-C</link>
      <description>Basically, I've carved a jpeg file from the Windows 7 thumbcache using C#, and want to save it as a jpeg. The issue I'm having is that I only seem to be able to export the file as unicode/ascii, when it needs to be in ansi (I believe) in order to be properly recognised as an image file.
&lt;br&gt;
&lt;br&gt;I realise this is quite a specific problem, but any thoughts would be appreciated.
&lt;br&gt;
&lt;br&gt;Craig.</description>
      <author>craig26</author>
      <pubDate>Thu, 24 Feb 2011 15:32:50 GMT</pubDate>
      <comments>https://quomon.com/50016/Convert-hex-string-to-ansi-string-in-C#comments</comments>
      <category>windows, images, file, jpeg, data carving</category>
    </item>
    <item>
      <guid>https://quomon.com/52169/can-you-explain-1-small-jpg-point-if-my-image-name-is-1-jpg-</guid>
      <title>can you explain "1-small.jpg" point??? if my image name is 1.jpg!!!</title>
      <link>https://quomon.com/52169/can-you-explain-1-small-jpg-point-if-my-image-name-is-1-jpg-</link>
      <description>
&lt;br&gt;
&amp;lt;br&amp;gt;function CoffeePreview(sel) {
&amp;lt;br&amp;gt;document.CoffeePreview.src = "" + sel.options[sel.selectedIndex].value;
&amp;lt;br&amp;gt;}
&amp;lt;br&amp;gt;function CoffeeShow(sel) {
&amp;lt;br&amp;gt;images = new Array();
&amp;lt;br&amp;gt;images[1] = "1.jpg";
&amp;lt;br&amp;gt;images[2] = "2.jpg";
&amp;lt;br&amp;gt;images[3] = "3.jpg";
&amp;lt;br&amp;gt;images[4] = "4.jpg";
&amp;lt;br&amp;gt;images[5] = "5.jpg";
&amp;lt;br&amp;gt;images[6] = "6.jpg";
&amp;lt;br&amp;gt;window.location.href = images[sel.selectedIndex+1];
&amp;lt;br&amp;gt;}
&amp;lt;br&amp;gt;//  End --&amp;gt;
&amp;lt;br&amp;gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
Image #1
Image #2
Image #3
Image #4
Image #5
Image #6

&lt;br&gt;&lt;p&gt;
&lt;br&gt;&lt;img src="1-small.jpg" width="150" height="113"&gt;
&lt;br&gt;&lt;/p&gt;&lt;p&gt;
&lt;br&gt;
&lt;br&gt;&lt;/p&gt;
&lt;br&gt;
&lt;br&gt;</description>
      <author>ksalzeena27</author>
      <pubDate>Thu, 24 Feb 2011 11:34:23 GMT</pubDate>
      <comments>https://quomon.com/52169/can-you-explain-1-small-jpg-point-if-my-image-name-is-1-jpg-#comments</comments>
      <category>JavaScript, forms, images, Button, script, border</category>
    </item>
    <item>
      <guid>https://quomon.com/52088/ajax-and-php-help</guid>
      <title>ajax and php help..</title>
      <link>https://quomon.com/52088/ajax-and-php-help</link>
      <description>Hi Everyone... please help me to solve this problem....


[img]http://img42.imageshack.us/i/sureshtk.jpg[/img]


I need to display [b][u]my result[/u][/b] in the same page using ajax or xml parsing or php as show this image link....use the seat number:[b]1ox06cs070             to 1ox06cs079 
[/b]
Here is my code :




&lt;table width="70%"&gt;
&lt;tbody&gt;&lt;tr&gt;
&lt;td&gt;
&lt;h1&gt;My page&lt;/h1&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;

[b]

PLEASE PEOPLE HELP ME WITH THIS CODE...[/b]


E-MAIL: [b]suresh.kanthraj@gmail.com
[/b]&lt;table width="70%"&gt;
&lt;tbody&gt;&lt;tr&gt;
&lt;td&gt;
&lt;b&gt;      &lt;/b&gt;
&lt;/td&gt;
&lt;td width="80%"&gt;




Enter the Seat No: 


&lt;/td&gt;
&lt;/tr&gt;

&lt;/tbody&gt;&lt;/table&gt;</description>
      <author>sureshkanthraj</author>
      <pubDate>Mon, 06 Dec 2010 19:08:59 GMT</pubDate>
      <comments>https://quomon.com/52088/ajax-and-php-help#comments</comments>
      <category>html, PHP, images, email, code, Text</category>
    </item>
    <item>
      <guid>https://quomon.com/49847/c-hard-drive-does-not-boot</guid>
      <title>c hard drive does not boot</title>
      <link>https://quomon.com/49847/c-hard-drive-does-not-boot</link>
      <description>hi i am guna pls help me my c harddisk does not boot also not format in booting time{error bad image check sum}with in blue screen but i have install d drive still i have worked my computer any problem so pls tel me what is this error and how to cleared  pls helpppppppppppp</description>
      <author>gunavell92</author>
      <pubDate>Mon, 06 Dec 2010 13:29:06 GMT</pubDate>
      <comments>https://quomon.com/49847/c-hard-drive-does-not-boot#comments</comments>
      <category>computer, Errors, images, Screen, format, install</category>
    </item>
    <item>
      <guid>https://quomon.com/52037/inserting-image-using-netbeans</guid>
      <title>inserting image using netbeans</title>
      <link>https://quomon.com/52037/inserting-image-using-netbeans</link>
      <description>i have a netbean project that called exambank which will make it easier for making question papers. the kind of questions that im making have some graphs thst i need to insert but now im having problems in doing that. will you help out?</description>
      <author>nontombimtumtum6</author>
      <pubDate>Sat, 28 Aug 2010 10:26:10 GMT</pubDate>
      <comments>https://quomon.com/52037/inserting-image-using-netbeans#comments</comments>
      <category>images, Graphs</category>
    </item>
    <item>
      <guid>https://quomon.com/49056/html</guid>
      <title>html</title>
      <link>https://quomon.com/49056/html</link>
      <description>How can create tab image menu? </description>
      <author>sandeepkumar</author>
      <pubDate>Sun, 04 Apr 2010 11:07:29 GMT</pubDate>
      <comments>https://quomon.com/49056/html#comments</comments>
      <category>html, images</category>
    </item>
    <item>
      <guid>https://quomon.com/48885/Undefined-shown-instead-of-image</guid>
      <title>'Undefined' shown instead of image.</title>
      <link>https://quomon.com/48885/Undefined-shown-instead-of-image</link>
      <description>Hi,
&lt;br&gt;
&lt;br&gt;I have a site up and running here 
&lt;br&gt;
&lt;br&gt;&lt;a href="http://www.mikeleworthy.com/index.html" target="_blank" rel="nofollow"&gt;http://www.mikeleworthy.com/index.html&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;and I have a random bg script running on each page using JavaScript. Sometimes though instead of an image the word 'undefined' comes up... How can I eliminate this? If you need to see the JavaScript for randomising then I can post it. The rest of the script is in my source code.
&lt;br&gt;
&lt;br&gt;Hope someone can help,
&lt;br&gt;Mike.</description>
      <author>mikeleworthy</author>
      <pubDate>Mon, 01 Feb 2010 11:32:22 GMT</pubDate>
      <comments>https://quomon.com/48885/Undefined-shown-instead-of-image#comments</comments>
      <category>JavaScript, images, code, script, randomiser, background image</category>
    </item>
    <item>
      <guid>https://quomon.com/48748/imagecreatefromjpeg-add-text-with-a-white-background</guid>
      <title>imagecreatefromjpeg() - add text with a white background?</title>
      <link>https://quomon.com/48748/imagecreatefromjpeg-add-text-with-a-white-background</link>
      <description>I have an jpg image (100x150). Is there any way to write text on this jpeg image but - the text to have a white background?
&lt;br&gt;
&lt;br&gt;The jpeg image has a lot of color and the text does not show up well regardless of what font color I use.
&lt;br&gt;
&lt;br&gt;I have tried using imagecreatefromjpeg() to layer the jpeg on a bigger blank white background jpeg but did not have any luck.</description>
      <author>mayhem30</author>
      <pubDate>Wed, 16 Dec 2009 04:49:31 GMT</pubDate>
      <comments>https://quomon.com/48748/imagecreatefromjpeg-add-text-with-a-white-background#comments</comments>
      <category>images, colors, Text, JPG, jpeg, imagecreatefromjpeg</category>
    </item>
    <item>
      <guid>https://quomon.com/48586/web-designing</guid>
      <title>web designing</title>
      <link>https://quomon.com/48586/web-designing</link>
      <description>How can create in image fading effect in javascript? </description>
      <author>sandeepkumar</author>
      <pubDate>Mon, 24 Aug 2009 08:55:58 GMT</pubDate>
      <comments>https://quomon.com/48586/web-designing#comments</comments>
      <category>images, web, Fading, Designing</category>
    </item>
    <item>
      <guid>https://quomon.com/48468/StretchBlt-is-Stretching-BAckground-text-also</guid>
      <title>StretchBlt() is Stretching BAckground text also</title>
      <link>https://quomon.com/48468/StretchBlt-is-Stretching-BAckground-text-also</link>
      <description>i am using PNg_32 library function to display Transparent PNG images. As StretchPNG() function is not there in PNG_32 , i wrote one function to implement this. But if i try to Stretch PNG image using StretchBlt() API the background lines and texts also gets stretched.......can u plz help</description>
      <author>lijiac020</author>
      <pubDate>Fri, 22 May 2009 09:39:19 GMT</pubDate>
      <comments>https://quomon.com/48468/StretchBlt-is-Stretching-BAckground-text-also#comments</comments>
      <category>images, Text, display, api, lines</category>
    </item>
    <item>
      <guid>https://quomon.com/48195/Image-cannot-open-in-ie6-use-with-image-toolbox</guid>
      <title>Image cannot open in ie6 use with image toolbox?</title>
      <link>https://quomon.com/48195/Image-cannot-open-in-ie6-use-with-image-toolbox</link>
      <description>I am using image toolbox in asp.net and image is not open on browser so pls give me solution?,,,,,</description>
      <author>chaitanyashah30</author>
      <pubDate>Fri, 20 Mar 2009 05:37:39 GMT</pubDate>
      <comments>https://quomon.com/48195/Image-cannot-open-in-ie6-use-with-image-toolbox#comments</comments>
      <category>excel, browsers, images, Yahoo, IE6</category>
    </item>
    <item>
      <guid>https://quomon.com/48172/Shadowbox-js-Cant-get-it-to-work-at-all</guid>
      <title>Shadowbox.js Cant get it to work at all!</title>
      <link>https://quomon.com/48172/Shadowbox-js-Cant-get-it-to-work-at-all</link>
      <description>Hi. I have been looking endlessly to try to get shadowbox.js to work. I have trawled through forums and downloaded endless amounts of code but cant seem to figure it out.
&lt;br&gt;
&lt;br&gt;I've been on the actual site &lt;a href="http://www.mjijackson.com/shadowbox/" target="_blank" rel="nofollow"&gt;http://www.mjijackson.com/shadowbox/&lt;/a&gt; but there is no explanation on how to get it working. There is but for js experts i guess.
&lt;br&gt;
&lt;br&gt;I have looked at source codes of sites to see if can work out whats going on but when i build it and play around it doesn't seem to work.
&lt;br&gt;
&lt;br&gt;i kind of need a step by step guide on how to to implement the code and where to put the code. where the images are called from and placed...it does it on the site above but it's all TOO vague for me i'm afraid.
&lt;br&gt;
&lt;br&gt;i have downloaded the code files from the site above and am ready to go!
&lt;br&gt;
&lt;br&gt;hope someone can help me.
&lt;br&gt;mike.
&lt;br&gt;</description>
      <author>mikeleworthy</author>
      <pubDate>Sat, 14 Mar 2009 11:06:52 GMT</pubDate>
      <comments>https://quomon.com/48172/Shadowbox-js-Cant-get-it-to-work-at-all#comments</comments>
      <category>images, files, code, JS, shadowbox, script, html</category>
    </item>
    <item>
      <guid>https://quomon.com/48167/How-do-i-set-a-Color-Gradient-across-a-table-in-IE</guid>
      <title>How do i set a Color Gradient across a table in IE</title>
      <link>https://quomon.com/48167/How-do-i-set-a-Color-Gradient-across-a-table-in-IE</link>
      <description>Im trying to keep the site as compatable with FF &amp;amp; IE as i can, im currently using in image , and this works a treat in FF but IE  likes to apply the image to each individual cell within the table. is there a way to fix this? or is the short answer just simply "no". </description>
      <author>samd1990</author>
      <pubDate>Fri, 13 Mar 2009 10:57:18 GMT</pubDate>
      <comments>https://quomon.com/48167/How-do-i-set-a-Color-Gradient-across-a-table-in-IE#comments</comments>
      <category>images, colors, Gradient, Cell, Tables, html</category>
    </item>
    <item>
      <guid>https://quomon.com/48166/its-possible-to-perform-file-upload-without-using-file-upload-control</guid>
      <title>its possible to perform file upload without using file upload control?</title>
      <link>https://quomon.com/48166/its-possible-to-perform-file-upload-without-using-file-upload-control</link>
      <description>i want to store images in sqlserver.its possible to perform file upload without using file upload control using asp.net with c#.thankyou.</description>
      <author>priyaravi2008</author>
      <pubDate>Fri, 13 Mar 2009 03:54:49 GMT</pubDate>
      <comments>https://quomon.com/48166/its-possible-to-perform-file-upload-without-using-file-upload-control#comments</comments>
      <category>C#, asp, images, SQLServer, control</category>
    </item>
    <item>
      <guid>https://quomon.com/48143/Can-you-do-any-search-engine-optimization-for-images-in-HTML</guid>
      <title>Can you do any search engine optimization for images in HTML?</title>
      <link>https://quomon.com/48143/Can-you-do-any-search-engine-optimization-for-images-in-HTML</link>
      <description>I am looking for ways to optimize my website for search through image links, and not just through text.  Is there any way for the Google crawler to pick up relevant text through image links as well as text links?</description>
      <author>mary2</author>
      <pubDate>Tue, 10 Mar 2009 16:09:10 GMT</pubDate>
      <comments>https://quomon.com/48143/Can-you-do-any-search-engine-optimization-for-images-in-HTML#comments</comments>
      <category>Websites, html, images, google, Text, Links</category>
    </item>
    <item>
      <guid>https://quomon.com/48052/add-a-border-to-sliding-gallery-in-flash</guid>
      <title>add a border to sliding gallery in flash.</title>
      <link>https://quomon.com/48052/add-a-border-to-sliding-gallery-in-flash</link>
      <description>I have created a sliding gallery in flash that moves back and forth when you rollover it. i suppose it's called a 'scrolling image gallery' i used this tutorial and it's working great
&lt;br&gt;
&lt;br&gt;&lt;a href="http://www.republicofcode.com/tutorials/flash/imagegallery/index.php" target="_blank" rel="nofollow"&gt;http://www.republicofcode.com/tutoria...&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;but cannot find anywhere, through many long sessions on the net, how to add a border around the entire gallery? i can draw one around the gallery on the stage but it doesn't show up when i preview the movie... it's driving me mad!
&lt;br&gt;
&lt;br&gt;any help would be great! or if you need anymore details.</description>
      <author>mikeleworthy</author>
      <pubDate>Wed, 11 Feb 2009 22:33:13 GMT</pubDate>
      <comments>https://quomon.com/48052/add-a-border-to-sliding-gallery-in-flash#comments</comments>
      <category>Flash, code, images</category>
    </item>
    <item>
      <guid>https://quomon.com/47879/About-image-galary-Relatd-to-javascript</guid>
      <title>About image galary .... Relatd to javascript</title>
      <link>https://quomon.com/47879/About-image-galary-Relatd-to-javascript</link>
      <description>Hello Nidhi,
&lt;br&gt;My problem is that i am preparing one galary script ....
&lt;br&gt;using javascript
&lt;br&gt;and i have to make the sliding galary ....
&lt;br&gt;like play pause stop, 
&lt;br&gt;if pause then it should be started in that condition ....
&lt;br&gt;
&lt;br&gt;Can u help me regarding my query ?
&lt;br&gt;</description>
      <author>kaushik</author>
      <pubDate>Fri, 12 Dec 2008 05:37:46 GMT</pubDate>
      <comments>https://quomon.com/47879/About-image-galary-Relatd-to-javascript#comments</comments>
      <category>JavaScript, images</category>
    </item>
    <item>
      <guid>https://quomon.com/47297/hover-gallery</guid>
      <title>hover gallery,</title>
      <link>https://quomon.com/47297/hover-gallery</link>
      <description>ok, my next dilema. a client has asked for a hover gallery. something like this...
&lt;br&gt;
&lt;br&gt;&lt;a href="http://orange.half-life2.com/" target="_blank" rel="nofollow"&gt;http://orange.half-life2.com/&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;however, instead of words it would be small thumbnail to large image on rollover. i have some code but when implementing it into an already made page it messes it up and moves this around. what i'd like to do is make up a template and be able to implement it into any page i need to. a set size gallery within a table cell and be able to change the images easily.
&lt;br&gt;
&lt;br&gt;this is also cool...
&lt;br&gt;
&lt;br&gt;&lt;a href="http://host.sonspring.com/hoverbox/" target="_blank" rel="nofollow"&gt;http://host.sonspring.com/hoverbox/&lt;/a&gt;
&lt;br&gt;
&lt;br&gt;hope someone can assist me with the code and explination. i use dreamweaver and flash but would prefer an one html for now.
&lt;br&gt;mike.  </description>
      <author>mikeleworthy</author>
      <pubDate>Wed, 08 Oct 2008 21:43:08 GMT</pubDate>
      <comments>https://quomon.com/47297/hover-gallery#comments</comments>
      <category>images, html, gallery, hover, rollover, dreamweaver</category>
    </item>
    <item>
      <guid>https://quomon.com/51477/cross-broswer-compibility-question</guid>
      <title>cross broswer compibility question</title>
      <link>https://quomon.com/51477/cross-broswer-compibility-question</link>
      <description>Hi, 
&lt;br&gt;I am using asp.net with c# for coding my pages. I test my applicaiton on ie6, ie7 the desing will display proper manner but i will run same page on firefox it will spread the page. ie the applicaion can see on ie it can not seem on firefox please help me
&lt;br&gt;
&lt;br&gt;Thanks &amp;amp; Regards
&lt;br&gt;Chetan
&lt;br&gt;</description>
      <author>Chetanchopkar</author>
      <pubDate>Fri, 03 Oct 2008 09:57:11 GMT</pubDate>
      <comments>https://quomon.com/51477/cross-broswer-compibility-question#comments</comments>
      <category>browsers, images, information tecnology</category>
    </item>
    <item>
      <guid>https://quomon.com/47215/full-site-in-browser-using-dreamweaver</guid>
      <title>full site in browser using dreamweaver</title>
      <link>https://quomon.com/47215/full-site-in-browser-using-dreamweaver</link>
      <description>thanks for answering my question. there's just one little problem though, when i insert a table into the site there is still a small gap at the top of the page between the top of the table and the underside of the browser. a background image fills the page nicely with the code you gave me but the table still leaves a gap.
&lt;br&gt;
&lt;br&gt;i guess i'm trying to say that i need the table (with all my content in) to be flush with the underside of the browser both left and right sides and the bottom. though not worried to much about the bottom as some pages may be bigger etc.
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;Hope you can help. this site is a godsend!!
&lt;br&gt;(not understanding the point system tho)
&lt;br&gt;Mike.</description>
      <author>mikeleworthy</author>
      <pubDate>Fri, 26 Sep 2008 15:06:24 GMT</pubDate>
      <comments>https://quomon.com/47215/full-site-in-browser-using-dreamweaver#comments</comments>
      <category>browsers, images, html</category>
    </item>
    <item>
      <guid>https://quomon.com/47201/Is-WSQ-Spec-Wavelet-Scalar-Quantization-Fingerprint-Image-Compression-Algorithm-royalty-free</guid>
      <title>Is WSQ Spec(Wavelet Scalar Quantization: Fingerprint Image Compression Algorithm) royalty free?</title>
      <link>https://quomon.com/47201/Is-WSQ-Spec-Wavelet-Scalar-Quantization-Fingerprint-Image-Compression-Algorithm-royalty-free</link>
      <description>The Wavelet Scalar Quantization algorithm (WSQ) is a compression algorithm used for gray-scale fingerprint images. It is based on wavelet theory and has become a standard for the exchange and storage of fingerprint images. WSQ was developed by the FBI, the Los Alamos National Laboratory, and the National Institute of Standards and Technology (NIST).
&lt;br&gt;
&lt;br&gt;Anybody can answer the following questions please?
&lt;br&gt;
&lt;br&gt;1. Is WSQ specification royalty free?
&lt;br&gt;2. FBI certification for WSQ implementation involves any fees/cost?
&lt;br&gt;
&lt;br&gt;</description>
      <author>manisekarant</author>
      <pubDate>Wed, 24 Sep 2008 10:03:19 GMT</pubDate>
      <comments>https://quomon.com/47201/Is-WSQ-Spec-Wavelet-Scalar-Quantization-Fingerprint-Image-Compression-Algorithm-royalty-free#comments</comments>
      <category>images</category>
    </item>
    <item>
      <guid>https://quomon.com/47086/How-do-i-apply-padding-and-bg-image-on-form-select-box</guid>
      <title>How do i apply padding, and bg image on form select box.</title>
      <link>https://quomon.com/47086/How-do-i-apply-padding-and-bg-image-on-form-select-box</link>
      <description>How do i apply padding, and bg image on form select box.</description>
      <author>akash.verma</author>
      <pubDate>Tue, 26 Aug 2008 05:11:41 GMT</pubDate>
      <comments>https://quomon.com/47086/How-do-i-apply-padding-and-bg-image-on-form-select-box#comments</comments>
      <category>images, forms, Websites, html</category>
    </item>
    <item>
      <guid>https://quomon.com/46979/How-can-I-make-my-returning-visitors-see-what-has-been-updated-on-my-site-without-refreshing-it</guid>
      <title>How can I make my returning visitors see what has been updated on my site without refreshing it?</title>
      <link>https://quomon.com/46979/How-can-I-make-my-returning-visitors-see-what-has-been-updated-on-my-site-without-refreshing-it</link>
      <description>I run a small online business and often adding some new info and images but it seems like my visitors can't see what's new without re-freshing every page on my site. Some people don't realize that they have to refresh in order to see what has been updated. Is there a code I can copy and paste into my html page to fix this problem?</description>
      <author>jvolfova</author>
      <pubDate>Mon, 21 Jul 2008 19:50:26 GMT</pubDate>
      <comments>https://quomon.com/46979/How-can-I-make-my-returning-visitors-see-what-has-been-updated-on-my-site-without-refreshing-it#comments</comments>
      <category>images, refresh, html, Web Design, Websites, JavaScript</category>
    </item>
    <item>
      <guid>https://quomon.com/46811/DIIFF-BETWEEN-ASP-Jscript</guid>
      <title>DIIFF BETWEEN ASP &amp; Jscript</title>
      <link>https://quomon.com/46811/DIIFF-BETWEEN-ASP-Jscript</link>
      <description>we have a questionnaire session today hence the need !!!!!!!!!!!!!!!!  related to web technologies
&lt;br&gt;</description>
      <author>rajeshr95</author>
      <pubDate>Tue, 22 Apr 2008 04:55:59 GMT</pubDate>
      <comments>https://quomon.com/46811/DIIFF-BETWEEN-ASP-Jscript#comments</comments>
      <category>information technology, images, forms, colors, browsers, asp.net 2, web development</category>
    </item>
    <item>
      <guid>https://quomon.com/46757/can-i-know-more-about-the-condensation-algorithm-in-simple-terms-</guid>
      <title>can i know more about the condensation algorithm in simple terms...?</title>
      <link>https://quomon.com/46757/can-i-know-more-about-the-condensation-algorithm-in-simple-terms-</link>
      <description>Object tracking,Digital image processing, i would also like to know if there are any projects done using this algorithm so far?</description>
      <author>kamskans</author>
      <pubDate>Tue, 25 Mar 2008 05:09:33 GMT</pubDate>
      <comments>https://quomon.com/46757/can-i-know-more-about-the-condensation-algorithm-in-simple-terms-#comments</comments>
      <category>images, Matlab</category>
    </item>
    <item>
      <guid>https://quomon.com/46055/How-do-I-set-PS7-to-not-open-images-when-I-transfer-canon-CR2-files-from-EOS-viewer-to-Tiffs-jpeg</guid>
      <title>How do I set PS7 to not open images when I transfer canon CR2 files from EOS viewer to Tiffs jpeg?</title>
      <link>https://quomon.com/46055/How-do-I-set-PS7-to-not-open-images-when-I-transfer-canon-CR2-files-from-EOS-viewer-to-Tiffs-jpeg</link>
      <description>It takes way too much time to wait for photoshop to open and display each and every file and really slows down the transfer process. PS 7 will not open my Canon CR2 files, so I use the Canon EOS viewer utilityto transfer files to Tiffs and then open just the ones I want in PS7.  How do I turn the auto open or auto load off and on?  
&lt;br&gt;
&lt;br&gt;How do I turn the darned thing off.  I also notice that Adobe elements does the same thing on my other computer when you open jpgs.  I would rather not have it auto-load</description>
      <author>dcski</author>
      <pubDate>Sun, 28 Oct 2007 18:21:35 GMT</pubDate>
      <comments>https://quomon.com/46055/How-do-I-set-PS7-to-not-open-images-when-I-transfer-canon-CR2-files-from-EOS-viewer-to-Tiffs-jpeg#comments</comments>
      <category>images</category>
    </item>
    <item>
      <guid>https://quomon.com/45675/How-do-I-change-my-header-image-in-a-vBulletin-Forum</guid>
      <title>How do I change my header image in a vBulletin Forum?</title>
      <link>https://quomon.com/45675/How-do-I-change-my-header-image-in-a-vBulletin-Forum</link>
      <description>I have a vBulletin forum but I cant find anywhere in the control panel to change the header image, does anyone know where I would accomplish this?
&lt;br&gt;</description>
      <author>mary2</author>
      <pubDate>Tue, 25 Sep 2007 11:25:40 GMT</pubDate>
      <comments>https://quomon.com/45675/How-do-I-change-my-header-image-in-a-vBulletin-Forum#comments</comments>
      <category>images, vBulletin, forum, Header, Changing Header</category>
    </item>
    <item>
      <guid>https://quomon.com/45276/How-to-create-a-transparent-favicon-ico-image</guid>
      <title>How to create a transparent favicon.ico image?</title>
      <link>https://quomon.com/45276/How-to-create-a-transparent-favicon-ico-image</link>
      <description>I've installed a plugin to Photoshop that permits me to create .ico images, but I can't seem to make them with a transparent background.
&lt;br&gt;How do you do that?</description>
      <author>dustPuppy</author>
      <pubDate>Mon, 16 Jul 2007 16:25:59 GMT</pubDate>
      <comments>https://quomon.com/45276/How-to-create-a-transparent-favicon-ico-image#comments</comments>
      <category>images, Photoshop, favicon</category>
    </item>
    <item>
      <guid>https://quomon.com/44658/Is-it-possible-to-add-a-small-image-into-the-select-option-tag-in-HTML</guid>
      <title>Is it possible to add a small  image into the &lt;select&gt; &lt;option&gt; tag in HTML?</title>
      <link>https://quomon.com/44658/Is-it-possible-to-add-a-small-image-into-the-select-option-tag-in-HTML</link>
      <description>I want to add a small image as selections instead of text, is there a way to accomplish this?</description>
      <author>sbjc23</author>
      <pubDate>Sun, 18 Mar 2007 19:36:18 GMT</pubDate>
      <comments>https://quomon.com/44658/Is-it-possible-to-add-a-small-image-into-the-select-option-tag-in-HTML#comments</comments>
      <category>html, Option Tag, Select Tag, images, Adding Images</category>
    </item>
    <item>
      <guid>https://quomon.com/44611/Why-is-the-link-aligning-to-the-bottom-next-to-an-image</guid>
      <title>Why is the link aligning to the bottom next to an image?</title>
      <link>https://quomon.com/44611/Why-is-the-link-aligning-to-the-bottom-next-to-an-image</link>
      <description>I am creating a page and I have a link that is text right next to an image that I also want to be in the link:
&lt;br&gt;
&lt;br&gt;Example: 
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;&lt;a href="link.html" class="bodybold" rel="nofollow"&gt;Link Text &lt;img src="images/image_1.gif"&gt;&lt;/a&gt; 
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;But when it displays the text is a lot lower than the image is.  Is there a way to have these so they are both centered vertically?
&lt;br&gt;
&lt;br&gt;</description>
      <author>sbjc23</author>
      <pubDate>Wed, 07 Mar 2007 07:46:22 GMT</pubDate>
      <comments>https://quomon.com/44611/Why-is-the-link-aligning-to-the-bottom-next-to-an-image#comments</comments>
      <category>html, css, images, Links, Text</category>
    </item>
    <item>
      <guid>https://quomon.com/44548/How-can-I-center-a-background-image</guid>
      <title>How can I center a background image?</title>
      <link>https://quomon.com/44548/How-can-I-center-a-background-image</link>
      <description>I am trying to create a background image to give a nice effect, but since my site is centered I need the background image to center also.  Is there a way to accomplish that?</description>
      <author>mary2</author>
      <pubDate>Mon, 26 Feb 2007 06:50:11 GMT</pubDate>
      <comments>https://quomon.com/44548/How-can-I-center-a-background-image#comments</comments>
      <category>Background Images, Centering, Center, images, html, css</category>
    </item>
    <item>
      <guid>https://quomon.com/44517/What-s-the-best-way-to-create-a-PDF-document-and-in-what-program</guid>
      <title>What's the best way to create a PDF document and in what program?</title>
      <link>https://quomon.com/44517/What-s-the-best-way-to-create-a-PDF-document-and-in-what-program</link>
      <description>I am looking to create a PDF.  Up to this point, I have been creating it in Illustrator and then moving it into Photoshop to add the images and saving it as a PDF from there.  But, the file size seems much too large.  Doesn anyone know the best process to do this and what a typical page size should be?</description>
      <author>mary2</author>
      <pubDate>Wed, 21 Feb 2007 11:09:25 GMT</pubDate>
      <comments>https://quomon.com/44517/What-s-the-best-way-to-create-a-PDF-document-and-in-what-program#comments</comments>
      <category>pdf, Illustrator, images, Creation, Saving, File Size, Design, Designing, Graphic Design, Photoshop</category>
    </item>
    <item>
      <guid>https://quomon.com/43430/How-do-I-get-rid-of-the-space-underneath-images-in-internet-explorer</guid>
      <title>How do I get rid of the space underneath images in internet explorer?</title>
      <link>https://quomon.com/43430/How-do-I-get-rid-of-the-space-underneath-images-in-internet-explorer</link>
      <description>Every time I add an image in internet explorer, it always leaves a 3 pixel space underneath the image.  It doesnt do this in firefox though.  Why is this and what can be done to fix it?</description>
      <author>sbjc23</author>
      <pubDate>Wed, 03 May 2006 16:32:32 GMT</pubDate>
      <comments>https://quomon.com/43430/How-do-I-get-rid-of-the-space-underneath-images-in-internet-explorer#comments</comments>
      <category>html, Web Design, images, Internet Explorer, internet, web development, pictures, firefox, css</category>
    </item>
  </channel>
</rss>