Fórum

Change the css for all navigations

Ciro XM, modificado 11 Anos atrás.

Change the css for all navigations

New Member Postagens: 3 Data de Entrada: 20/03/13 Postagens Recentes
For sample:

I want change the links color:

a:hover {
color: #00ADEF;
}

But not for one portlet, but for all. How I make this?
thumbnail
Apoorva Prakash, modificado 11 Anos atrás.

RE: Change the css for all navigations

Liferay Master Postagens: 658 Data de Entrada: 15/06/10 Postagens Recentes
Ciro XM:
For sample:

I want change the links color:

a:hover {
color: #00ADEF;
}

But not for one portlet, but for all. How I make this?


Hi Ciro,

You have to create a custom theme for this purpose, see this link.

HTH...

Thanks and Regards,
Apoorva Prakash
Ciro XM, modificado 11 Anos atrás.

RE: Change the css for all navigations

New Member Postagens: 3 Data de Entrada: 20/03/13 Postagens Recentes
A new theme does not seem to be a simple solution, I can edit an existing theme already? (I'll just change some details)
thumbnail
Apoorva Prakash, modificado 11 Anos atrás.

RE: Change the css for all navigations

Liferay Master Postagens: 658 Data de Entrada: 15/06/10 Postagens Recentes
Ciro XM:
A new theme does not seem to be a simple solution, I can edit an existing theme already? (I'll just change some details)


Hello Ciro,

If you create a new custom theme, it imports all css classes at the time when you create WAR, and merge them with files available in _diff, so you just need to put custom.css file in css folder and it will be overridden by itself at the time of build.

Your existing theme, say Classis, is in server, and you cannot deploy it if you don't have its source code. If you have some custom theme, just add the css class and deploy.

HTH.

Thanks and Regards,
Apoorva Prakash
Ciro XM, modificado 11 Anos atrás.

RE: Change the css for all navigations

New Member Postagens: 3 Data de Entrada: 20/03/13 Postagens Recentes
Ok, Thanks Apoorva!
thumbnail
Apoorva Prakash, modificado 11 Anos atrás.

RE: Change the css for all navigations

Liferay Master Postagens: 658 Data de Entrada: 15/06/10 Postagens Recentes
Ciro XM:
Ok, Thanks Apoorva!


Welcome Ciro.