how to change text color in category view in magento2I want to change a category name/text link to a picture in the main navigation barDisplay product text attribute on categoryChange placeholder text color in Magento 2 search boxHow to change color / hover color of icons? - Magento2How to move category description text?Change the background color of the catalog product view page?How to show dropdown configurable attribute in Product Category View in Magento 2?Is it possible to change category names or create new category if category is available programmatically magento 2?How to change welcome text in Magento 1.7?Color Swatch not showing on search result page in magento2
Finding angle with pure Geometry.
Why doesn't H₄O²⁺ exist?
Voyeurism but not really
Writing rule stating superpower from different root cause is bad writing
"to be prejudice towards/against someone" vs "to be prejudiced against/towards someone"
Today is the Center
Why do I get two different answers for this counting problem?
Is it possible to do 50 km distance without any previous training?
What are the differences between the usage of 'it' and 'they'?
Can divisibility rules for digits be generalized to sum of digits
What's the output of a record cartridge playing an out-of-speed record
Minkowski space
Do I have a twin with permutated remainders?
Mathematical cryptic clues
Replacing matching entries in one column of a file by another column from a different file
Fencing style for blades that can attack from a distance
Why can't I see bouncing of a switch on an oscilloscope?
How to format long polynomial?
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
How does one intimidate enemies without having the capacity for violence?
Why do falling prices hurt debtors?
Smoothness of finite-dimensional functional calculus
Why don't electron-positron collisions release infinite energy?
Pattern match does not work in bash script
how to change text color in category view in magento2
I want to change a category name/text link to a picture in the main navigation barDisplay product text attribute on categoryChange placeholder text color in Magento 2 search boxHow to change color / hover color of icons? - Magento2How to move category description text?Change the background color of the catalog product view page?How to show dropdown configurable attribute in Product Category View in Magento 2?Is it possible to change category names or create new category if category is available programmatically magento 2?How to change welcome text in Magento 1.7?Color Swatch not showing on search result page in magento2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to change text color in magento 2 for product names and nested names in category view.
Can someone point me in right direction.
magento2 layout category
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I am trying to change text color in magento 2 for product names and nested names in category view.
Can someone point me in right direction.
magento2 layout category
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I am trying to change text color in magento 2 for product names and nested names in category view.
Can someone point me in right direction.
magento2 layout category
I am trying to change text color in magento 2 for product names and nested names in category view.
Can someone point me in right direction.
magento2 layout category
magento2 layout category
edited Mar 7 at 14:30
Rizwan
880526
880526
asked Oct 15 '16 at 0:41
guru1guru1
1
1
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 1 hour ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
If You need to change Product Name color In Product details Page:
Add below css Code to our custom Theme:
body
color:red !important
Next If you want change Product Name Color In Category Page:
Add below css Code to our custom Theme:
.product-item-name > a, .product.name a > a
color: red !important;
text-decoration: none;
Update:
You need to create one custom them like luma , blank. then add this above css code to our custom theme.
Folow this link to create custom theme:
https://www.mageplaza.com/kb/how-to-create-magento-2-theme.html
http://devdocs.magento.com/guides/v2.1/frontend-dev-guide/themes/theme-create.html
https://www.cloudways.com/blog/create-custom-theme-magento-2-part-1/
http://blog.belvg.com/creating-and-managing-themes-in-magento-2-0.html
Thanx, what do you mean our custom theme
– guru1
Oct 15 '16 at 8:19
I update my answer
– Rajkumar .E
Oct 15 '16 at 9:44
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2fmagento.stackexchange.com%2fquestions%2f140984%2fhow-to-change-text-color-in-category-view-in-magento2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
If You need to change Product Name color In Product details Page:
Add below css Code to our custom Theme:
body
color:red !important
Next If you want change Product Name Color In Category Page:
Add below css Code to our custom Theme:
.product-item-name > a, .product.name a > a
color: red !important;
text-decoration: none;
Update:
You need to create one custom them like luma , blank. then add this above css code to our custom theme.
Folow this link to create custom theme:
https://www.mageplaza.com/kb/how-to-create-magento-2-theme.html
http://devdocs.magento.com/guides/v2.1/frontend-dev-guide/themes/theme-create.html
https://www.cloudways.com/blog/create-custom-theme-magento-2-part-1/
http://blog.belvg.com/creating-and-managing-themes-in-magento-2-0.html
Thanx, what do you mean our custom theme
– guru1
Oct 15 '16 at 8:19
I update my answer
– Rajkumar .E
Oct 15 '16 at 9:44
add a comment |
If You need to change Product Name color In Product details Page:
Add below css Code to our custom Theme:
body
color:red !important
Next If you want change Product Name Color In Category Page:
Add below css Code to our custom Theme:
.product-item-name > a, .product.name a > a
color: red !important;
text-decoration: none;
Update:
You need to create one custom them like luma , blank. then add this above css code to our custom theme.
Folow this link to create custom theme:
https://www.mageplaza.com/kb/how-to-create-magento-2-theme.html
http://devdocs.magento.com/guides/v2.1/frontend-dev-guide/themes/theme-create.html
https://www.cloudways.com/blog/create-custom-theme-magento-2-part-1/
http://blog.belvg.com/creating-and-managing-themes-in-magento-2-0.html
Thanx, what do you mean our custom theme
– guru1
Oct 15 '16 at 8:19
I update my answer
– Rajkumar .E
Oct 15 '16 at 9:44
add a comment |
If You need to change Product Name color In Product details Page:
Add below css Code to our custom Theme:
body
color:red !important
Next If you want change Product Name Color In Category Page:
Add below css Code to our custom Theme:
.product-item-name > a, .product.name a > a
color: red !important;
text-decoration: none;
Update:
You need to create one custom them like luma , blank. then add this above css code to our custom theme.
Folow this link to create custom theme:
https://www.mageplaza.com/kb/how-to-create-magento-2-theme.html
http://devdocs.magento.com/guides/v2.1/frontend-dev-guide/themes/theme-create.html
https://www.cloudways.com/blog/create-custom-theme-magento-2-part-1/
http://blog.belvg.com/creating-and-managing-themes-in-magento-2-0.html
If You need to change Product Name color In Product details Page:
Add below css Code to our custom Theme:
body
color:red !important
Next If you want change Product Name Color In Category Page:
Add below css Code to our custom Theme:
.product-item-name > a, .product.name a > a
color: red !important;
text-decoration: none;
Update:
You need to create one custom them like luma , blank. then add this above css code to our custom theme.
Folow this link to create custom theme:
https://www.mageplaza.com/kb/how-to-create-magento-2-theme.html
http://devdocs.magento.com/guides/v2.1/frontend-dev-guide/themes/theme-create.html
https://www.cloudways.com/blog/create-custom-theme-magento-2-part-1/
http://blog.belvg.com/creating-and-managing-themes-in-magento-2-0.html
edited Oct 15 '16 at 9:43
answered Oct 15 '16 at 4:37
Rajkumar .ERajkumar .E
1,74551645
1,74551645
Thanx, what do you mean our custom theme
– guru1
Oct 15 '16 at 8:19
I update my answer
– Rajkumar .E
Oct 15 '16 at 9:44
add a comment |
Thanx, what do you mean our custom theme
– guru1
Oct 15 '16 at 8:19
I update my answer
– Rajkumar .E
Oct 15 '16 at 9:44
Thanx, what do you mean our custom theme
– guru1
Oct 15 '16 at 8:19
Thanx, what do you mean our custom theme
– guru1
Oct 15 '16 at 8:19
I update my answer
– Rajkumar .E
Oct 15 '16 at 9:44
I update my answer
– Rajkumar .E
Oct 15 '16 at 9:44
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- 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%2fmagento.stackexchange.com%2fquestions%2f140984%2fhow-to-change-text-color-in-category-view-in-magento2%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