How do I change my homepage category text's color?












0















Here is my site's address below:
https://seongkyun.github.io/



and my GitHub address for the site is below:
https://github.com/seongkyun/seongkyun.github.io



My question is: How do I change 'others' color pink #ec4c6a to dark blue #2d3e50?



But I can't find the code line for that.
I thought that I changed color code pink #ec4c6a to dark blue #2d3e50 exactly, but it is still having pink color #ec4c6a.



Only changed to dark blue #2d3e50 after clicked twice (hide menu and un-hide).
I've cleaned my cache files on my web browser but still has the same problem.



Please help me, guys :)










share|improve this question





























    0















    Here is my site's address below:
    https://seongkyun.github.io/



    and my GitHub address for the site is below:
    https://github.com/seongkyun/seongkyun.github.io



    My question is: How do I change 'others' color pink #ec4c6a to dark blue #2d3e50?



    But I can't find the code line for that.
    I thought that I changed color code pink #ec4c6a to dark blue #2d3e50 exactly, but it is still having pink color #ec4c6a.



    Only changed to dark blue #2d3e50 after clicked twice (hide menu and un-hide).
    I've cleaned my cache files on my web browser but still has the same problem.



    Please help me, guys :)










    share|improve this question



























      0












      0








      0








      Here is my site's address below:
      https://seongkyun.github.io/



      and my GitHub address for the site is below:
      https://github.com/seongkyun/seongkyun.github.io



      My question is: How do I change 'others' color pink #ec4c6a to dark blue #2d3e50?



      But I can't find the code line for that.
      I thought that I changed color code pink #ec4c6a to dark blue #2d3e50 exactly, but it is still having pink color #ec4c6a.



      Only changed to dark blue #2d3e50 after clicked twice (hide menu and un-hide).
      I've cleaned my cache files on my web browser but still has the same problem.



      Please help me, guys :)










      share|improve this question
















      Here is my site's address below:
      https://seongkyun.github.io/



      and my GitHub address for the site is below:
      https://github.com/seongkyun/seongkyun.github.io



      My question is: How do I change 'others' color pink #ec4c6a to dark blue #2d3e50?



      But I can't find the code line for that.
      I thought that I changed color code pink #ec4c6a to dark blue #2d3e50 exactly, but it is still having pink color #ec4c6a.



      Only changed to dark blue #2d3e50 after clicked twice (hide menu and un-hide).
      I've cleaned my cache files on my web browser but still has the same problem.



      Please help me, guys :)







      html github jekyll






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 31 '18 at 11:17









      Adriano

      1,34811325




      1,34811325










      asked Dec 31 '18 at 6:55









      Seongkyun HanSeongkyun Han

      123




      123
























          3 Answers
          3






          active

          oldest

          votes


















          1














          Your color got stamped with this css so you should change this line on your main.css:



          .page h2, .tags-expo-section h2 {
          font-size: 1.2rem;
          color: #ec4c6a;
          }


          into



          .page h2, .tags-expo-section h2 {
          font-size: 1.2rem;
          color: #2d3e50;
          }





          share|improve this answer


























          • Thanks. I've found that lines in _scss/component/_page.scss. And it works. Thanks!

            – Seongkyun Han
            Jan 1 at 13:41



















          0














          You color code is overwritten by other code, just try !important



          color: #2d3e50 !important;





          share|improve this answer

































            0














            if your external CSS is the problem to load simply you can use internal CSS style like



            <h3 style="color:your color code;"></h3>





            share|improve this answer























              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53984508%2fhow-do-i-change-my-homepage-category-texts-color%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              1














              Your color got stamped with this css so you should change this line on your main.css:



              .page h2, .tags-expo-section h2 {
              font-size: 1.2rem;
              color: #ec4c6a;
              }


              into



              .page h2, .tags-expo-section h2 {
              font-size: 1.2rem;
              color: #2d3e50;
              }





              share|improve this answer


























              • Thanks. I've found that lines in _scss/component/_page.scss. And it works. Thanks!

                – Seongkyun Han
                Jan 1 at 13:41
















              1














              Your color got stamped with this css so you should change this line on your main.css:



              .page h2, .tags-expo-section h2 {
              font-size: 1.2rem;
              color: #ec4c6a;
              }


              into



              .page h2, .tags-expo-section h2 {
              font-size: 1.2rem;
              color: #2d3e50;
              }





              share|improve this answer


























              • Thanks. I've found that lines in _scss/component/_page.scss. And it works. Thanks!

                – Seongkyun Han
                Jan 1 at 13:41














              1












              1








              1







              Your color got stamped with this css so you should change this line on your main.css:



              .page h2, .tags-expo-section h2 {
              font-size: 1.2rem;
              color: #ec4c6a;
              }


              into



              .page h2, .tags-expo-section h2 {
              font-size: 1.2rem;
              color: #2d3e50;
              }





              share|improve this answer















              Your color got stamped with this css so you should change this line on your main.css:



              .page h2, .tags-expo-section h2 {
              font-size: 1.2rem;
              color: #ec4c6a;
              }


              into



              .page h2, .tags-expo-section h2 {
              font-size: 1.2rem;
              color: #2d3e50;
              }






              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Dec 31 '18 at 9:11









              Adriano

              1,34811325




              1,34811325










              answered Dec 31 '18 at 7:04









              auronsan zenxauronsan zenx

              113




              113













              • Thanks. I've found that lines in _scss/component/_page.scss. And it works. Thanks!

                – Seongkyun Han
                Jan 1 at 13:41



















              • Thanks. I've found that lines in _scss/component/_page.scss. And it works. Thanks!

                – Seongkyun Han
                Jan 1 at 13:41

















              Thanks. I've found that lines in _scss/component/_page.scss. And it works. Thanks!

              – Seongkyun Han
              Jan 1 at 13:41





              Thanks. I've found that lines in _scss/component/_page.scss. And it works. Thanks!

              – Seongkyun Han
              Jan 1 at 13:41













              0














              You color code is overwritten by other code, just try !important



              color: #2d3e50 !important;





              share|improve this answer






























                0














                You color code is overwritten by other code, just try !important



                color: #2d3e50 !important;





                share|improve this answer




























                  0












                  0








                  0







                  You color code is overwritten by other code, just try !important



                  color: #2d3e50 !important;





                  share|improve this answer















                  You color code is overwritten by other code, just try !important



                  color: #2d3e50 !important;






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Dec 31 '18 at 9:47









                  Adriano

                  1,34811325




                  1,34811325










                  answered Dec 31 '18 at 7:34









                  MaheskumarMaheskumar

                  1215




                  1215























                      0














                      if your external CSS is the problem to load simply you can use internal CSS style like



                      <h3 style="color:your color code;"></h3>





                      share|improve this answer




























                        0














                        if your external CSS is the problem to load simply you can use internal CSS style like



                        <h3 style="color:your color code;"></h3>





                        share|improve this answer


























                          0












                          0








                          0







                          if your external CSS is the problem to load simply you can use internal CSS style like



                          <h3 style="color:your color code;"></h3>





                          share|improve this answer













                          if your external CSS is the problem to load simply you can use internal CSS style like



                          <h3 style="color:your color code;"></h3>






                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Dec 31 '18 at 9:58









                          RamRam

                          397




                          397






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53984508%2fhow-do-i-change-my-homepage-category-texts-color%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Monofisismo

                              Angular Downloading a file using contenturl with Basic Authentication

                              Olmecas