• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Cafe-Pro Question Regarding Site Title and Tagline

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password

Community Forums › Forums › Archived Forums › Design Tips and Tricks › Cafe-Pro Question Regarding Site Title and Tagline

This topic is: not resolved

Tagged: description, site title, tag-line

  • This topic has 7 replies, 3 voices, and was last updated 7 years, 6 months ago by Jasonewillis.
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • December 12, 2017 at 4:45 pm #214507
    Jasonewillis
    Member

    Hi! 🙂
    I'm helping a family member with a site and they don't want the site title and tagline to show over the top image on the homepage. (https://t.co/znWPa1Mqsy)

    I can delete the site title and tagline in the general settings but I think that would not be smart seo. There are remnants of the styled box surrounding this info.

    What would be the smart way to turn this off without any negative seo and without updates affecting the change? Thank you!

    Respectively,
    Jason

    https://t.co/znWPa1Mqsy
    December 16, 2017 at 5:08 pm #214616
    Jasonewillis
    Member

    bump

    December 17, 2017 at 8:05 pm #214655
    Jasonewillis
    Member

    I found the following references:
    Site Title
    site description

    Unfortunately, it doesn't explain much. If I remove the genesis_site_title but not the genesis_seo_site_title, will this remove title display while not removing seo benefits? Same as the tagline or site description?

    // Remove the site title
    remove_action( 'genesis_site_title', 'genesis_seo_site_title' );
    // Remove the site description
    remove_action( 'genesis_site_description', 'genesis_seo_site_description' );

    Well, I tried this and it leaves a small black box with what looks like a period in the middle.

    Do I now need to comment out some CSS? Will this get overwritten when the child theme is updated?

    Screenshot: https://screencast.com/t/kX1hyeZNgPMW

    Can someone please help me understand and/or point me in the documentation I can't seem to find?

    jw

    December 19, 2017 at 1:59 pm #214688
    Satwinder Rathore
    Participant

    Use screen-reader-text css class to hide the site title and description. It will hide only the text.


    Satwinder Rathore
    https://satwinderrathore.wordpress.com

    December 23, 2017 at 3:58 pm #214774
    Jasonewillis
    Member

    Thank you for your interest Mr. Rathore,
    Unfortunately, I'm not sure "how" this in implemented. I searched and found 'screen-reader-text' within the stylesheet, but I'm not sure how this is accomplished. I would need more specific instruction. Additionally, while I'm trying to hide the text I would also need the black background to be removed as seen in my screenshot.

    Jason

    December 24, 2017 at 12:07 am #214777
    Jasonewillis
    Member

    Basically, the site owner doesn't want the title-area, site-title, and site-description hovering over the homepage image. I tried this within chrome's dev tools and was able to visually see the title area, site-title and site-description disappear. When I tried on a local version, it didn't work. Not sure what I'm messing up but this is taking too long to resolve.

    .title-area {
 /* background-color: #000; */
 /* border: 1px solid #fff; */
 /* box-shadow: 0px 0px 0px 10px #000; */
 display: inline-block;
 margin: 10px auto;
 text-align: center;
 text-transform: uppercase;
 width: auto;
    }

    .site-title {
 border-bottom: 1px solid #fff;
 font-size: 48px;
 font-size: 4.8rem;
 font-weight: 400;
 line-height: 1.2;
 padding: 8px 30px 4px;
 visibility: hidden;
    }

    
.site-description {
 color: #fff;
 font-size: 16px;
 font-size: 1.6rem;
 font-weight: 600;
 letter-spacing: 3px;
 line-height: 1.5;
 padding: 8px 30px 10px;
 visibility: hidden;
    }

    I really hope I can get this resolved soon with this forum's help.

    December 24, 2017 at 6:15 am #214779
    Victor Font
    Moderator

    Please post a link to the site. Screen captures help to describe the issue, but are no help whatsoever in solving the problem. We need access to the live site to examine code/css. We also need to know what child theme you're using.

    As for child theme updates overriding changes...child themes are never updated automatically. If an updated child theme is ever released, you will not receive any notifications. Child theme updates, if any, are always minor usually related to CSS or jQuery fixes. If you ever find that a child theme has been updated and you believe the changes are compelling enough to update your site, the update process is a manual compare, cut, and paste exercise.


    Regards,

    Victor
    https://victorfont.com/
    Call us toll free: 844-VIC-FONT (842-3668)
    Have you requested your free website audit yet?

    December 24, 2017 at 12:48 pm #214787
    Jasonewillis
    Member

    Mr. Font,
    The child theme is Cafe-Pro. I did place this information in the post title, but I guess I should have also placed in the post itself.
    The site is on my local machine.
    The code tweaks are below. These tweaks have hidden css styles and removed title and description. Once I deleted the cache, this also helped. So, now that the site title, description, and style isn't hovering over the image, will removing 'genesis_seo_site_description' be a negative seo choice? I'm not trying to negatively affect seo.

    Functions.php
    // Remove the site title
    remove_action( 'genesis_site_title', 'genesis_seo_site_title' );
    // Remove the site description
    remove_action( 'genesis_site_description', 'genesis_seo_site_description' );

    Stylesheet.css

    .title-area {

    /* background-color: #000; */

    /* border: 1px solid #fff; */

    /* box-shadow: 0px 0px 0px 10px #000; */

    display: inline-block;

    margin: 10px auto;

    text-align: center;

    text-transform: uppercase;

    width: auto;
    }

    .site-title {

    border-bottom: 1px solid #fff;

    font-size: 48px;

    font-size: 4.8rem;

    font-weight: 400;

    line-height: 1.2;

    padding: 8px 30px 4px;

    visibility: hidden;
    }

    
.site-description {

    color: #fff;

    font-size: 16px;

    font-size: 1.6rem;

    font-weight: 600;

    letter-spacing: 3px;

    line-height: 1.5;

    padding: 8px 30px 10px;

    visibility: hidden;
    }

  • Author
    Posts
Viewing 8 posts - 1 through 8 (of 8 total)
  • The forum ‘Design Tips and Tricks’ is closed to new topics and replies.

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble