How to Remove Joomla Icon at the bottom Admin Login page?

Need help with the Administration of your Joomla! 3.x site? This is the spot for you.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Windows Defender SmartScreen Issues <-- please read this if using Windows 10.
Locked
buckymccoy
Joomla! Apprentice
Joomla! Apprentice
Posts: 8
Joined: Fri Jun 24, 2016 6:51 pm

How to Remove Joomla Icon at the bottom Admin Login page?

Post by buckymccoy » Sat Jun 25, 2016 2:41 pm

Hello,

How do I Remove Joomla Icon at the bottom Administrator Login page?

I have searched and can't figure it out.

Does anyone have experience in removing this?

I have attached a screenshot of the icon I need to remove.


Thanks
You do not have the required permissions to view the files attached to this post.

User avatar
mandville
Joomla! Master
Joomla! Master
Posts: 15152
Joined: Mon Mar 20, 2006 1:56 am
Location: The Girly Side of Joomla in Sussex

Re: How to Remove Joomla Icon at the bottom Admin Login page?

Post by mandville » Sat Jun 25, 2016 3:03 pm

Code: Select all

<div class="navbar navbar-fixed-bottom hidden-phone">
		<p class="pull-right">
			&copy; 2016 </p>
		<a class="login-joomla hasTooltip" href="https://www.joomla.org" target="_blank" title="Joomla is free software released under the GNU General Public License."><span class="icon-joomla"></span></a>
		<a href="http://www..org.uk/" target="_blank" class="pull-left"><span class="icon-out-2"></span> Go to site home page.</a>
	</div>
HU2HY- Poor questions = Poor answer
Un requested Help PM's will be reported, added to the foe list and possibly just deleted
{VEL Team Leader}{TM Auditor }{ Showcase & Security forums Moderator}

User avatar
imanickam
Joomla! Master
Joomla! Master
Posts: 28206
Joined: Wed Aug 13, 2008 2:57 am
Location: Chennai, India

Re: How to Remove Joomla Icon at the bottom Admin Login page?

Post by imanickam » Sat Jun 25, 2016 3:29 pm

As you can notice from mandville's answer, the Joomla! image you are referring to is implemented as a custom icomoon font.

Review of the document https://docs.joomla.org/J3.x:Joomla_Sta ... moon_Fonts would be of help.

The css that show the Joomla! image is shown below and it is located in the file template.css that is located in the directory /administrator/templates/isis/css.

Code: Select all

.icon-joomla:before {
	content: "\e200";
}
Ilagnayeru (MIG) Manickam | இளஞாயிறு மாணிக்கம்
Joomla! - Global Moderators Team | Joomla! Core - Tamil (தமிழ்) Translation Team Coordinator
Former Joomla! Translations Coordination Team Lead
Eegan - Support the poor and underprivileged

User avatar
AlexVega
Joomla! Hero
Joomla! Hero
Posts: 2711
Joined: Fri Aug 28, 2015 6:13 am
Location: México

Re: How to Remove Joomla Icon at the bottom Admin Login page?

Post by AlexVega » Sat Jun 25, 2016 9:19 pm

Hi there,

To avoid that the changes will be lost when you update the core, it is more convenient to hide
the icon via CSS, create a file called custom.css in yoursite/administrator/templates/isis/css

Code: Select all

/* Add this simple code */
span.icon-joomla {
    display: none;
}
The above code works for the joomla icon in the login and the joomla icon in the administrator
area, if you only need the change in the login, try with this code:

Code: Select all

.login-joomla .icon-joomla {
  display: none;
}
Cheers.


Locked

Return to “Administration Joomla! 3.x”