Page 1 of 1

phocadownload hr

Posted: 15 Apr 2009, 08:18
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

Re: phocadownload hr

Posted: 15 Apr 2009, 15:51
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