• Hello:

    I am trying to figure out a way to change the wording at the top of the theme InnodeMag and would like to change the wording from InnodeMag to something else, probably the name of my blog or something. If you want to see the pages I am talking about look at this page here: https://livinghighonthehog.com/blog/ I believe it shows up on every page. How do I go about doing this?

    Also, I was wondering if you knew of any good page navigators or paginator? It is a plug-in that puts the page numbers at the bottom of the blog but I cannot seem to find one other than one called page navi and it does not seem to work at all. Just was wondering if you ever used one and which one you liked the best so I could try it and see if it worked for me.

    Thanks for the help!

    RealEstateGuy

Viewing 1 replies (of 1 total)
  • the title is a background image.

    edit style.css of your theme and find this area:

    #header h1 {
    		clear: both;
    		float: left;
    		font-size: 0;
    		padding: 25px 0 30px;
    	}
              #header h1 a {
    			display: block;
    			width: 373px; height: 41px;
    			text-indent: -9999px;
    			outline: none;
    			background: url(images/logo.gif) no-repeat 0 0;
    		}

    this shows that the title is an image in the images folder of your theme:
    /images/logo.gif

    — either edit this image in a graphic program and make your own logo (preferred if you have any graphics ablility);

    — or change the above styles to something like:

    #header h1 {
    		clear: both;
    		float: left;
    		font-size: 2.7em; /*CHANGE*/
    		padding: 25px 0 30px;
    	}
    		#header h1 a {
    			display: block;
    			width: 373px; height: 41px;
    			text-indent: 0px; /*CHANGE*/
    			outline: none;
    			background: none; /*CHANGE*/
          text-decoration:none; /*NEW*/
          font-family: times; /*NEW*/
          color: #123456; /*NEW*/
    		}

    adapt the changed or new values to your design.

Viewing 1 replies (of 1 total)
  • The topic ‘Innode Mag – Changing Title’ is closed to new replies.