remove the link back to the main category view

Phoca Download - download manager
roy
Phoca Newbie
Phoca Newbie
Posts: 7
Joined: 27 Apr 2016, 05:59

remove the link back to the main category view

Post by roy »

Hi team,

anyone can help to advice how to remove the green arrow link which is in the right side of page and link back to the main category view.

To make it clear, I have post the url here, if it is OK.

ei7.com.au/index.php?option=com_phocadownload&view=category&id=5:entrepreneur

would much appreciate if you can provide some suggestion.

Roy :)

I
christine
Phoca Hero
Phoca Hero
Posts: 2857
Joined: 28 Nov 2010, 17:20

Re: remove the link back to the main category view

Post by christine »

Hi Roy,

just "quick and dirty" solution: :wink:
In this CSS: http://ei7.com.au/media/com_phocadownlo ... wnload.css > line 301:

Code: Select all

#phoca-dl-categories-box  a img,
#phoca-dl-category-box a img,
#phoca-dl-file-box a img,
#phoca-dl-download-box a img {
border: none;
}
add: display:none;
I don't know, if this will have any effect to other parameters.

Kind regards, Christine
roy
Phoca Newbie
Phoca Newbie
Posts: 7
Joined: 27 Apr 2016, 05:59

Re: remove the link back to the main category view

Post by roy »

Hi Christine, thanks for the reply. I am quite new to the Joomla platform, I try to look at the templates -->CSS folder, but can not find any file with name phocadonwload css.

can you kindly advice where I can find the phocadownload css file?

Much appreciated..

Roy
christine
Phoca Hero
Phoca Hero
Posts: 2857
Joined: 28 Nov 2010, 17:20

Re: remove the link back to the main category view

Post by christine »

Hi Roy,

You have following CSS files:
<link rel="stylesheet" href="/media/com_phocadownload/css/main/phocadownload.css" type="text/css" />
<link rel="stylesheet" href="/media/com_phocadownload/css/main/rating.css" type="text/css" />
<link rel="stylesheet" href="/media/com_phocadownload/css/custom/default.css" type="text/css" />
<link rel="stylesheet" href="/media/system/css/modal.css" type="text/css" />
<link rel="stylesheet" href="templates/protostar/css/template.css" type="text/css" />

So, to make it easier, just add below codes at the end of your template.css:

Code: Select all

#phoca-dl-categories-box  a img,
#phoca-dl-category-box a img,
#phoca-dl-file-box a img,
#phoca-dl-download-box a img {
border: none;
display:none;}
and/or add last line to: .../media/com_phocadownload/css/main/rating.css > see e.g. via FTP.
Again: I don't know, if this will have any effect to other functions, as with: "display:none"; you can't display main category view.

In addition, as you wrote, you are New to Joomla:
Make a template copy of your Protostar, otherwise all changes will be overwritten after Core-Update.
More infos: http://bj.zemplate.com/protostar-respon ... omla-3-4-0
see under: "Options for keeping your custom changes to the Protostar template"

I'm missing: user.css (it's new to Protostar). Latest version of Joomla is: 3.5.1

Kind regards, Christine
roy
Phoca Newbie
Phoca Newbie
Posts: 7
Joined: 27 Apr 2016, 05:59

Re: remove the link back to the main category view

Post by roy »

Hi Christine, thanks for the quick reply. I have managed to update all the css file via FTP connection. but the problem still persists

this is what I have done, let me know if there is any problem.

in the following file,
/media/com_phocadownload/css/main/phocadownload.css"
line 301 I have added the:
display: none; }


in following 4 css files,
/media/com_phocadownload/css/main/rating.css"
/media/com_phocadownload/css/custom/default.css"
/media/system/css/modal.css"
/templates/protostar/css/template.css"


I have added the following line to the end of the file.
#phoca-dl-categories-box a img,
#phoca-dl-category-box a img,
#phoca-dl-file-box a img,
#phoca-dl-download-box a img {
border: none;
display: none;
}

is any problem here? Much appreciated if you can provide me a bit more feedback.

Roy
christine
Phoca Hero
Phoca Hero
Posts: 2857
Joined: 28 Nov 2010, 17:20

Re: remove the link back to the main category view

Post by christine »

Hi Roy,
but the problem still persists
No, it's gone :-) your: "the green arrow link which is in the right side of page" > is removed now. Clear your browser/cache.

To put the code to: template.css was OK. You set the coded to all CSS :wink:
Nevertheless, now you know, which CSS files you have. This was just an additional information in previous post.

Kind regards, Christine
roy
Phoca Newbie
Phoca Newbie
Posts: 7
Joined: 27 Apr 2016, 05:59

Re: remove the link back to the main category view

Post by roy »

Hi Christine, you are right, it has gone.... :o this is exactly what I want...

thank you very much for the help and I much appreciate your support and patience.

Cheers :twisted:

Roy :D
christine
Phoca Hero
Phoca Hero
Posts: 2857
Joined: 28 Nov 2010, 17:20

Re: remove the link back to the main category view

Post by christine »

Hi Roy,

thats' fine :) Thank you for your information.
Kind regards, Christine
Post Reply