• Resolved alanaj7

    (@alanaj7)


    Hi there. When I add a favicon, the website name/ title does not show on the pages. If I remove the favicon, then the site name appears. Is possible to show both? Thank you!

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Bryan Hadaway

    (@bhadaway)

    Personally, I don’t like the way that WordPress sets the site icon as the site favicon by default. A favicon is a very specific graphic that needs to be done carefully.

    Instead of using the site icon in order to set the favicon, I would either:

    A. Upload a favicon directly to your site’s public root:

    https://mentalstrength101.com/favicon.ico

    (use a tool like https://www.icoconverter.com/ to create the .ico file)

    or

    B. Use a plugin:

    https://wordpress.org/plugins/favicon-by-realfavicongenerator/

    Bonus CSS for you:

    .entry-title {
    	display: none;
    }

    This will hide the page title, which it appears you’d like to do.

    Thread Starter alanaj7

    (@alanaj7)

    Thank you for your prompt response & for the custom CSS to hide the page title. To be honest, I would like to hide the header and footer altogether. Your theme is clean and simple which is what I need for this two-pager.

    Also, is it possible to have the numbers appear without 0 before 1-9? Or to have the bullets appear as bullets instead of dashes? If not, this is no big deal.

    My apologies for the delayed follow-up. I moved this weekend and still getting caught up.

    Theme Author Bryan Hadaway

    (@bhadaway)

    Anything and everything is possible!

    Here’s what you need:

    #header, #footer {
    	display: none;
    }
    
    .entry-content ol, .comment-body ol {
    	list-style-type: decimal;
    }
    
    .entry-content ul li::before, .comment-body ul li::before {
    	content: '';
    }
    
    .entry-content li, .comment-body li {
    	list-style-type: disc;
    }
    Thread Starter alanaj7

    (@alanaj7)

    So you’re telling me you’re the best??? LOL! Thank you Bryan Hadaway. This worked perfectly. Great theme and great support! Have a wonderful rest of your week.

    Theme Author Bryan Hadaway

    (@bhadaway)

    You’re welcome. You too.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Issue with Favicon & Site Title Showing Together’ is closed to new replies.