Rolly, Inger, Jo-Ann and any other...

User 187934 Photo


Senior Advisor
20,267 posts
Online Now

On a side note, I was going to ask the same thing.:lol:
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 1948478 Photo


Senior Advisor
1,850 posts

Simon Roadhouse wrote:
Also, as a side note, is there a way I can get the list of colours on this page http://www.johncarrolldesigns.co.uk/new … nates.html to appear like it does, but with out a table. I can't figure out the CSS coding to do that. :(

Thank you


Just use a couple of <div>s instead of the <td>s... ;)
User 122279 Photo


Senior Advisor
14,625 posts
Online Now

Oops, there is was ;) Let's see...
Ha en riktig god dag!
Inger, Norway

My work in progress:
Components for Site Designer and the HTML Editor: https://mock-up.coffeecup.com


User 122279 Photo


Senior Advisor
14,625 posts
Online Now

How about this:

<div class="table">


<div class="td">&bull;White K101/PE<br>
&bull;Pale Cream U564/PE<br>
&bull;Ivory U514/PE<br>
&bull;Sand U515/PE<br>
&bull;Alabaster U104 ST15<br>
&bull;Platinum White Ash W980 ST31<br>
&bull;White Ash D339/W<br>
&bull;Japanese Ash D348/W<br>
&bull;Maple D375/W<br></div>
<div class="td">&bull;Lissa Oak D8925/BS<br>
&bull;Stilo Walnut D387/NT<br>
&bull;French Walnut D726/BS<br>
&bull;Tiepolo Walnut D8953/BS<br>
&bull;Opera Walnut D481/BS<br>
&bull;Mangfall Beech D1639/BS<br>
&bull;Beech D381/W<br>
&bull;Swiss Pear D727/W<br>
&bull;Light Westminster Oak D8932/NT<br>
&bull;Windsor Oak D1929/NT <br></div>

</div>


Or this:

<div class="table">


<div class="td">
<ul>
<li>White K101/PE<br> </li>
<li>Pale Cream U564/PE<br> </li>
<li> Ivory U514/PE<br> </li>
<li> Sand U515/PE<br> </li>
<li> Alabaster U104 ST15<br> </li>
<li> Platinum White Ash W980 ST31<br> </li>
<li> White Ash D339/W<br> </li>
<li> Japanese Ash D348/W<br> </li>
<li> Maple D375/W<br></li>
</ul> </div>
<div class="td">
<ul>
<li>Lissa Oak D8925/BS<br></li>
<li>Stilo Walnut D387/NT<br></li>
<li> French Walnut D726/BS<br></li>
<li> Tiepolo Walnut D8953/BS<br></li>
<li> Opera Walnut D481/BS<br></li>
<li> Mangfall Beech D1639/BS<br></li>
<li> Beech D381/W<br></li>
<li> Swiss Pear D727/W<br></li>
<li> Light Westminster Oak D8932/NT<br></li>
<li> Windsor Oak D1929/NT <br></li>
</ul> </div>

</div>


The css in both cases:

.table {
display: table;
width: 100%;
border-collapse: collapse;
border-spacing: 0;
border: 1px solid red;
}

.td {
display: table-cell;
}


The red border is only there so that you can see the outline of the table div. That line in the css can be deleted. The 'class dot' for table and td have to be there, as this is not an ordinary html table.
Ha en riktig god dag!
Inger, Norway

My work in progress:
Components for Site Designer and the HTML Editor: https://mock-up.coffeecup.com


User 1948478 Photo


Senior Advisor
1,850 posts

We'd make a great team, Inger!
I'll do the quick-and-dirty and you the nitty-gritty... :lol:
User 122279 Photo


Senior Advisor
14,625 posts
Online Now

:lol: :lol: :lol: :cool:
Ha en riktig god dag!
Inger, Norway

My work in progress:
Components for Site Designer and the HTML Editor: https://mock-up.coffeecup.com


User 2210454 Photo


Registered User
231 posts

You two are a brilliant team! Thank you so much! :D I'm sure I will have more questions for you later on! :lol::lol:
Simon,
“If what you’re doing is not your passion, you have nothing to lose.”

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.