Removing Underlines In Phoca Acero template

Phoca Templates - templates for Joomla! CMS
jimmy
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 07 Nov 2008, 07:49

Removing Underlines In Phoca Acero template

Post by jimmy »

How do I remove the underlines in the Phoca Acero template? The underlines of the post titles, the underline of the latest news, and others things. I have tried removing the text-decoration underlines in the css and it did not work so there has to be something else that is responsible for the bottom underlines.

Thank you,
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 47883
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Removing Underlines In Phoca Acero template

Post by Jan »

???

Hi, please let me know the site, I don't know which underlines you mean ?

http://www.joomlademos.de/home?template=phoca_acero

Jan
If you find Phoca extensions useful, please support the project
jimmy
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 07 Nov 2008, 07:49

Re: Removing Underlines In Phoca Acero template

Post by jimmy »

In the demo dite look at the titles of the post, and you will see an underline under each title.

example from demo site

Willkommen bei Joomla!
___________________________

Wir sind Freiwillige
___________________________

Bleib beim Code!
________________________________

You see the underlines under the name of the post from demo site. These are the underlines I am talking about. I want them without the under lines. example below without the underlines.

Willkommen bei Joomla!
Wir sind Freiwillige
Bleib beim Code!

Thanks Jan,
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 47883
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Removing Underlines In Phoca Acero template

Post by Jan »

:-) ... yes, there are underline because they are links and links should be underline... you can change it in CSS, just add to the "a" class text-decoration:none (text-decoration: underline is a default value in xhtml, so it is not defined)

Code: Select all

a {
    text-decoration: none;
}
Jan
If you find Phoca extensions useful, please support the project
jimmy
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 07 Nov 2008, 07:49

Re: Removing Underlines In Phoca Acero template

Post by jimmy »

Thanks, Jan

It worked and solved the problem.
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 47883
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: Removing Underlines In Phoca Acero template

Post by Jan »

Great to hear it, Jan :wink:
If you find Phoca extensions useful, please support the project
Post Reply