How Can I Remove This Text?

Everything to do with Joomla! 1.5 templates and templating.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Locked
TGDNick
Joomla! Apprentice
Joomla! Apprentice
Posts: 42
Joined: Mon Jun 07, 2010 11:02 pm

How Can I Remove This Text?

Post by TGDNick » Sat Oct 09, 2010 9:11 pm

Hello guys, well if you look in this link http://www.thesuitgallery.co.uk/ you can see that there is text over the top of my logo that I have just placed, and I am just wondering how I can remove the text text as I have been searching for hours now : (

Markstein
Joomla! Hero
Joomla! Hero
Posts: 2268
Joined: Sat Feb 09, 2008 8:27 am
Location: California, USA

Re: How Can I Remove This Text?

Post by Markstein » Sat Oct 09, 2010 9:27 pm

A simple way to do this would be to modify your CSS. Go into this file:

http://www.thesuitgallery.co.uk/templat ... mplate.css

and find:

Code: Select all

.logo-text {position: absolute;right: 3px;top: 15px;text-transform: uppercase;font-size: 13px;}
Add "display: none" to the code like so:

Code: Select all

.logo-text {position: absolute;right: 3px;top: 15px;text-transform: uppercase;font-size: 13px; display: none;}
Mark

User avatar
enbees
Joomla! Guru
Joomla! Guru
Posts: 860
Joined: Mon Sep 20, 2010 7:58 am
Location: Jakarta - Indonesia
Contact:

Re: How Can I Remove This Text?

Post by enbees » Sun Oct 10, 2010 4:15 am

If what Mark suggested doesn't work, try this

template.css line 39:

Code: Select all

.logo-text {
font-size:0; /* CHANGE */
position:absolute;
right:3px;
text-transform:uppercase;
top:15px;
}
Regards,
enbees, I'm here: http://koperasoft.com

User avatar
enbees
Joomla! Guru
Joomla! Guru
Posts: 860
Joined: Mon Sep 20, 2010 7:58 am
Location: Jakarta - Indonesia
Contact:

Re: How Can I Remove This Text?

Post by enbees » Mon Oct 11, 2010 2:26 am

enbees wrote:If what Mark suggested doesn't work, try this
Surely: its works! Ive seen it. Sorry Mark :D
Regards,
enbees, I'm here: http://koperasoft.com

Phasin8
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Fri Oct 01, 2010 7:55 am

Re: How Can I Remove This Text?

Post by Phasin8 » Mon Oct 11, 2010 12:39 pm

I have tried this on anther site and does work :)

Phasin8
Joomla! Apprentice
Joomla! Apprentice
Posts: 7
Joined: Fri Oct 01, 2010 7:55 am

Re: How Can I Remove This Text?

Post by Phasin8 » Mon Oct 11, 2010 12:39 pm

Good work guys Thanks, :)

User avatar
velcrobots
Joomla! Intern
Joomla! Intern
Posts: 63
Joined: Thu Jan 22, 2009 9:05 pm

Re: How Can I Remove This Text?

Post by velcrobots » Mon Oct 11, 2010 2:57 pm

From what I know font-size:0 can be unpredictable.

I always use:

Code: Select all

text-indent:-9999px
Mike Giaimo, Owner
Inspira Web Design - Wayne, NJ
www.inspirawebdesign.com


Locked

Return to “Templates for Joomla! 1.5”