Where are you trying to change it?
It looks like that may be generated from a template or other theme setting? In which case, you need to find where it’s pulling that text from.
What theme is that?
Thread Starter
Anam
(@laamashdotcom)
Thanks,
It is a personalised theme by my previous designing company.
Regards
Thread Starter
Anam
(@laamashdotcom)
Found nowhere, searched everywhere. Do you know any possible location where i could locate it?
Regards,
Perhaps it’s hard coded into the template for that page? Or a theme option? Really no way for anyone to know on a custom theme.
Thread Starter
Anam
(@laamashdotcom)
Hi,
Does below make any sense, found it under header.php
<hgroup>
<h1 id="site-title"><a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
</hgroup>
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Thanks
No, that’s actually a header title – it’s not visible because CSS has moved it off the page because you are using the logo in the header.
But I just looked again and found it! This CSS (line 3106) is doing something weird there:
#blue-bg h1 {
background: url("img/h1.png") no-repeat scroll 0 0 transparent;
height: 27px;
margin: 130px auto;
text-indent: -9999px;
width: 940px;
}
Change that to:
#blue-bg h1 {
height: 27px;
margin: 130px auto;
width: 940px;
color: white;
}
Fix the font size or whatever as you like.
Thread Starter
Anam
(@laamashdotcom)
Hi,
Thanks for your help that’s a big relief. For some reason the font size is not affecting. do i have to change in stylesheet.css or in homepage.php?
Regards,
This seems to work – too big obviously 🙂 so change as you like:
#blue-bg h1 {
color: white;
font-size: 50px;
height: 27px;
margin: 130px auto;
width: 940px;
}
Thread Starter
Anam
(@laamashdotcom)
Hi,
Thanks a lot. I appreciate your help.
Regards