473,654 Members | 3,308 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

arranging thumbnails by div/css only question

Hi All,

I'm trying to achieve an "ideal" of arranging the thumbnails
on one of my sites using only styles and divs, rather than a
table. I'm well practised with Divs etc, but a solution that
works properly eludes me here. In particular there are two problems..

1). There are graphical glitches in both IE and Firefox/opera, some of
the time.
2). The thumbnails are not centrally aligned and even wrapping a div
align center
around them doesn't help. Shrinking the outer window helps in FF for
screws up
in IE.

The URL in question is www.galaxyarcade.co.uk and the thumbnails are
those which contain the game images and title/links. Any suggestions
greatly appreciated.

Thanks

Michael.

Jun 2 '06 #1
2 1852
jim

michael-
I created a solution which has now been contaminated from attempts to
change it. basically it uses li tags and anchor tags:

<div id="imholder
<ul
<li>
<img>
(a href>linktext</a)
</li>
<li>
<img>
(a href>linktext</a)
</li>
<li>
<img>
(a href>linktext</a)
</li>
</ul
</div>

Worked great in MSIE but then i had to go look in ffox and it was a
complete mess! uugh! The problem in ffox i was having was trying with
css to clear the image and make the anchor tag text sit underneath the
image as the linking caption. the solution did work and was expandable
in the parent div (keeping it centered) as the page expanded in
width.... but that was msie only.

Hopefully this gives you some ideas to work with and perhaps figure out
where i went wrong.

Jun 4 '06 #2
Hi Jim,

OK, thanks. I'll have a go with that.

Regards

Michael.
jim wrote:
michael-
I created a solution which has now been contaminated from attempts to
change it. basically it uses li tags and anchor tags:

<div id="imholder
<ul
<li>
<img>
(a href>linktext</a)
</li>
<li>
<img>
(a href>linktext</a)
</li>
<li>
<img>
(a href>linktext</a)
</li>
</ul
</div>

Worked great in MSIE but then i had to go look in ffox and it was a
complete mess! uugh! The problem in ffox i was having was trying with
css to clear the image and make the anchor tag text sit underneath the
image as the linking caption. the solution did work and was expandable
in the parent div (keeping it centered) as the page expanded in
width.... but that was msie only.

Hopefully this gives you some ideas to work with and perhaps figure out
where i went wrong.


Jun 5 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
3665
by: Ken | last post by:
I am in the process of designing my first web-site, and am having a problem with my picture gallery. My thumbnails are all different sizes, I would like them to be one size. The manual does not address this situation. Where did I go wrong?
3
2205
by: Ironside | last post by:
Can someone give me a basic script example for arranging thumbnails on a page. I have always put them in tables that CSS is obviously better. Also, I like to put writing underneath the thumbnails as well, how do I get around that? Thanks in advance
4
2722
by: Rednelle | last post by:
Greetings all, As a newbie, using Access 2000, I would appreciate advice on the best way to include pictures. I have developed a 'Home Inventory' database which can include jpeg thumbnails of my items and I can review things at anytime - on the desktop where I created all this - no problem so far. I networked the mdb file (only) across to my laptop and found the pictures don't show. So I guess my database table is only storing links to
2
3195
by: anonymous | last post by:
the dotnet OpenFileDialog brings up a window that looks similar to a File Explorer window, and indeed depending on some user settings may list files in a details view, thumbnails view etc. Is there any way to guarantee that the dialog comes up in a particular state-- for instance showing thumbnails? a similar question would be how to control the list of folders that appear on the bar on the left of the dialog
2
3929
by: Keith Smith | last post by:
How can I have a box (maybe a picture box or a panel or something?) that will display all of the contents of a particular folder and show the picture files as thumbnails along with the name of the file right below them? I then need to be able to drag each item onto another picture box (or something similar) where the picture will be displayed. How can I accomplish this? I have c#
8
3192
by: Fabricio Sperandio | last post by:
Hi everyone, I am trying to generate some thumbnails using System.Drawing.Image Class. Actually the GetThumnailImage method. The question is: How can I get a better thumbnail picture? I mean, when the original size is big, for example, 800x600 and I generate a small picture (160x120) the quality is terrible for a jpeg and even orse for a gif. How can I get some better images? There is another class? There is some resolution propertie I...
6
4744
by: Rich | last post by:
Hello, I want to simulate the dynamic thumbnail display of Windows Explorer (winxp) on a form or pannel container. If I place a picture box on my container form/pannel and dimension it to the size of a thumbnail and set the sizemode to Stretch -- I get one thumbnail. I want to retrieve all the picture files (jpg, bmp) in a directory into an array list and then display this list as thumbnails on my form dynamically. So my question is...
2
2065
by: Krustov | last post by:
The question of how to create thumbnails with clickable links gets asked on this newsgroup every so often - like clock work . Just really posing this script here for google to archive it & so users can be pointed to it in the future via a link to google groups . <html> <head>
5
1985
by: JJ | last post by:
I have a gallery-like application. (The gallery will be actually presented in Flash, but the management (cms) of the images will be in asp.net. ) My question is, is it ok to create Thumbnail images on the fly by resizing the original sending it to the output stream (i.e. Response.ContentType = "image/jpeg"; Response.BinaryWrite(imageContent) ), or best to actually save the thumbnails to disk. Would this method result in a much slower...
0
8379
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8294
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8816
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
7309
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6162
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4297
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2719
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1924
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1597
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.