• Resolved nolastar

    (@nolastar)


    I am trying to use the “FreshCitrus” theme and all is fine except that my blog title won’t show up. Instead of where it should be it still says FreshCitrus.
    In the General section under Settings it has my title, and my title works on all the other themes I’ve tried.

    The site is https://www.StressBully.ca

    Any help would be appreciated. I like the theme but if need be can find another one.
    Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Do you mean that you want the words “Stress Bully” to appear, but the header image (https://stressbully.ca/wp-content/themes/freshcitrus/images/logo.png) does instead?

    Thread Starter nolastar

    (@nolastar)

    Yes, exactly.

    You can either replace logo.png with an image the same size or:

    Go to line 117 in your theme’s style.css file and change

    #header h1{
    	width: 235px;
    	height: 81px;
    	line-height: 81px;
    	text-indent: -9999px;
    }
    #header h1 a{
    	width: 235px;
    	height: 81px;
    	display: block;
    	background: url("images/logo.png") no-repeat 0 0;
    }
    #description{
    	width: 860px;
    	color: #fff;
    	display: block;
    	font-size: 16px;
    	padding-left: 40px;
    	margin-top: -15px;
    	text-transform: lowercase;
    	z-index: 100;
    }

    to

    #header h1{
    	width: 235px;
    	height: 81px;
    	line-height: 81px;
    	/*text-indent: -9999px;*/
    	text-indent: 35px;
    }
    #header h1 a{
    	width: 235px;
    	height: 81px;
    	display: block;
    	/*background: url("images/logo.png") no-repeat 0 0;*/
    }
    h1 span.inv {
    	visibility: visible;
    }
    #description {
    	width: 860px;
    	color: #fff;
    	display: block;
    	font-size: 16px;
    	padding-left: 40px;
    	/*margin-top: -15px;*/
    	margin-top: -25px;
    	text-transform: lowercase;
    	z-index: 100;
    }

    To control how far left/right the Stress Bully text is alter the value for #header h1 { text-indent: 35px } (the greater the value the more it moves right)

    To control how far up/down the “on-site chair massage” text is alter the value for #description { margin-top: -25px } (the more negative the value the more it moves up)

    Thread Starter nolastar

    (@nolastar)

    Thanks so much, jkovis. That fixed it right up. If I could trouble you once more though, could you tell me how to increase the font size for “Stress Bully”? I figured out how to do it for “on-site chair massage” but not the main title.
    Thanks!

    could you tell me how to increase the font size for "Stress Bully"?

    Go to line 117 in the theme’s style.css file and replace:

    #header h1{
    	width: 235px;
    	height: 81px;
    	line-height: 81px;
    	/*text-indent: -9999px;*/
    	text-indent: 35px;
    }
    #header h1 a{
    	width: 235px;
    	height: 81px;
    	display: block;
    	/*background: url("images/logo.png") no-repeat 0 0;*/
    }

    with:

    #header h1 {
    	/*width: 235px;*/
    	/*height: 81px;*/
    	/*text-indent: -9999px;*/
    	line-height: 81px;
    	text-indent: 35px;
    	font-size: 50px;
    	margin-bottom: 10px;
    }
    #header h1 a {
    	display: block;
    	/*width: 235px;*/
    	/*height: 81px;*/
    	/*background: url("images/logo.png") no-repeat 0 0;*/
    }

    To increase the “Stress Bully” text size, increase the font-size: value. To increase the space between the “Stress Bully” and “on-site chair massage” text, increase the margin-bottom: value.

    Thread Starter nolastar

    (@nolastar)

    Perfecto! You da man, jkovis!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Blog title not showing up’ is closed to new replies.