What code do you use in order to get something to accept the styles that are already on the web page?
I'm not sure what you mean. Maybe this: "styles that are already on the web page": .something { color: red; } *** <p class="something"> <div class="something">
Sorry, I'm not 100% sure of what I'm meaning myself Basically I have a piece of code I want to include on my site that seems to have it's own style. I want this piece of code to take on the styles already on my page. Does that make sense?
If it has it's own style you need to conform the item to the style you are needing. The code below uses pctop1 as its reference and connects it to the color ffffff (white) - You might be using something similar already in the <head> of your page. Change the item to the name reference that the style needs. It would be nice to see what part of your item code holds the css code and we could help more. <style type="text/css"> <!-- a.pctop1 {color: #ffffff;} a.pctop1:hover {color: #bbbbbb; background: none;} --> </style>