Remove logo div Topic is solved

Everything to do with Joomla! 3.x templates and templating.

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
mydutchtouch
Joomla! Apprentice
Joomla! Apprentice
Posts: 31
Joined: Sat Nov 02, 2013 2:51 pm

Remove logo div

Post by mydutchtouch » Wed Oct 03, 2018 9:50 pm

Hi,

I am looking to treat the logo of a website I am developing in a different way than the template.

I would like to remove the logo div (<div id="logo" class="col-sm-12">), but cannot locate it in any of the index.php files.

Can anyone help?

Jordan

User avatar
toivo
Joomla! Master
Joomla! Master
Posts: 17434
Joined: Thu Feb 15, 2007 5:48 am
Location: Sydney, Australia

Re: Remove logo div

Post by toivo » Wed Oct 03, 2018 10:06 pm

Which particular template are you using?
Toivo Talikka, Global Moderator

mydutchtouch
Joomla! Apprentice
Joomla! Apprentice
Posts: 31
Joined: Sat Nov 02, 2013 2:51 pm

Re: Remove logo div

Post by mydutchtouch » Wed Oct 03, 2018 10:36 pm

I am using this theme from Template Monster:

https://www.template monster.com/demo/di ... 64731.html

KianWilliam
Joomla! Guru
Joomla! Guru
Posts: 564
Joined: Thu Jan 12, 2017 10:13 am

Re: Remove logo div

Post by KianWilliam » Thu Oct 04, 2018 5:44 am

If you can not find it in index.php file, there must be include files in there and you have to check those files, also most 3rd party templates have a backend to give options to users to add, remove or change logo and other template settings, go to extension and click on template to see if there is such an option.
Kian William

User avatar
toivo
Joomla! Master
Joomla! Master
Posts: 17434
Joined: Thu Feb 15, 2007 5:48 am
Location: Sydney, Australia

Re: Remove logo div

Post by toivo » Thu Oct 04, 2018 6:32 am

The CSS file of the demo page (remove the blank space from the above URL) can be viewed from https://livedemo00.template-help.com/jo ... mplate.css.

If the framework of this paid template does not support adding customised styles into a file like custom.css or user.css, add the last line to the following style definition, starting from line 11699:

Code: Select all

#logo {
    padding-top: 50px;
    padding-bottom: 37px;
    display: none;
}
Toivo Talikka, Global Moderator

mydutchtouch
Joomla! Apprentice
Joomla! Apprentice
Posts: 31
Joined: Sat Nov 02, 2013 2:51 pm

Re: Remove logo div

Post by mydutchtouch » Fri Oct 05, 2018 8:07 pm

Thanks so much for your help. I was able to remove the logo div area.

emililadjet
Joomla! Fledgling
Joomla! Fledgling
Posts: 3
Joined: Sat Oct 06, 2018 2:39 pm

Re: Remove logo div

Post by emililadjet » Sat Oct 13, 2018 2:05 pm

toivo wrote:
Thu Oct 04, 2018 6:32 am
The CSS file of the demo page (remove the blank space from the above URL) can be viewed from https://livedemo00.template-help.com/jo ... mplate.css.

If the framework of this paid template does not support adding customised styles into a file like custom.css or user.css, add the last line to the following style definition, starting from line 11699:

Code: Select all

#logo {
    padding-top: 50px;
    padding-bottom: 37px;
    display: none;
}
I agree with this answer but it is necessary to put exactly this code so that it works on all the versions
!important

Code: Select all

#logo {
display: none!important;
}


Locked

Return to “Templates for Joomla! 3.x”