Post by Selective555 » Fri Dec 26, 2014 4:21 pm

fdarn wrote:Are trying to change the color of your submit and add to cart buttons and the 5 star rating images? I think that is what you are saying. Those are all graphics. You have to upload your own graphic to overwrite those.

That is how I did it with my buttons See http://www.holstershack.com

Can I see your site please? if I am correct on my assumption of what you are trying to do I will explain exactly how to change the buttons. I did not need to change my review stars but I am sure it is done the same way.
I already fixed it, I did it all with script in the stylesheet.css and I tell how in earlier posts in this topic.

You can do it with a two image rollover on mouseover though, and that works for special design buttons.

Active Member

Posts

Joined
Wed Nov 26, 2014 1:29 pm

Post by Selective555 » Sat Dec 27, 2014 8:26 pm

The Blue has come back........

I made some popup links in my shop, and when they are clicked, they turn blue and stay blue until something else on the page is clicked on.

My first thought was to slip this script code into the stylesheet

Code: Select all

a:visited {
        text-decoration: none;
	color: #0000ff;
}
I used the color purple to see if I could change it to purple.

However, I realized it isn't acting as a visited link because it changes once another link is clicked on.

Anyone know how I can control this text color that mysteriously appears immediately a popup link is clicked, and stays till another link on the page is clicked on?

What is this type of (text color change after link is clicked) is this? What is it called? How can I change it?

Active Member

Posts

Joined
Wed Nov 26, 2014 1:29 pm

Post by Selective555 » Sat Dec 27, 2014 9:02 pm

Selective555 wrote:The Blue has come back........

I made some popup links in my shop, and when they are clicked, they turn blue and stay blue until something else on the page is clicked on.

My first thought was to slip this script code into the stylesheet

Code: Select all

a:visited {
        text-decoration: none;
	color: #0000ff;
}
I used the color purple to see if I could change it to purple.

However, I realized it isn't acting as a visited link because it changes once another link is clicked on.

Anyone know how I can control this text color that mysteriously appears immediately a popup link is clicked, and stays till another link on the page is clicked on?

What is this type of (text color change after link is clicked) is this? What is it called? How can I change it?
I figured it out. The stylesheet.css needs this script

Code: Select all

a:link {
	color: #888888;
}
to remove that blue after click color.

I went ahead and used all types to make sure I didn't miss anything

Code: Select all

a {
	color: #888888;
}
a:link {
	color: #888888;
}
a:hover {
        text-decoration: none;
	color: #800100;
}
a:active {
        text-decoration: none;
	color: #888888;
}
a:visited {
        text-decoration: none;
	color: #0000ff;
}
Goodbye Blue

Active Member

Posts

Joined
Wed Nov 26, 2014 1:29 pm
Who is online

Users browsing this forum: No registered users and 45 guests