[css-d] td height

2006-06-01 Thread Anastasios Angelidis
Not sure this is a css question but hey...

Using link below...
http://ads.infected-rhythms.com/shop/index.php?categoryID=84

In firefox the right hand boxes size to fit the content.. You will See 
there ie one bottom box that is left empty. If the main content 
stretches only that last bottom box changes height. this is the 
behaviour I want. In explorer the boxes on the right are evenly stretched.

For positionioning I'm using a table...

Thanks
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Table and inheritance?

2006-05-10 Thread Anastasios Angelidis
So what you are saying is that I'm probably missing a closing tag 
somewhere on one of the tables?

That sux! it's a 3rd party product that uses smarty templates! I guess i 
have to figure out where the culprit is...

Anastasios Angelidis wrote:

I have my classes defined as below...

I then decorate my table like so table class=thinOrangeBorder

The problem is when I add another table with that table it inherits the 
css regardless if the class is set or not and I do not want it to. What 
is the issue?

Thanks

table.thinOrangeBorder
{
border-width: 0px;
border-spacing: 2px;
background-color: white;
}

table.thinOrangeBorder th
{
border-width: 1px;
padding: 0px;
border-style: solid;
border-color: #F26F31;
background-color: white;
}

table.thinOrangeBorder td
{
border-width: 1px;
padding: 0px;
border-style: solid;
border-color: #F26F31;
background-color: white;
}
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

  


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Table and inheritance?

2006-05-10 Thread Anastasios Angelidis
That wont work I can't put border-style: none; That would get rid of the 
thing orange border I want to create!

Rowspans? I can't. There is one main index template and the rest are all 
injected. I guess I could go correct the 50 other templates :P

Or I can just do it the plain old ugly way, by wrapping tables around 
table without css...


Gilles DEMARTY wrote:

Hi anastasios

  

The problem is when I add another table with that table it inherits the
css regardless if the class is set or not and I do not want it to. What
is the issue?



a workaround shoud be to add inner table border canceling:
/* a th of a table inside a table */
table.thinOrangeBorder table th
{
   border-style: none;
}

/* a td of a table inside a table */
table.thinOrangeBorder table td
{
   border-style: none;
}

  

So what you are saying is that I'm probably missing a closing tag
somewhere on one of the tables?


I don't think so, i think what david is saying is that having a table
inside a table can be avoided by using colspans and rowspans.

my $.02

Gilles
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

  


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Table and inheritance?

2006-05-09 Thread Anastasios Angelidis
I have my classes defined as below...

I then decorate my table like so table class=thinOrangeBorder

The problem is when I add another table with that table it inherits the 
css regardless if the class is set or not and I do not want it to. What 
is the issue?

Thanks

table.thinOrangeBorder
{
border-width: 0px;
border-spacing: 2px;
background-color: white;
}

table.thinOrangeBorder th
{
border-width: 1px;
padding: 0px;
border-style: solid;
border-color: #F26F31;
background-color: white;
}

table.thinOrangeBorder td
{
border-width: 1px;
padding: 0px;
border-style: solid;
border-color: #F26F31;
background-color: white;
}
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Overiding text size.

2006-01-16 Thread Anastasios Angelidis
When the size of test is set through a style sheet it canot be overiden 
by the browser's setting or is there a way?
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] database tabular data

2005-12-12 Thread Anastasios Angelidis
Pringle, Ron wrote:

How do I layout css div's to display multi columm tablular 
data from a database. Up until now I've used tables within an 
asp loop, with tr/tr or each row and td/td for each column.


Ideas for a css layout would really help.

Regards
Pete



Pete-

Your previous approach works just fine. Tabular data should be formatted
using tables. Just leave the styling bits out and use CSS for those.

Regards,
Ron

  

Yeah trying to recreate tabular data with DIV is redundant. You will end 
up using as many tags.

The table way...
table
tr
td/td
td/td
/tr
/table

The DIV way...
div id=tabular_container
div id=row
div id=column/div
div id=column/div
/div
/div

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

  


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] 100% height?

2005-09-25 Thread Anastasios Angelidis
Hi I mamanged to get 100% working in explorer but not in Mozilla. Is 
this something really supported in general?


You can see the example here: http://www.mamothblue.com

Thanks
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Layout issue.

2005-09-19 Thread Anastasios Angelidis

I'm having some layout issues possibly...

http://infected.dynu.com:82/infected/index.html
http://infected.dynu.com:82/infected/style.css

If you look at the above link, I would like to have the right hand side 
orange column match the same height as the left gray column.


I tried adding both those columns within another container that is 
orange. But when I add another div within the orange container it 
becomes white!


Any suggestions?

Thanks
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/