var _gaq = _gaq || []; _gaq.push([\'_setAccount\', \'UA-13211647-1\']); _gaq.push([\'_trackPageview\']); (function() { var ga = document.createElement(\'script\'); ga.type = \'text/javascript\'; ga.async = true; ga.src = (\'https:\' == document.location.protocol ? \'https://ssl\' : \'http://www\') + \'.google-analytics.com/ga.js\'; var s = document.getElementsByTagName(\'script\')[0]; s.parentNode.insertBefore(ga, s); })();

5 Responses so far.

  1. リアル色弱 says:

    助かりました。本当にありがとうございます。

  2. Google Claim says:

    Google Chromeで困っていたので助かりました。
    1つ疑問があるのですが、Custom.cssの「Purple」を「Red」に置き換えて使用しています。「#61C 」って何か意味があるのでしょうか?。Redは別の値に変更しなければならないのでしょうか?

    • attosoft says:

      コメントありがとうございます。
      おそらく CSS の書き方に関する質問になるかと思います。

      div#search a:link {
          /* color: blue !important; /* default: #12C */
      }
      
      div#search a:visited {
          color: purple !important; /* default: #61C */
      }
      

      CSS では /* … */ の部分はコメントになりますので Custom.css で意味のある部分は

      div#search a:link {
      }
      
      div#search a:visited {
          color: purple !important;
      }
      

      となります。つまり「/* default: #61C */」という部分は「デフォルト色が #61C」という参考情報に過ぎません。また CSS では色をキーワードまたは RGB (赤緑青) で指定しますので “Red” を別の値に変更する必要は特にありません。

    • Google Claim says:

      早速のご回答、感謝です。
      なるほど、疑問が解けました!
      ありがとうございました。

Leave a Reply

Your email address will not be published.