Jump to content

Recommended Posts

Posted
I'm very new to using the Joomla package - can you please tell me how I can get a consistent look for my links, normally unread links appear blue, read links appear purple etc etc, on my published page I have red, blue and purple links - eek!! Any advice would be gratefully received
Posted

Hi Tracy,

 

I am not using the edugeek package, but usually to change those sorts of things you need to go to the joomla backend (administrator panel) then go to Site > Template Manager> Site Templates then choose select the template you are using and choose Edit CSS somewhere in the css file will be the colour information for links e.g

 

/* Normal link */
a {
color: #4D84A7;
text-decoration: none;
}

a:hover, a:active, a:focus {
color: #333333;
text-decoration: underline;
}

 

In this case the top colour #4D84A7 is the standard link colour and the hover and active, focus #333333 are the ones you see when you mouse over or have already visited a link.

 

The code above btw might differ slightly depending on your template. As Sysman says if you post your site you can have a look at the CSS from the browser.

 

Cheers

 

Shorty ( also from Cumbria)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...