Thread Starter
BILL4
(@bill4)
noone? pls help me..
Thanks…
You can probably hide it with some css if you don’t want to mess too much with the code. For more info, you should provide a link to your site.
Thread Starter
BILL4
(@bill4)
thx for you reply sylvain,
I dont understand what you mean with the css thing.. style.css??
can you be more spacificate pls?
Do you know how to hide it?
my site is not ready yet and it’s down..
Thanks again..
Phil
(@owendevelopment)
Never used this theme before, but there are 2 ways to do it:
1. Remove the php call from the code (could be archive.php, single.php or any other – depending on the theme).
2. you could cheat (as Sylvain posted), by opening your CSS (style.css) and find:
.generic {
color: #555555;
font-family: Arial,Helvetica,Sans-serif;
font-size: 20px;
font-weight: bold;
margin: 0 0 10px;
padding: 0 0 10px;
text-decoration: underline;
text-transform: uppercase;
}
just add:
display: none;
… in amongst the other styling and it should disappear. This way is cheating as it’s not removing the name, it just stops it being shown in a browser.
Hope this helps
Phil