Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: color scheme

  1. #1
    Join Date
    Jan 2007
    Location
    3' from Hell
    Beans
    1,316

    color scheme

    Why do those that choose always choose such hideous colour combinations?
    Im color blind and it is still hideous.
    Last edited by mörgæs; March 2nd, 2013 at 02:34 PM.
    The only dumb question is the one not asked.

    In service to the Dream

  2. #2
    Join Date
    Mar 2012
    Beans
    782
    Distro
    Ubuntu Development Release

    Re: color scheme

    Same here. Color of the titles is just horrible.

    I DON'T EVEN KNOW WHAT A QUANTAL QUETZAL IS...BUT IT SOUNDS LIKE PRETZEL AND I LIKE PRETZEL

  3. #3
    Join Date
    Jun 2009
    Location
    0:0:0:0:0:0:0:1
    Beans
    5,169
    Distro
    Kubuntu

    Re: color scheme

    What color would you suggest?
    Laptop: ASUS A54C-NB91 (Storage: WD3200BEKT + MKNSSDCR60GB-DX); Desktop: Custom Build - Images included; rPi Server
    Putting your Networked Printer's scanner software to shame PHP Scanner Server
    I frequently edit my post when I have the last post

  4. #4
    Join Date
    Mar 2012
    Beans
    782
    Distro
    Ubuntu Development Release

    Re: color scheme

    Black would be great =)

    I DON'T EVEN KNOW WHAT A QUANTAL QUETZAL IS...BUT IT SOUNDS LIKE PRETZEL AND I LIKE PRETZEL

  5. #5
    Join Date
    Jan 2007
    Beans
    6,537
    Distro
    Ubuntu 13.04 Raring Ringtail

    Re: color scheme

    Quote Originally Posted by GreatDanton View Post
    Black would be great =)
    +1

    Links don't have to be a special colour, people understand about clicking on thread titles on a forum. This is not 1993.

  6. #6
    Join Date
    Jun 2009
    Location
    0:0:0:0:0:0:0:1
    Beans
    5,169
    Distro
    Kubuntu

    Re: color scheme

    Here, enjoy your black links in your firefox (If cat ~/.mozilla/firefox/*.default/chrome/userContent.css 2> /dev/null has output I don't suggest running this)
    Code:
    cd ~/.mozilla/firefox/*.default/;mkdir chrome;echo -e '@namespace url(http://www.w3.org/1999/xhtml);\n@-moz-document url-prefix("http://ubuntuforums.org/") {\n\tbody a {\n\t\tcolor:black!important;\n\t}\n}' > chrome/userContent.css;cd;echo "Now restart firefox and enjoy your black links"
    to change the color:
    Code:
    sed 's/old_color/new_color/' -i ~/.mozilla/firefox/*.default/chrome/userContent.css
    in this case old_color would be black
    to go back to default
    Code:
    rm ~/.mozilla/firefox/*.default/chrome/userContent.css
    Last edited by pqwoerituytrueiwoq; March 1st, 2013 at 09:29 PM.
    Laptop: ASUS A54C-NB91 (Storage: WD3200BEKT + MKNSSDCR60GB-DX); Desktop: Custom Build - Images included; rPi Server
    Putting your Networked Printer's scanner software to shame PHP Scanner Server
    I frequently edit my post when I have the last post

  7. #7
    Join Date
    Mar 2012
    Beans
    782
    Distro
    Ubuntu Development Release

    Re: color scheme

    Quote Originally Posted by pqwoerituytrueiwoq View Post
    Here, enjoy your black links in your firefox
    Code:
    cd ~/.mozilla/firefox/*.default/;mkdir chrome;echo -e '@namespace url(http://www.w3.org/1999/xhtml);\n@-moz-document url-prefix("http://ubuntuforums.org/") {\n\tbody a {\n\t\tcolor:black!important;\n\t}\n}' > chrome/userContent.css;cd;echo "Now restart firefox and enjoy your black links"

    Thank you. It's perfect now.

    I DON'T EVEN KNOW WHAT A QUANTAL QUETZAL IS...BUT IT SOUNDS LIKE PRETZEL AND I LIKE PRETZEL

  8. #8
    Join Date
    Jun 2009
    Location
    0:0:0:0:0:0:0:1
    Beans
    5,169
    Distro
    Kubuntu

    Re: color scheme

    i doubt you can see the links in my signature without putting you mouse over the text, probably affected the header as well
    Laptop: ASUS A54C-NB91 (Storage: WD3200BEKT + MKNSSDCR60GB-DX); Desktop: Custom Build - Images included; rPi Server
    Putting your Networked Printer's scanner software to shame PHP Scanner Server
    I frequently edit my post when I have the last post

  9. #9
    Join Date
    Mar 2012
    Beans
    782
    Distro
    Ubuntu Development Release

    Re: color scheme

    You are right. Links looks the same as text.

    I DON'T EVEN KNOW WHAT A QUANTAL QUETZAL IS...BUT IT SOUNDS LIKE PRETZEL AND I LIKE PRETZEL

  10. #10
    Join Date
    Jun 2009
    Location
    0:0:0:0:0:0:0:1
    Beans
    5,169
    Distro
    Kubuntu

    Re: color scheme

    you are welcome to lean a little CSS <- that is a link BTW
    Code:
    gedit ~/.mozilla/firefox/*.default/chrome/userContent.css
    replace gedit with your preferred editor, i like geany <- that is a link BTW
    The element targeting in css works like this (just the basics)
    Code:
    body a {
    the A element (a tags are links) must be contained in the body element (the body element contains all visible parts of a web page)
    Code:
    body a#someID {
    this modification requires the link to have a id attribute with the value "someID"
    Code:
    .someClass {
    this requires the target element to have the class attribute with a value of "someClass"
    Code:
    p > a {
    this will affect all links (A tag) that are directly inside of a paragraph element (P tag)
    Code:
    p > a, div span {
    commas can be used specify multiple targets
    Last edited by pqwoerituytrueiwoq; March 1st, 2013 at 10:11 PM.
    Laptop: ASUS A54C-NB91 (Storage: WD3200BEKT + MKNSSDCR60GB-DX); Desktop: Custom Build - Images included; rPi Server
    Putting your Networked Printer's scanner software to shame PHP Scanner Server
    I frequently edit my post when I have the last post

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •