• I am having some trouble trying to remove the tagline from my sites header. I have been through loads of posts online looking for an answer but cant seem to get a working solution.

    I still want to keep the tagline on the page tabs etc for seo, just remove it from under my logo on my site.

    http://www.gerardmcmanusphotography.co.uk

    I dont have a check box in my themes customise options, to hide the title. I also cant seem to find any reference to: ‘site’, ‘description’ in the css to set the display to none. I have tried doing this in a few css functions that looked like they may be for the site title, but to no avail.

    Any help would be very appreciated.

    Gerard

Viewing 8 replies - 1 through 8 (of 8 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello gerardmcmanus20,

    Put below css code into your current chid theme’s style.css file located at http://gerardmcmanusphotography.co.uk/wp-content/themes/theme53878/ folder.


    .logo .logo_tagline {
    display: none !important;
    }

    Hope this helps you.

    add this CSS in header.css
    #motopress-main .logo_tagline
    {
    display: none !important;
    }

    Thread Starter gerardmcmanus20

    (@gerardmcmanus20)

    no joy.

    I have two ccs files:

    style.ccs
    main-style.ccs

    style have nothing in it but this:

    /*--
    	Theme Name: theme53878
    	Theme URI: http://info.template-help.com/help/
    	Description: A theme for WordPress 3.8.x
    	Author: Template_Help.com
    	Author URI: http://info.template-help.com/help/
    	Template: CherryFramework
    	Version: 3.1.5
    --*/
    
    /* ----------------------------------------
    	Please, You may put custom CSS here
    ---------------------------------------- */

    The style-main.ccs has everything in it, but nothing refers to what you are suggesting. I have tried inserting both suggestions into both files, with no joy.

    AddWeb Solution

    (@addweb-solution-pvt-ltd)

    It is working with style.css file.

    Example:

    /*--
    Theme Name: theme53878
    Theme URI: http://info.template-help.com/help/
    Description: A theme for WordPress 3.8.x
    Author: Template_Help.com
    Author URI: http://info.template-help.com/help/
    Template: CherryFramework
    Version: 3.1.5
    --*/

    /* ----------------------------------------
    Please, You may put custom CSS here
    ---------------------------------------- */
    .logo .logo_tagline {
    display: none !important;
    }

    Thread Starter gerardmcmanus20

    (@gerardmcmanus20)

    nope, still showing under the logo with that added.

    AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Here is screenshot.

    Thread Starter gerardmcmanus20

    (@gerardmcmanus20)

    Something is not working at my end can’t figure it. I have entered your code on that ccs page through the wordpress console. However I am still seeing the tagline at my end on chrome, explorer and on my mobile.

    Thread Starter gerardmcmanus20

    (@gerardmcmanus20)

    Ok got it, cleared my browser catche and it worked. Feel a bit stupid now, but very pleased it is sorted, this issue was bugging me to no end.

    Thank you so much for your help.

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘wordpress tagline help plz’ is closed to new replies.