DrClarke
June 27th, 2007, 17:50
I've been completely unsuccessful so far. I wanted to gain a bit more visual creative control in some areas and my first thought was to utilize .css
An example would be trying to manipulate one of the client.xml files located in any .mod
My example/test was to create a superscript ability that would to true superscript and give me more options than just the standard fake three I can get with ISO-8859-1.
I've tried a handful of ways, and I'll list off a few. I added them after the:
<?xml version="1.0" encoding="ISO-8859-1"?>
I've tried:
<?xml-stylesheet type="text/css" href="../something.css"?>
<?xml-stylesheet type="text/css" href="/something.css"?>
<?xml-stylesheet type="text/css" href="something.css"?>
<?xml-stylesheet type="text/css" href="https://www.mydomain.com/folder/something.css"?>
Example of .css I'm trying:
@charset "utf-8";
/* CSS Document */
sup {
font-size: smaller;
vertical-align: baseline;
position: relative;
bottom: 0.33em;
}
sub {
font-size: smaller;
vertical-align: baseline;
position: relative;
bottom: -0.25em;
}
An example would be trying to manipulate one of the client.xml files located in any .mod
My example/test was to create a superscript ability that would to true superscript and give me more options than just the standard fake three I can get with ISO-8859-1.
I've tried a handful of ways, and I'll list off a few. I added them after the:
<?xml version="1.0" encoding="ISO-8859-1"?>
I've tried:
<?xml-stylesheet type="text/css" href="../something.css"?>
<?xml-stylesheet type="text/css" href="/something.css"?>
<?xml-stylesheet type="text/css" href="something.css"?>
<?xml-stylesheet type="text/css" href="https://www.mydomain.com/folder/something.css"?>
Example of .css I'm trying:
@charset "utf-8";
/* CSS Document */
sup {
font-size: smaller;
vertical-align: baseline;
position: relative;
bottom: 0.33em;
}
sub {
font-size: smaller;
vertical-align: baseline;
position: relative;
bottom: -0.25em;
}