Forums

Please Help with Header (7 posts)

  1. J Diggs
    Member
    Posted 3 years ago #

    My website is novasportspicks.com and it is running off of wordpress.

    I am trying to figure out where I need to go in order to edit the area at the top of my site, where the writing says novasportspicks.com

    If someone can direct me on how to do this i would greatly appreciate it.

    please email me at novasportspicks@novasportspicks.com

    thank you in advance

  2. Samuel B
    moderator
    Posted 3 years ago #

    your theme's header.php pulls the title from your settings in admin - so look there

  3. J Diggs
    Member
    Posted 3 years ago #

    I tried that but it won't show me where the wording novasportspicks.com is within the file.

    i already went into the themes header.php file and didnt see it?

  4. Saurus
    Member
    Posted 3 years ago #

    If you're talking about the text link with your sites url next to your logo - header.php, as samboli told you, is picking that up from your settings on your dashboard. You will not see your url in the header file because those are php commands.

    Look in your dashboard settings and just remove the url entry and it won't show anymore.

  5. J Diggs
    Member
    Posted 3 years ago #

    saurus =
    thanks for the reply. what i am trying to do is place a banner in that white space and replace the novasportspicks.com saying with the banner.

  6. figaro
    Member
    Posted 3 years ago #

    Open style.css in your theme and find the following:

    h1 {
    	font-family:tahoma, arial;
    	color:#EEEDE6;
    	font-size:3.31em;
    	/*
    	text-transform:uppercase;
    	*/
    	font-weight:normal;
    	line-height:1.01em;
    	padding:0px 0px 0px 0px;
    	margin:0px 0px 0px 0px;
    }

    Add a line that reads display:none; so it looks like this:

    h1 {
    	font-family:tahoma, arial;
    	color:#EEEDE6;
    	font-size:3.31em;
    	/*
    	text-transform:uppercase;
    	*/
    	font-weight:normal;
    	line-height:1.01em;
    	padding:0px 0px 0px 0px;
    	margin:0px 0px 0px 0px;
            display:none;
    
    }

    Then you can replace you header with a larger one, or set the current one to repeat by finding the following code:

    .header {
    	height:125px;
    	margin:5px 0px 0px 0px;
    	background:url(images/nspLogo.jpg) left top no-repeat;
    	vertical-align:top;
    	background-color:#FFFFFF;
    }

    and change the no-repeat; to repeat-x; so it looks like this:

    .header {
    	height:125px;
    	margin:5px 0px 0px 0px;
    	background:url(images/nspLogo.jpg) left top repeat-x;
    	vertical-align:top;
    	background-color:#FFFFFF;
    }
  7. cuisinecitrine
    Member
    Posted 3 years ago #

    PLease read my topic for my header I am having serious problems!

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.