Page 1 of 1

css phocadownload

Posted: 15 Feb 2012, 01:42
by questionary
1.- The buttons do not display correctly in Internet Explorer 6. I mentioned this already.
The problem is as follows:
Image: components / com_phocadownload / assets / images / btn.png
has 32 bits colors.

2.- In many browsers, the overlay box is not displayed correctly.
current code:

Code: Select all

...
<div class="pd-title">My example file v1.1.2</div>
<div class="pd-filesize-txt">File Size:</div>
<div class="pd-fl-m">72.84 kB</div>
<div class="pd-date-txt">Date:</div>
<div class="pd-fl-m">January 20, 2012</div>
...
Why not use a table?
Or:
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>

Re: css phocadownload

Posted: 15 Feb 2012, 23:47
by Jan
Hi,

1) it is not possible to limit all other browsers because of some obsolete browser (over 10 years !!! old software) which does not display 32 bits colors :-( (Phoca supported IE6 very long time, which was very problematic, e.g. because of using PNG 8 images or making many different conditional confusing comments, many different CSS files, etc. :-( ) ... But the same as by 2), custom css can be used to customize the site to fully support IE6

2) tables were used in previous version (I myself still thinking about tables, tables are not "in" but they still display content the best way in all possible screens), but they have some limits. You can set many options, which items will be displayed in list of files - and in such case, tables are limiting this options :-( :-( ... Counting columns and rows for more that hundreds differnt combinations is really difficult, this is why float boxes and CSS is used, but of course, Phoca Download uses MVC, so it can be easily overriden by your created template.

Jan