Problem description

Phoca Download - download manager
T-Cyclo
Phoca Newbie
Phoca Newbie
Posts: 2
Joined: 06 Sep 2011, 19:40

Problem description

Post by T-Cyclo »

Hello,
I installed the update to 2.0.0 by Phoca Download one for joomla 1.7.
With version 2.1.0 and 2.1.1 by tonight and I'm left with a problem does not exist before.
The display of the descriptions is not shifted to the right in the overlib and Download, (as an example: the number of downloads can be found under the word "Download" instead of being shifted to the right.

V 2.0
Image

V2.1.1
Image


Thank you for your help
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 49144
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Problem description

Post by Jan »

Hi, this is because tables were changed to divs, in such case (some of the title is long), just set the width in CSS to some higher value:

Code: Select all

#phoca-dl-category-box .pd-filesize-txt,
#phoca-dl-file-box  .pd-filesize-txt,
#phoca-dl-category-box .pd-version-txt,
#phoca-dl-file-box  .pd-version-txt,
#phoca-dl-category-box .pd-license-txt,
#phoca-dl-file-box  .pd-license-txt,
#phoca-dl-category-box .pd-author-txt,
#phoca-dl-file-box .pd-author-txt,
#phoca-dl-category-box .pd-email-txt,
#phoca-dl-file-box .pd-email-txt,
#phoca-dl-category-box .pd-date-txt,
#phoca-dl-file-box  .pd-date-txt,
#phoca-dl-category-box .pd-downloads-txt,
#phoca-dl-file-box  .pd-downloads-txt{
	font-weight: bold;
	clear:left;
	margin:5px 0;
	float:left;
	width: 100px;
}
set the width to some higher value.

Jan
If you find Phoca extensions useful, please support the project
T-Cyclo
Phoca Newbie
Phoca Newbie
Posts: 2
Joined: 06 Sep 2011, 19:40

Re: Problem description

Post by T-Cyclo »

Hi,
Thank you it works fine now.
Another thing: How to reduce the height below the button "Details" and "Download (part of file)

See here:

http://www.t-cyclo.com/index.php/fr/par ... -vcmb-8h00

Cordially
Titi
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 49144
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Problem description

Post by Jan »

Hi, there can be a lot of ways:

- in CSS - to add to the blocks below display:none rules

- or to remove them in the code directly or in the layout

Jan
If you find Phoca extensions useful, please support the project
Post Reply