• Resolved tessbrianna

    (@tessbrianna)


    Well I have two problems, three if you count the fact that I know nothing about coding or WP: 1) My RSS feed button in the pre-made theme installed on my page does not work. 2) I want to hide the default blog title and use my header image instead.

    For both of these issues I’ve tried winging it from the help topics found in the forums, but I’m not knowledgeable enough for that to work. My website is TessBrianna.com and any customized help that could be given would be very appreciated. Thank you in advance.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Well I’ve had a quick look at your website, and when I select the RSS icon it seems to be working as it’s taking me to the feed.

    As for the title I’d recommend going into your WP settings, go to the option General and deleting the title, the problem then is that your name will be missing from the title tag.

    Another solution is to remove the title tag from the header all together, yet the title tag will still be visible within the title bar.

    To do this you’ll need to go into your template folder and find where your headings contents is located (usually within the header.php file). Then you’ll simply need to find the tag and remove this.

    From looking at your sites source code you’ll need to find the following tag,
    <div id="blogtitle"></div>

    And delete it all together including its contents.

    Hope this helps

    Easiest way would be to just find this part of your style.css file (in your theme editor)

    #blogtitle{
    	position:relative;
    	font-family: Arial,Verdana;
    	margin:0px 250px 0 100px;
    	padding:20px 0 0 0;
    	text-align:center;
    	font-size:32px;
    	font-weight:bold;
    	border:0px red solid;
    }

    and add the line display: hidden;

    should take care of removing the title!
    (and your RSS icon appears to be working for me too!)

    Thread Starter tessbrianna

    (@tessbrianna)

    Awesome! Thank you both so much for your help, I was going absolutely mad. You’re lifesavers as far as I’m concerned. 🙂

    sure thing!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘RSS and Hiding Blog Title Problem’ is closed to new replies.