• Resolved direiter1

    (@direiter1)


    Hi all. Well, I have scoured the forum for answers, and unfortunatly I’m not AT ALL savvy at coding so I’ll need help in baby terms. I know HTML but this is a whole new world for me.

    I have two problems and if you check my site, you’ll see exactly what I’m talking about https://dianereiter.com

    If you check my blog, you’ll ses the title appear in blue beneath my banner momentarly until the page loads completely. You’ll actually also see a white one, too but I can deal with that. I have NO idea how to get rid of this..where to go, what to do.

    The other problem is on my About page (the tab for this page is top left). The page title is showing up twice “About About.” NO idea how to get rid of this one, either.

    Can anyone give me a hand?

    Thanks a million!

Viewing 15 replies - 16 through 30 (of 61 total)
  • this looks odd to me.. why 2 instances of the_title? try removing the first one. (also use the “code” button on the post screen, it put’s a back-tick before and after which makes the code show properly)

    <span class="PostHeader">" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>">
     <?php the_title(); ?>
     " rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>">
     <?php the_title(); ?>
     </span>

    As for the css header text issue, just paste that code at the end of your style.css file and it will over ride any previous reference to that code, but be sure to remove everythng except the color.

    Thread Starter direiter1

    (@direiter1)

    Yay! You fixed the “About Me” issue! Thank you!

    And okay…I’ll try that last thing you mentioned. I’m a little bit nervous but I always copy and save the text anyway in case I have to restore it so I should be good to go. I may not get to it until a bit later bit we’ll see if it works.

    Thanks!!

    if you paste that code at the end of your style.css and it doesn’t work, just remove it. No worries. Good luck, look forward to seeing this resolved. You can apply the display none and the color change in the same way, one is bound to work.

    Thread Starter direiter1

    (@direiter1)

    Nope. That didn’t work. I have a guy who may be able to help me…I was just trying to get around paying anyone. I really need to learn how to do this stuff on my own — I hate being at the mercy of others. I appreciate your time and effort. Thanks for the page title help. ??

    That’s lame, I know it’s an easy fix. Sorry you have to pay someone to do what will probably take 3 min. Give me the name of your theme and I’ll take a last stab at it.

    Thread Starter direiter1

    (@direiter1)

    Awww…you’re so nice. And I know it, too. I’m sure I’m doing something really stupid and wrong. You’ll look at it and fix it in about two seconds.

    It’s called woman presenter pee120 2.21 from https://leadcamp.com.

    I think I may have found it,

    h1.logo-name {
        color: #FFFFFF!important;
        }
    
    Or
    
    h1.logo-name {
    display: none;
    }

    But I’ll look at the theme’s files if not.

    Thread Starter direiter1

    (@direiter1)

    Tried changing to ffffff for white and display: none; and neither worked. Just for the heck if it, I also tried reducing the font size and doing that changed NOTHING. Don’t knock yourself out over this. I’ll just see if this other dude can look at it and fix it. I know i’m not the only one that’s had this exact same problem, it’s just that all of the fixes I’ve tried won’t work.

    You have a lot of crazy code there, like this:

    <div class="Sheet-tl"></div>
        <div class="Sheet-tr"><div></div></div>
        <div class="Sheet-bl"><div></div></div>
        <div class="Sheet-br"><div></div></div>
        <div class="Sheet-tc"><div></div></div>
        <div class="Sheet-bc"><div></div></div>
        <div class="Sheet-cl"><div></div></div>
        <div class="Sheet-cr"><div></div></div>
        <div class="Sheet-cc"></div>

    also

    </ul></ul>    <div class="l">
        </div>
        <div class="r">
            <div>

    Not sure what all of that is about.

    But to answer your question, you can remove all of this from header.php

    <div id="slogan-text" class="logo-text"> .“It’s All Good &ndash; Until You Burn Dinner” momblog where wives and moms can uncover the naked truth about families (bonus: no nudity involved) and the tainted quirkiness of life.</div>

    Or in the CSS you could set .logo-text to display: none;

    Thread Starter direiter1

    (@direiter1)

    Well Skipper…Thanks, but I tried that last option already and it changed nothing. The big blue text still shows up while the page is loading. As for your first option, I sort of need to keep that for search purposes. I simply want to make that whole title and line invisible.

    Haha, I installed that theme and it took down my site. No problem though it’s just a dev site, I just have to go to my server and delete that theme.

    Normally I could test css live on your site with dev tools but your head image is blocking the site title, so I can’t see it’s css. otherwise I wouldn’t need to install this theme.

    Remove your header image and I know I can do this.

    in the mean time, try:

    h1.logo-text {
    display: none;
    }

    or just

    h1.logo {
    display: none;
    
    }

    never surrender.

    Mr. Grumby concurs, I feel quite confident now ?? And you didn’t try this fix, it’s different this time, try it!

    Thread Starter direiter1

    (@direiter1)

    OMG!! I’m sorry! What the heck? I installed this thing last September but yikes! Now you’ve kind of got me reeeeeally nervous.

    And yup. I already tried the code you guys have suggested…in fact, that’s how I have it set up right now.

    I took out the header. Enjoy. ??

    Thread Starter direiter1

    (@direiter1)

    Wait…I think I did try that fix…

Viewing 15 replies - 16 through 30 (of 61 total)
  • The topic ‘Title problems’ is closed to new replies.