• 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

Viewing 6 replies - 1 through 6 (of 6 total)
  • your theme’s header.php pulls the title from your settings in admin – so look there

    Thread Starter j-diggs

    (@j-diggs)

    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?

    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.

    Thread Starter j-diggs

    (@j-diggs)

    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.

    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;
    }

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Please Help with Header’ is closed to new replies.