phocadownload hr

Phoca Download - download manager
koif
Phoca Newbie
Phoca Newbie
Posts: 9
Joined: 25 Mar 2009, 04:32

phocadownload hr

Post by koif »

Hi,

I was wondering, when you add a new file it will have a horizontal line to separate the next file. How can i modify so that when i add a new text entry it will also add the hr rule? Which .php do i need to edit? Thanks
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 48739
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: phocadownload hr

Post by Jan »

Hi, you can add it via CSS, so find the class for file and add the same rule for text

e.g.:
components\com_phocadownload\assets\phocadownload-blue.css

Code: Select all

#phoca-dl-category-box table tr td.pdfile {
	border-collapse:collapse;
	border-bottom:1px dotted #cccccc;
	padding-top:15px;
	padding-bottom:15px;
}

Code: Select all

#phoca-dl-category-box table tr td.textonly {
	border-collapse:	collapse;
	border-bottom:		0px;
	padding-top:		15px;
	padding-bottom:		15px;
}
add the : border-bottom:1px dotted #cccccc; into textonly class

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