Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

How to i remove homepage title

i want to remove the hompage title from the main page. this is its class [class="H HomepageTitle"]

Comments

  • @martin2008‌

    If you want to get to grips with theming in Vanilla, can I recommend my own modest offering:

    http://vanillaforums.org/addon/annotatedcss2.1-theme

    The custom css is annotated to show what parts are affected.

    The same annotations are in the wiki:

    http://vanillawiki.homebrewforums.net/index.php/Custom_Themes_1

    As an incentive, if you search either of those for 'Homepage' it will show you how to achieve what you want.

  • peregrineperegrine MVP
    edited October 2014

    @martin2008 said:
    i want to remove the hompage title from the main page. this is its class [class="H HomepageTitle"]

    Yes and see the theme tutorials.

    After your read the tutorials on themes and go through whu606's info.
    Come back if you still have a problem.

    • We have no idea what theme you are talking about - some are tpl based and some are php based?

    • We have no idea what you selected as your home page - is it Category or Discussions or something else?

    • Do you only want to the HomePageTitle or the Banner Row surrounding it?

    • Show a screenshot circle exactly what you want to remove, and on what pages if any.

    • If you have questions about things like this - mention the name of the theme you are using

    After your read the tutorials on themes and go through whu606's info.
    Come back if you still have a problem. repeated for effect.

    You can do things via .css or via the default.master.[php|tpl] files.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • peregrineperegrine MVP
    edited October 2014

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • He is talking about the site info header title I think.

    Remove it or hide it ?

    If you just want to hide it then the code below should work to hide it from view

        #Content H.HomepageTitle{
        display:none!important;
        }
    
  • peregrineperegrine MVP
    edited October 2014

    I was thinking site title, but anyway....

    if he want to remove the HomePage title everywhere, why would he put a title in dashboard settings , (rhetorical question)

    unless he wants it to appear in other pages. But we don't know what his home page is!

    or is it

    #vanilla_discussions_index .HomepageTitle {
        display: none;
    }
    

    or maybe

    #vanilla_categories_index .HomepageTitle {
        display: none;
    }
    

    or maybe a few hundred other iterations...

    april fools joke :stuck_out_tongue_winking_eye: the ultimate title remover.

    .Row {
    display: none !important;
    }

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • @vrijvlinder‌

    Well, I could have given that code, but was hoping that the OP might take steps to find out how to help themselves.

    Give a man a fish and all that...

  • edited October 2014

    Yes, I was tired of waiting for a response to you man guys advice which is very very good by the way.

    I was dangling a carrot in front of the horse with that code ;)

    It is funny that he does not realize he had it just by knowing the class name... That is cause for the "answer in the question badge"!!

  • peregrineperegrine MVP
    edited October 2014

    @whu606 said:
    vrijvlinder‌

    Well, I could have given that code, but was hoping that the OP might take steps to find out how to help themselves.

    Give a man a fish and all that...

    It's a dilemma. With people asking How do I remove this, and that in lots of discussions. You hope they would take a moment out of life to comprehend css, firebug or some other developer tool and try to digest a tutorial, its not like there aren't any tutorials out there.

    Do you give them a rod, hit them with a rod, or just flop a fish on the dish, to put yourself out of the misery.

    I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.

  • when I give a fish, chances are it's Red Herring ;)

Sign In or Register to comment.