How do I change my homepage category text's color?
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
add a comment |
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
add a comment |
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
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
html github jekyll
edited Dec 31 '18 at 11:17
Adriano
1,34811325
1,34811325
asked Dec 31 '18 at 6:55
Seongkyun HanSeongkyun Han
123
123
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
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;
}
Thanks. I've found that lines in_scss/component/_page.scss
. And it works. Thanks!
– Seongkyun Han
Jan 1 at 13:41
add a comment |
You color code is overwritten by other code, just try !important
color: #2d3e50 !important;
add a comment |
if your external CSS is the problem to load simply you can use internal CSS style like
<h3 style="color:your color code;"></h3>
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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;
}
Thanks. I've found that lines in_scss/component/_page.scss
. And it works. Thanks!
– Seongkyun Han
Jan 1 at 13:41
add a comment |
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;
}
Thanks. I've found that lines in_scss/component/_page.scss
. And it works. Thanks!
– Seongkyun Han
Jan 1 at 13:41
add a comment |
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;
}
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;
}
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
add a comment |
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
add a comment |
You color code is overwritten by other code, just try !important
color: #2d3e50 !important;
add a comment |
You color code is overwritten by other code, just try !important
color: #2d3e50 !important;
add a comment |
You color code is overwritten by other code, just try !important
color: #2d3e50 !important;
You color code is overwritten by other code, just try !important
color: #2d3e50 !important;
edited Dec 31 '18 at 9:47
Adriano
1,34811325
1,34811325
answered Dec 31 '18 at 7:34
MaheskumarMaheskumar
1215
1215
add a comment |
add a comment |
if your external CSS is the problem to load simply you can use internal CSS style like
<h3 style="color:your color code;"></h3>
add a comment |
if your external CSS is the problem to load simply you can use internal CSS style like
<h3 style="color:your color code;"></h3>
add a comment |
if your external CSS is the problem to load simply you can use internal CSS style like
<h3 style="color:your color code;"></h3>
if your external CSS is the problem to load simply you can use internal CSS style like
<h3 style="color:your color code;"></h3>
answered Dec 31 '18 at 9:58
RamRam
397
397
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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