• hey guys
    Im facing a problem changing the header image of the Inove theme. I have tried to put a new image in the images folder in the theme it self and changing the url of the header and it didnt work and i tried to put an image with the same name of the header image and it didnt work too.
    can u please tell what im doing wrong and how to fix it?
    or can you give me another way to do the header changing??

Viewing 5 replies - 1 through 5 (of 5 total)
  • Your tutorial on changing the header size is great. I have designed my own header that has the title of my site built in. So I now need to know who to surpress the display of the wordpress title and tagline, so that they are accessible by search engines, but do not overwrite my self designed header.

    I know how to do this with the default theme, but it does not seem to work the same way with the inove theme.

    I think I figured it out. At least I got it to hide, so I sure I have done it correctly.

    Can you post your fix you figured out?

    If you talking about hiding title, and tagline from the site, but that search englines could still see it, here’s the answer
    It’s about to hide title
    find:

    #title a {
    	text-decoration:none;
    	color:#FFF;
    	height:30px;
    	display:block;
    	font-family:"Trajan Pro";
    	letter-spacing:0;

    }
    replace with

    #title a {
    	text-decoration:none;
    	color:#FFF;
    	height:30px;
    	display:none;
    	font-family:"Trajan Pro";
    	letter-spacing:0;
    }

    This will hide tagline:
    find:

    #tagline {
    	color:#FFF;
    	border-top:1px solid #FFF;
    	text-decoration:none;
    	font-size:10px;
    	float:left;
    	padding:0 3px;
    }

    replace with

    #tagline {
    	display:none;
    	color:#FFF;
    	border-top:1px solid #FFF;
    	text-decoration:none;
    	font-size:10px;
    	float:left;
    	padding:0 3px;
    }

    Have a nice day, you are done.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘how to change the header image in inove 1.4.6’ is closed to new replies.