All,
I have installed phoca download v3.0.6.zip but I didn't succeed make it looks like the one seen in demo site. [https://www.phoca.cz/download].
I have seached here in this forum but I didn't got the solution. Please help.
Set Phoca Dowload resemble demo in Joomla 3.3
-
- Phoca Newbie
- Posts: 3
- Joined: 24 Feb 2015, 15:28
- Jan
- Phoca Hero
- Posts: 48566
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Set Phoca Dowload resemble demo in Joomla 3.3
Hi, you can set the design per css:
See: https://www.phoca.cz/joomla3demo/phoca-download-demo
There is no borders around the box and no shadow, but you can just add them per CSS:
This will do a bordered box with shadow, you can add padding or margin too.
Jan
See: https://www.phoca.cz/joomla3demo/phoca-download-demo
There is no borders around the box and no shadow, but you can just add them per CSS:
Code: Select all
.pd-categoriesbox {
border: 1px solid #ccc;
-webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
-moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
}
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 3
- Joined: 24 Feb 2015, 15:28
Re: Set Phoca Dowload resemble demo in Joomla 3.3
Thanks for your reply.
I put the CSS in Default.css and it works fine. But the category title (header) does not have its own box. please assist.
I need it to looks exactly as the one seen in demo site https://www.phoca.cz/download.
If I will get all the settings it will will be much better.
I put the CSS in Default.css and it works fine. But the category title (header) does not have its own box. please assist.
I need it to looks exactly as the one seen in demo site https://www.phoca.cz/download.
If I will get all the settings it will will be much better.
- Jan
- Phoca Hero
- Posts: 48566
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Set Phoca Dowload resemble demo in Joomla 3.3
Hi, don't add customized code to default.css file as such is overwritten when upgrading. Create new, e.g. custom.css
The title is just:
and margin or padding you need to set by your needs.
Jan
The title is just:
Code: Select all
.pd-title {
background: #FAFAFA;
border: 1px solid #e9e9e9;
}
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 3
- Joined: 24 Feb 2015, 15:28
Re: Set Phoca Dowload resemble demo in Joomla 3.3
Thanks very much. It works perfectly.
- Jan
- Phoca Hero
- Posts: 48566
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Set Phoca Dowload resemble demo in Joomla 3.3
Ok
If you find Phoca extensions useful, please support the project