473,804 Members | 2,101 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Multiple columns in UL

Is it possible?
TIA

Jul 20 '05 #1
16 6902
"lostinspac e" ...
"sub: Multiple columns in UL"
| Is it possible?

Is it possible you could repeat
the subject in the body?

Some readers would cut off the
subject, meaning that someone
who actually _knows_ the answer
to your qn.* might reply.

* I do not.

--
Andrew Thompson
* http://www.PhySci.org/ PhySci software suite
* http://www.1point1C.org/ 1.1C - Superluminal!
* http://www.AThompson.info/andrew/ personal site
Jul 20 '05 #2
lostinspace <lo*********@12 3-universe.com> wrote:
Is it possible?
TIA


Sounds like a table. Is the data tabular? A URL?
--
Michael Wilcox
mjwilco at yahoo dot com
Essential Tools for the Web Developer - http://mikewilcox.t35.com
Jul 20 '05 #3
Many thanks Andrew and Michael.

No url's from me Michael. All the URL's do is bring undesired traffic of
example, email spiders, attempted script hackers, log spammers and any other
kind of undesired traffic you coming from visitors who have no interest in
the content of my websites nor do these visitor intend to provide any
benefit to my websites.
Their only motive is to view what has been discussed here and not
necessarily the solution of the question asked.

The particular page was designed more than four years ago. The page is
primarily various columns of URL's divided into multiple tables. Each table
having a heading.
Tables is not the correct method.
I'm not inclined to make additional pages of this page. This page is a
hodge-podge of links which do not fit into the other categories of this
website. The links however are related to the general content subject of the
website.

I'm looking for a presentation which will view in the same manner as these
table, however not be tables, rather a form of CSS.
Lines came to mind, ONLY if multiple columns would work.

If not? It's no big deal.
This page is not a high priority and I can take my time finding a solution.

Thanks again for you help.
Jul 20 '05 #4
On Sat, 24 Jan 2004 04:08:19 GMT, lostinspace
<lo*********@12 3-universe.com> wrote:

The particular page was designed more than four years ago. The page is
primarily various columns of URL's divided into multiple tables. Each
table
having a heading.
Tables is not the correct method.
I'm not inclined to make additional pages of this page. This page is a
hodge-podge of links which do not fit into the other categories of this
website. The links however are related to the general content subject of
the
website.


If I get you right, you want to have the UL's next to each other, like one
on the left, one in the middle, one on the right? And then that continues
down the page?

Try this CSS;

..list {
float: left;
width: 20em;
}

Insert whatever uniform width you think works. Markup is:

<div class="list">
<ul>
....
</ul>
</div>

.... and so on. The next element after the ul's should be styled clear:
left.

What will happen is the lists will look normal, but the second one will
start to the right of the last one, and so on. When there's no more room
the next list wraps to the left again, below the others unless the
leftmost list is really long. Try it and see if you like the effect.
Jul 20 '05 #5
Many thanks Neal.
Jul 20 '05 #6
In article lostinspace wrote:
Many thanks Andrew and Michael.

No url's from me Michael. All the URL's do is bring undesired traffic of
example, email spiders, attempted script hackers, log spammers and any other
kind of undesired traffic you coming from visitors who have no interest in
the content of my websites nor do these visitor intend to provide any
benefit to my websites.
Their only motive is to view what has been discussed here and not
necessarily the solution of the question asked.


So don't be surprised nobody answers you ever again.

--
Lauri Raittila <http://www.iki.fi/lr> <http://www.iki.fi/zwak/fonts>
Saapi lähettää meiliä, jos aihe ei liity ryhmään, tai on yksityinen
tjsp., mutta älä lähetä samaa viestiä meilitse ja ryhmään.

Jul 20 '05 #7
In article Neal wrote:
On Sat, 24 Jan 2004 04:08:19 GMT, lostinspace
<lo*********@12 3-universe.com> wrote: If I get you right, you want to have the UL's next to each other, like one
on the left, one in the middle, one on the right? And then that continues
down the page?
So, columned list is not even needed. URL would have told it.
Try this CSS;

.list {
float: left;
width: 20em;
}

Insert whatever uniform width you think works. Markup is:

<div class="list">
<ul>
...
</ul>
</div>

... and so on. The next element after the ul's should be styled clear:
left.
Of course, that div is only needed to simpify CSS.
What will happen is the lists will look normal, but the second one will
start to the right of the last one, and so on. When there's no more room
the next list wraps to the left again, below the others unless the
leftmost list is really long. Try it and see if you like the effect.


Of course, it has downsides, if there is lots of lists, and they are
different heights.
--
Lauri Raittila <http://www.iki.fi/lr> <http://www.iki.fi/zwak/fonts>
Saapi lähettää meiliä, jos aihe ei liity ryhmään, tai on yksityinen
tjsp., mutta älä lähetä samaa viestiä meilitse ja ryhmään.

Jul 20 '05 #8
On Sat, 24 Jan 2004 11:25:36 +0200, Lauri Raittila
<la***@raittila .cjb.net> wrote:
In article Neal wrote:

<div class="list">
<ul>
...
</ul>
</div>

... and so on. The next element after the ul's should be styled clear:
left.


Of course, that div is only needed to simpify CSS.


Actually, I tested floating the ul's in IE6 and it had no effect, which I
found odd. I added the divs and floated them after trying to float the
ul's. Any ideas why floating the ul's themselves failed?
What will happen is the lists will look normal, but the second one will
start to the right of the last one, and so on. When there's no more room
the next list wraps to the left again, below the others unless the
leftmost list is really long. Try it and see if you like the effect.


Of course, it has downsides, if there is lots of lists, and they are
different heights.


If there's wide variance, yes. If the lists are all relatively short and
not far from the same length, even if a float doesn't make it back to the
left side the effect is kinda cool. If these are truly unassociated lists
of "extras", layout might be acceptable.
Jul 20 '05 #9
----- Original Message -----
From: "Lauri Raittila" <>
Newsgroups: comp.infosystem s.www.authoring.stylesheets
Sent: Saturday, January 24, 2004 4:22 AM
Subject: Re: Multiple columns in UL

In article lostinspace wrote:
Many thanks Andrew and Michael.

No url's from me Michael. All the URL's do is bring undesired traffic of
example, email spiders, attempted script hackers, log spammers and any other kind of undesired traffic you coming from visitors who have no interest in the content of my websites nor do these visitor intend to provide any
benefit to my websites.
Their only motive is to view what has been discussed here and not
necessarily the solution of the question asked.


So don't be surprised nobody answers you ever again.

--
Lauri Raittila <

Lauri,
Pages of URL's from my websites wouldn't do you personally (.de,
213.) any good.
You couldn't view them except by creative methods.
Jul 20 '05 #10

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

Similar topics

1
7390
by: Nikola Pecigos | last post by:
Hi, I have the following problem: We have an Oracle 9.2 with one table "document" which contains a path to the filesystem. If I want to index these files (HTML, PDF, World, Excel, etc.), I have to use the datastore type "FILE_DATASTORE". Another table "lng_text" stores the titles and descriptions for multiple languages for each row in table "document".
4
6778
by: Bob Hotschins | last post by:
I've joined several columns from several tables, and I would like to perform a relevance match against these multiple columns. It looks something like this: SELECT * FROM table1 LEFT JOIN column1 ON table2.column1 LEFT JOIN column 2 ON table3.column1 WHERE MATCH ( table2.column1, table3.column1)
6
5634
by: Dennis | last post by:
In CSS3 it looks like we'll have multiple column flowing of text (newspaper style) in which the number of columns can be determined automatically given the available horizontal space. http://www.w3.org/TR/css3-multicol/ Until then, what's the current best practice for achieving the same effect? Or is it just not possible yet? Thanks ... Dennis
7
7701
by: Billy Jacobs | last post by:
I am using a datagrid to display some data. I need to create 2 header rows for this grid with columns of varying spans. In html it would be the following. <Table> <tr> <td colspan=8>Official Impact Summary</td> </tr> <tr> <td colspan=2></td>
4
5372
by: carl.barrett | last post by:
Hi, I have a list box that displays 2 columns. Behind it sits a query with five columns. These are Column1 (DOB), column2 (a concatenated string of Surname Forname, Title), Column3 (Surname), column4 (Forename) and column5 (title). Columns 3,4 and 5 are not shown in the list box only the first two. DOB Name: &" "&&", "&
5
3538
by: Lie | last post by:
Hi all, I have problem in getting selectedindex of multiple listbox selection in a datagrid. I have a listbox with multiple selection mode inside datagrid. In Edit mode, I need to get back all selected items of that listbox and display it. can anyone help? Thanks
2
24773
by: BF | last post by:
Hi, I have some tables where I import data in, lots of field have gotten a NULL value which the application can not handle. Now can I replace each NULL value with '' in a columns with: update <tableset = '' where IS NULL But because there are lots of columns this is pretty much work, also there are multiple tables.
7
15666
by: =?Utf-8?B?TG9zdEluTUQ=?= | last post by:
Hi All :) I'm converting VB6 using True DBGrid Pro 8.0 to VB2005 using DataGridView. True DBGrid has a MultipleLines property that controls whether individual records span multiple lines. Is there an equivalent property for the DataGridView? I have searched, but have not found one. I would like the user to be able to see all the columns of the table on one screen - thus eliminating the need to use the horizontal scroll bar to view...
2
10513
by: ray well | last post by:
i need to display 2 columns of data in a list box. how would i set this up IN CODE. say my table is tblNames, and i have 2 fields, FirstName, LastName, and want the data to show up in 2 columns, LastName, followed by FirstName normally i would say ListBox1.DataSource = DataSet1.Tables("tblNames")
3
20847
by: Will | last post by:
Can someone help with code to delete multiple columns from an excel spreadsheet? I know which columns I need to delete. The code below will delete a single column but I'm not sure how to delete multiple columns. I'm tried experimenting with Dim rg As Excel.Range = xlSheet.Columns("B, D, G, K, L") but no joy. Thanks in advance Dim xlApp As Excel.Application Dim xlBook As Excel.Workbook Dim xlSheet As Excel.Worksheet
0
9714
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
9594
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
10350
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10351
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10096
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9174
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...
0
6866
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5534
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5673
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.