07-11-2011, 12:21 AM
(This post was last modified: 07-11-2011, 12:22 AM by AceInfinity.)
It's an iframe? Easy, i've done it on two pages already. Take a look here:
sfchat.net
Inspect the webpage, I created it myself, if you need any help just ask, but the IRC chat itself is an IFRAME. You should be able to figure it out through a few html webmaster addons/tools or extensions in chrome(/iron) that are already built in.
"Inspect Element" is sufficient for what you want to know.
Basically some IFRAMES embedd their own css in them, but you should be able to contain it's value by placing it within a <div id="something">
and using a css block with something like:
sfchat.net
Inspect the webpage, I created it myself, if you need any help just ask, but the IRC chat itself is an IFRAME. You should be able to figure it out through a few html webmaster addons/tools or extensions in chrome(/iron) that are already built in.
"Inspect Element" is sufficient for what you want to know.
Basically some IFRAMES embedd their own css in them, but you should be able to contain it's value by placing it within a <div id="something">
and using a css block with something like:
Code:
div#something {
whatever: whatever;
}