Miasma Site > Site Info

The RED!!!!

(1/2) > >>

[MiA]Dave:
I thought I should be able to UserCP (profile) the red out but I can't find it. The red color is killing my old feeble eyes.
How do I change it?

[MiA]Raj:
If you're using Firefox, install Stylish and use CSS like this:


--- Code: ---@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("miasma.org") {
  a {
    color: yellow !important;
  }
}

--- End code ---

Veica:
Raj, it might just be me but I wasn't able to get that to work  :-[

However, what I tried under Chrome:

 - Installed Stylish
 - Went to the homepage (http://www.miasma.org/)
 - Clicked the Stylish icon and chose "Write style for: miasma.org"
 - Pasted the following CSS (I knew this because Raj helped me with my own site :D)


--- Code: ---a:link, a:visited
{
color: #FFFFFF;
text-decoration: none;
text-shadow: 1px 1px #000;
}

--- End code ---

You can change the #FFFFFF to anything you like, it's a hex value.

It's not perfect, but if you use your browser's devtools you should be able to live-edit the CSS, then copy it into Stylish's code area.

The result for above is:

[MiA]Raj:

--- Quote --- - Installed Stylish
 - Went to the homepage (http://www.miasma.org/)
 - Clicked the Stylish icon and chose "Write style for: miasma.org"
 - Pasted the following CSS (I knew this because Raj helped me with my own site )

--- End quote ---

The procedure is same/similar in FF. After selecting "Write style for: miasma.org", you're provided CSS like this:

--- Code: ---@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("miasma.org") {

}

--- End code ---

Then you write your rules in the @-moz-document block. @-moz-document is a Firefox (Mozilla) thing, which is why it failed if you used the exact same CSS in Chrome.

Veica:
That is a good point, I failed to realize that. At least now we've got FF and Chrome covered :P

Navigation

[0] Message Index

[#] Next page

Go to full version