Foros de discusión

How can i remove the liferay logo and company name

thumbnail
Ziggy R, modificado hace 14 años.

How can i remove the liferay logo and company name

Expert Mensajes: 293 Fecha de incorporación: 8/06/08 Mensajes recientes
How do i remove the liferay logo on the classic theme (liferay.ico) and the company name text as well?
I know it can be changed from controlpanel>settings>displaysettings but this setting only allow changing the logo. I want to completely remove it i.e. not display.

any clues?

--
Ta
thumbnail
Mazhar Anwar, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

New Member Mensajes: 3 Fecha de incorporación: 22/06/07 Mensajes recientes
By changing the following property in portal.properties/portal-ext.properties file with new icon .ico file for your theme. Make sure the changed icon is present in your theme's /images folder.

#
# Set the theme's shorcut icon.
#
theme.shortcut.icon=liferay.ico

and company name can be changed from enterprise admin portlet, Setting tab.
It will change the company name for all the communities.


Hope it will help emoticon

Mazhar
thumbnail
Ziggy R, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

Expert Mensajes: 293 Fecha de incorporación: 8/06/08 Mensajes recientes
Hi Mazhar,

I didnt want to change the logo to a different logo. What i wanted to do is remove the logo completely from the theme.

Thank
thumbnail
Parul Seth, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

Junior Member Mensajes: 83 Fecha de incorporación: 18/12/08 Mensajes recientes
Hi Ziggy

For removing the logo from the theme you need to modify portal_normal.vm inside the templates folder of your theme:

To do so replace display:block with display:none in the following code :
#if ($company_logo != "")
		<style type="text/css">
			/* <![CDATA[ */
				#banner .logo a {
					background: url($company_logo) no-repeat;
					display: block;
					font-size: 0;
					height: ${company_logo_height}px;
					text-indent: -9999em;
					width: ${company_logo_width}px;
				}

				#ie6_png_fix()
			/* ]]> */
		</style>
	#end


Also you can remove the following code:

<h1 class="logo">
			<a class="png" href="$company_url">$company_name</a>

			<span class="current-community">
				$community_name
			</span>
		</h1>


HTH

Parul Seth
Impetus Infotech (India) Pvt. Ltd.
thumbnail
Ziggy R, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

Expert Mensajes: 293 Fecha de incorporación: 8/06/08 Mensajes recientes
Thanks parul.. the second option did the trick.
I dont have that "#banner .logo a" stylesheet in my theme. Im using the classic theme. Is that as you would expect? Or does that mean im using an older version of the classic theme?
thumbnail
Parul Seth, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

Junior Member Mensajes: 83 Fecha de incorporación: 18/12/08 Mensajes recientes
Hi Ziggy

That was from 5.2.1. So if you are using a higher version its very much possible that this has been re-factored. emoticon

And its better to do it with the second option I gave, because if you don't want the logo to be there its better to remove it.

Just remember that you need to port these changes manually when you upgrade.

HTH

Thanks & Regards
Parul Seth
Impetus Infotech (India) Pvt. Ltd.
bhavana deepthi p, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

New Member Mensajes: 11 Fecha de incorporación: 9/12/09 Mensajes recientes
I changed property in portal.properties/portal-ext.properties file with new icon .ico file for your theme.
#
# Set the theme's shorcut icon.
#
theme.shortcut.icon=tomcat.ico

but the Liferay icon is not changed.........
I want to change the Logo of the Liferay and upload my own Logo there.....
thumbnail
Juan Fernández, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

Liferay Legend Mensajes: 1261 Fecha de incorporación: 2/10/08 Mensajes recientes
Try this:

in "Control panel" -> "Settings" -> "Display settings" you have a place to edit your logo
Regards
Juan Fernández
thumbnail
Matthew Ropp, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

Junior Member Mensajes: 75 Fecha de incorporación: 5/08/09 Mensajes recientes
To replace the liferay icon with the icon of your choice you should deploy a custom theme and replace docroot/_diffs/images/liferay.ico with your preferred icon.

Matthew
bhavana deepthi p, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

New Member Mensajes: 11 Fecha de incorporación: 9/12/09 Mensajes recientes
hi,
I am new to liferay.i could not find confirugation in control_panel.can you please give me detail info about how to change the logo of the Liferay.
thumbnail
Gnaniyar Zubair, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

Liferay Master Mensajes: 722 Fecha de incorporación: 19/12/07 Mensajes recientes
HI,


Go to Control Panel - Settings - Display Settings ( left side) - change Logo


- Gnaniyar Zubair
thumbnail
Dhrutika parekh, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

Expert Mensajes: 435 Fecha de incorporación: 9/02/09 Mensajes recientes
bhavana deepthi p:
hi,
I am new to liferay.i could not find confirugation in control_panel.can you please give me detail info about how to change the logo of the Liferay.


Hi,
Go to control panel->Settings->Display Settings->And there you can change your logo.

Thanks,
Dhrutika Parekh
Cignex Technologies
thumbnail
Juan Fernández, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

Liferay Legend Mensajes: 1261 Fecha de incorporación: 2/10/08 Mensajes recientes
bhavana deepthi p:
hi,
I am new to liferay.i could not find confirugation in control_panel.


Hi:
I'm sorry but I translate this word wrong. It isn't "configuration", but "settings".
So you have to go to control panel, in the "portal" section, click on "settings", then "display settings"
That's all
Regards
Juan Fernández
bhavana deepthi p, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

New Member Mensajes: 11 Fecha de incorporación: 9/12/09 Mensajes recientes
Thanks for the information.
Done.
Rajendra Mhetre, modificado hace 13 años.

RE: How can i remove the liferay logo and company name

New Member Mensajes: 5 Fecha de incorporación: 17/02/10 Mensajes recientes
Hi Matthew,

I am using liferay 6.0.4 and have created my own theme but I could not find the file docroot/_diffs/images/liferay.ico anymore. I need to change the liferay logo using theme only.

Thanks in advance.
thumbnail
Hitoshi Ozawa, modificado hace 13 años.

RE: How can i remove the liferay logo and company name

Liferay Legend Mensajes: 7942 Fecha de incorporación: 24/03/10 Mensajes recientes
Take a look at the page below:

http://www.liferay.com/community/forums/-/message_boards/message/4534070#_19_message_4562408
asif aftab, modificado hace 10 años.

RE: How can i remove the liferay logo and company name

Regular Member Mensajes: 123 Fecha de incorporación: 2/09/13 Mensajes recientes
Thanks Parul seth, your post is really helpful.
asif aftab
thumbnail
Jignesh Vachhani, modificado hace 14 años.

RE: How can i remove the liferay logo and company name

Liferay Master Mensajes: 803 Fecha de incorporación: 10/03/08 Mensajes recientes
Hi Ziggy,

Go to the control panel and upload 1px image instead of liferay logo.
Your problem has been solved through this.

Jigs
Stephen Danseglio, modificado hace 12 años.

RE: How can i remove the liferay logo and company name

New Member Mensajes: 4 Fecha de incorporación: 30/12/11 Mensajes recientes
This is not directly related to the subject but I didnt notice how to start a new discussion. In any case, is there some way to change the company logo to a STATIC image so that when you change it to a new logo, the image is NOT clickable? Right now no matter what logo you change it to, it is click-able and directs you to another page, e.g., /web/guest page. I just want it to be static.

Steve
thumbnail
himanshu jain, modificado hace 12 años.

RE: How can i remove the liferay logo and company name

Junior Member Mensajes: 34 Fecha de incorporación: 25/10/11 Mensajes recientes
if u want to change logo just go to control panel u can change logo for your community.


If u want to change the default liferay logo which appeared in the url than go to unstyled theme .u find images folder .search for favicon.in and replace it with the desired icon which has same size nd keep the name same....restart the server change get reflect in the url tab.
thumbnail
Olaf Kock, modificado hace 4 años.

Thread Split

Liferay Legend Mensajes: 6392 Fecha de incorporación: 23/09/08 Mensajes recientes
I've split this ancient thread and moved the new post from 2019 to https://community.liferay.com/forums/-/message_boards/view_message/113543653.