Hello :)

i just successfully installed the glossary view which is working good and do what i want ! :)
my issue is about the link in the glossary which are in blue, i don t know why it's blue nothing in my theme is blue :(

how can i change that ?

thank you :)

Comments

sanjay.soni’s picture

Just try to add CSS class on the wrapper of Glossary link and change the color through CSS.

Best Regards,
Sanjay
skype:er.sanjaysoni

thou92’s picture

thank you for your answer!

unfortunatly i am not use to create css file :/
i am able to modify when they ar already created but create one it's a litle bite to difficult for me for the moment :(

sanjay.soni’s picture

You don't need to create CSS file separately. please use existing CSS file that is included in header.

Best Regards,
Sanjay
skype:er.sanjaysoni

thou92’s picture

solution found :)

in fact it was a user agent stylesheet

so i just add a the end of my CSS file and it's work good :)

a:-webkit-any-link {
color: WHAT I WANT ;
text-decoration: underline;
cursor: auto;

narendraR’s picture

Don't hack core. If you are doing some changes in drupal core theme, even in css file, these changes will get vanish as soon as you update your drupal core.
Better will be to create a sub theme and use that.

https://www.drupal.org/node/225125

Let's Drupal

thou92’s picture

i know that you are right but i am not an advanced user :( i dont know how to do this

the change i made is only working on chrome and not in IE and firefox :( do you know why ?

narendraR’s picture

It might be a cache issue. Clear your browser and site cache.

Let's Drupal

sanjay.soni’s picture

"WebKit is a layout engine software component for rendering web pages in web browsers. It powers Apple's Safari web browser, and a fork of the project is used by Google's Chrome web browser."

As I don't have much context I don't know even your are hacking Drupal core, theme or any module like Views Glossary that you should not.

What I know that You have to add your custom CSS class(to any parent to that link) and that should be manage through your own css.

Like this :
.YOURClass a{
color: WHAT I WANT ;
text-decoration: underline;
cursor: auto;

After this you might need to clear Drupal cache and Browser cache.

Best Regards,
Sanjay
skype:er.sanjaysoni