How to change background color of a link in magento 2.0Magento2 : How to change the footer background color in luma-theme?How to change background color of only this section which mark at logoMagento 2 change Mobile Footer background colorMagento 2: How to Change Default Captcha Font, Color & BackgroundMagento 2 : Change Top Menu Alignment from Vertical to HorizontalChange Navigation Menu text color individuallyChange the White Background color to another color in magento 2.3.0change the default magento image background white color to diffrent colorMagento 2, Change On click instead of 'hover' for menuMagento 2: How to change background color on products list?
Alphabet completion rate
Is there a maximum distance from a planet that a moon can orbit?
Why is Madam Hooch not a professor?
Why is the Turkish president's surname spelt in Russian as Эрдоган, with г?
What would Earth look like at night in medieval times?
How well known and how commonly used was Huffman coding in 1979?
Is it okay to visually align the elements in a logo?
The impact of an intelligent and (mostly) hostile flying race on weapons and armor
Does anycast addressing add additional latency in any way?
What do you call the action of someone tackling a stronger person?
Why do some games show lights shine through walls?
How many codes are possible?
Do I recheck baggage at stopovers MCI-SEA-ICN-SGN? Delta and Korean Air
Short story with brother-sister conjoined twins as protagonists?
Should my manager be aware of private LinkedIn approaches I receive? How to politely have this happen?
A player is constantly pestering me about rules, what do I do as a DM?
First-year PhD giving a talk among well-established researchers in the field
How often can a PC check with passive perception during a combat turn?
Architecture of networked game engine
Why does adding parentheses prevent an error?
How to get cool night-vision without lame drawbacks?
What is this particular type of chord progression, common in classical music, called?
Does ultrasonic bath cleaning damage laboratory volumetric glassware calibration?
How to positively portray high and mighty characters?
How to change background color of a link in magento 2.0
Magento2 : How to change the footer background color in luma-theme?How to change background color of only this section which mark at logoMagento 2 change Mobile Footer background colorMagento 2: How to Change Default Captcha Font, Color & BackgroundMagento 2 : Change Top Menu Alignment from Vertical to HorizontalChange Navigation Menu text color individuallyChange the White Background color to another color in magento 2.3.0change the default magento image background white color to diffrent colorMagento 2, Change On click instead of 'hover' for menuMagento 2: How to change background color on products list?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
How to change vertical menu background color on hover in Magento 2
I want like this.
magento2 menu navigation
add a comment |
How to change vertical menu background color on hover in Magento 2
I want like this.
magento2 menu navigation
add a comment |
How to change vertical menu background color on hover in Magento 2
I want like this.
magento2 menu navigation
How to change vertical menu background color on hover in Magento 2
I want like this.
magento2 menu navigation
magento2 menu navigation
edited Jun 17 at 5:18
Aasim Goriya
3,2371 gold badge11 silver badges43 bronze badges
3,2371 gold badge11 silver badges43 bronze badges
asked Jun 23 '16 at 14:07
vnnogile_uservnnogile_user
1272 gold badges3 silver badges15 bronze badges
1272 gold badges3 silver badges15 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Right click and inspect the element. Use chrome developer or your browsers equivalent. Look in the box on the far right. You'll see :hov, click on it and you'll be able to select the css hover/focus/active/visited styles. Then just copy the element + :hover and add your style to your custom.css file.
<vendor>/<theme>/web/css/custom.css(or whatever you call your css file)
I tried that but it's not useful
– vnnogile_user
Jun 23 '16 at 14:19
Can you see what element the style is being applied to in Firebug?
– Azul_Falcone
Jun 23 '16 at 14:25
I tried all ways but still not getting
– vnnogile_user
Jun 24 '16 at 13:16
Have you tried inspecting the<li class="category-menu dropdown"></li>
Generally background-color is applied there.
– Azul_Falcone
Jun 24 '16 at 13:32
I tried that also.
– vnnogile_user
Jun 27 '16 at 9:19
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%2f122516%2fhow-to-change-background-color-of-a-link-in-magento-2-0%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
Right click and inspect the element. Use chrome developer or your browsers equivalent. Look in the box on the far right. You'll see :hov, click on it and you'll be able to select the css hover/focus/active/visited styles. Then just copy the element + :hover and add your style to your custom.css file.
<vendor>/<theme>/web/css/custom.css(or whatever you call your css file)
I tried that but it's not useful
– vnnogile_user
Jun 23 '16 at 14:19
Can you see what element the style is being applied to in Firebug?
– Azul_Falcone
Jun 23 '16 at 14:25
I tried all ways but still not getting
– vnnogile_user
Jun 24 '16 at 13:16
Have you tried inspecting the<li class="category-menu dropdown"></li>
Generally background-color is applied there.
– Azul_Falcone
Jun 24 '16 at 13:32
I tried that also.
– vnnogile_user
Jun 27 '16 at 9:19
add a comment |
Right click and inspect the element. Use chrome developer or your browsers equivalent. Look in the box on the far right. You'll see :hov, click on it and you'll be able to select the css hover/focus/active/visited styles. Then just copy the element + :hover and add your style to your custom.css file.
<vendor>/<theme>/web/css/custom.css(or whatever you call your css file)
I tried that but it's not useful
– vnnogile_user
Jun 23 '16 at 14:19
Can you see what element the style is being applied to in Firebug?
– Azul_Falcone
Jun 23 '16 at 14:25
I tried all ways but still not getting
– vnnogile_user
Jun 24 '16 at 13:16
Have you tried inspecting the<li class="category-menu dropdown"></li>
Generally background-color is applied there.
– Azul_Falcone
Jun 24 '16 at 13:32
I tried that also.
– vnnogile_user
Jun 27 '16 at 9:19
add a comment |
Right click and inspect the element. Use chrome developer or your browsers equivalent. Look in the box on the far right. You'll see :hov, click on it and you'll be able to select the css hover/focus/active/visited styles. Then just copy the element + :hover and add your style to your custom.css file.
<vendor>/<theme>/web/css/custom.css(or whatever you call your css file)
Right click and inspect the element. Use chrome developer or your browsers equivalent. Look in the box on the far right. You'll see :hov, click on it and you'll be able to select the css hover/focus/active/visited styles. Then just copy the element + :hover and add your style to your custom.css file.
<vendor>/<theme>/web/css/custom.css(or whatever you call your css file)
answered Jun 23 '16 at 14:12
Azul_FalconeAzul_Falcone
1212 silver badges17 bronze badges
1212 silver badges17 bronze badges
I tried that but it's not useful
– vnnogile_user
Jun 23 '16 at 14:19
Can you see what element the style is being applied to in Firebug?
– Azul_Falcone
Jun 23 '16 at 14:25
I tried all ways but still not getting
– vnnogile_user
Jun 24 '16 at 13:16
Have you tried inspecting the<li class="category-menu dropdown"></li>
Generally background-color is applied there.
– Azul_Falcone
Jun 24 '16 at 13:32
I tried that also.
– vnnogile_user
Jun 27 '16 at 9:19
add a comment |
I tried that but it's not useful
– vnnogile_user
Jun 23 '16 at 14:19
Can you see what element the style is being applied to in Firebug?
– Azul_Falcone
Jun 23 '16 at 14:25
I tried all ways but still not getting
– vnnogile_user
Jun 24 '16 at 13:16
Have you tried inspecting the<li class="category-menu dropdown"></li>
Generally background-color is applied there.
– Azul_Falcone
Jun 24 '16 at 13:32
I tried that also.
– vnnogile_user
Jun 27 '16 at 9:19
I tried that but it's not useful
– vnnogile_user
Jun 23 '16 at 14:19
I tried that but it's not useful
– vnnogile_user
Jun 23 '16 at 14:19
Can you see what element the style is being applied to in Firebug?
– Azul_Falcone
Jun 23 '16 at 14:25
Can you see what element the style is being applied to in Firebug?
– Azul_Falcone
Jun 23 '16 at 14:25
I tried all ways but still not getting
– vnnogile_user
Jun 24 '16 at 13:16
I tried all ways but still not getting
– vnnogile_user
Jun 24 '16 at 13:16
Have you tried inspecting the
<li class="category-menu dropdown"></li>
Generally background-color is applied there.– Azul_Falcone
Jun 24 '16 at 13:32
Have you tried inspecting the
<li class="category-menu dropdown"></li>
Generally background-color is applied there.– Azul_Falcone
Jun 24 '16 at 13:32
I tried that also.
– vnnogile_user
Jun 27 '16 at 9:19
I tried that also.
– vnnogile_user
Jun 27 '16 at 9:19
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%2f122516%2fhow-to-change-background-color-of-a-link-in-magento-2-0%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