why button not showing in custom theme in magento 2? The Next CEO of Stack Overflowmy custom module pages title's are moved to bottom in magento 2?Magento theme not get loadedLeft Column Sidebar Not Showing Up on Shop Pagesinclude css in magento2 for custom themeHow can I set the theme/package just for a custom module?CSS Not Reflecting in Magento 2Magento 2 Cart and Search Shifts in Safari when Mini Cart ExpandedMagento Theme css color not changingmagento 2 custom theme css not working on frontendMagento 2.2 theme designing not applyingMagento2 : CRUD Module Add Button Not Showing
Return the Closest Prime Number
How to write the block matrix in LaTex?
What do "high sea" and "carry" mean in this sentence?
Visit to the USA with ESTA approved before trip to Iran
Can a caster that cast Polymorph on themselves stop concentrating at any point even if their Int is low?
How can I get through very long and very dry, but also very useful technical documents when learning a new tool?
Is the concept of a "numerable" fiber bundle really useful or an empty generalization?
How can I quit an app using Terminal?
What does "Its cash flow is deeply negative" mean?
Trouble understanding the speech of overseas colleagues
WOW air has ceased operation, can I get my tickets refunded?
Fastest way to shutdown Ubuntu Mate 18.10
Is HostGator storing my password in plaintext?
How do I get the green key off the shelf in the Dobby level of Lego Harry Potter 2?
Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?
Can I equip Skullclamp on a creature I am sacrificing?
What can we do to stop prior company from asking us questions?
How long to clear the 'suck zone' of a turbofan after start is initiated?
What is the point of a new vote on May's deal when the indicative votes suggest she will not win?
Return of the Riley Riddles in Reverse
How easy is it to start Magic from scratch?
Why doesn't a table tennis ball float on the surface? How do we calculate buoyancy here?
What does this shorthand mean?
How to make a software documentation "officially" citable?
why button not showing in custom theme in magento 2?
The Next CEO of Stack Overflowmy custom module pages title's are moved to bottom in magento 2?Magento theme not get loadedLeft Column Sidebar Not Showing Up on Shop Pagesinclude css in magento2 for custom themeHow can I set the theme/package just for a custom module?CSS Not Reflecting in Magento 2Magento 2 Cart and Search Shifts in Safari when Mini Cart ExpandedMagento Theme css color not changingmagento 2 custom theme css not working on frontendMagento 2.2 theme designing not applyingMagento2 : CRUD Module Add Button Not Showing
when i go customer login and customer module and custom_module related
pages
button is not showing
when i move a mouse over that button the button
is showing
how to solve this css color issue
when untick the default css in inspect element
button color is showing
how i fix this..???
magento2 module theme css color-swatches
|
show 15 more comments
when i go customer login and customer module and custom_module related
pages
button is not showing
when i move a mouse over that button the button
is showing
how to solve this css color issue
when untick the default css in inspect element
button color is showing
how i fix this..???
magento2 module theme css color-swatches
add the css for your button to your custom theme's css
– magefms
yesterday
where..................
– prabhakaran7
yesterday
from hereappdesignfrontendYourThemeVendoryourThemeNameMagento_Themewebcsscustom.css
– magefms
yesterday
for my custom module
– prabhakaran7
yesterday
1
you can try.primary.action.primary background: #0088cc !important; /* color blue, you can change according to your needs */
– magefms
14 hours ago
|
show 15 more comments
when i go customer login and customer module and custom_module related
pages
button is not showing
when i move a mouse over that button the button
is showing
how to solve this css color issue
when untick the default css in inspect element
button color is showing
how i fix this..???
magento2 module theme css color-swatches
when i go customer login and customer module and custom_module related
pages
button is not showing
when i move a mouse over that button the button
is showing
how to solve this css color issue
when untick the default css in inspect element
button color is showing
how i fix this..???
magento2 module theme css color-swatches
magento2 module theme css color-swatches
edited yesterday
prabhakaran7
asked yesterday
prabhakaran7prabhakaran7
1989
1989
add the css for your button to your custom theme's css
– magefms
yesterday
where..................
– prabhakaran7
yesterday
from hereappdesignfrontendYourThemeVendoryourThemeNameMagento_Themewebcsscustom.css
– magefms
yesterday
for my custom module
– prabhakaran7
yesterday
1
you can try.primary.action.primary background: #0088cc !important; /* color blue, you can change according to your needs */
– magefms
14 hours ago
|
show 15 more comments
add the css for your button to your custom theme's css
– magefms
yesterday
where..................
– prabhakaran7
yesterday
from hereappdesignfrontendYourThemeVendoryourThemeNameMagento_Themewebcsscustom.css
– magefms
yesterday
for my custom module
– prabhakaran7
yesterday
1
you can try.primary.action.primary background: #0088cc !important; /* color blue, you can change according to your needs */
– magefms
14 hours ago
add the css for your button to your custom theme's css
– magefms
yesterday
add the css for your button to your custom theme's css
– magefms
yesterday
where..................
– prabhakaran7
yesterday
where..................
– prabhakaran7
yesterday
from here
appdesignfrontendYourThemeVendoryourThemeNameMagento_Themewebcsscustom.css
– magefms
yesterday
from here
appdesignfrontendYourThemeVendoryourThemeNameMagento_Themewebcsscustom.css
– magefms
yesterday
for my custom module
– prabhakaran7
yesterday
for my custom module
– prabhakaran7
yesterday
1
1
you can try
.primary.action.primary background: #0088cc !important; /* color blue, you can change according to your needs */
– magefms
14 hours ago
you can try
.primary.action.primary background: #0088cc !important; /* color blue, you can change according to your needs */
– magefms
14 hours ago
|
show 15 more comments
1 Answer
1
active
oldest
votes
You have to use custom css in order to fix that one.
In your case, using a custom module you can insert your custom css to the head block of your Magento webshop.
Try this:
- create a custom.css file inside
vendormoduleviewfrontendwebcsscustom.css
and put this code:
/* your button id is send2 */
#send2
background: #0088cc !important; /* color blue, you can change according to your needs */
- Then create a default.xml in your layout folder
vendormoduleviewfrontendlayoutdefault.xml
and put this code:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<css src="vendor_module::css/custom.css" />
</head>
</page>
After doing the above solution, please run an upgrade and redeploy static contents.
Note: vendor
is your vendor name and module
is your module name.
Then check if it works.
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%2f267552%2fwhy-button-not-showing-in-custom-theme-in-magento-2%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
You have to use custom css in order to fix that one.
In your case, using a custom module you can insert your custom css to the head block of your Magento webshop.
Try this:
- create a custom.css file inside
vendormoduleviewfrontendwebcsscustom.css
and put this code:
/* your button id is send2 */
#send2
background: #0088cc !important; /* color blue, you can change according to your needs */
- Then create a default.xml in your layout folder
vendormoduleviewfrontendlayoutdefault.xml
and put this code:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<css src="vendor_module::css/custom.css" />
</head>
</page>
After doing the above solution, please run an upgrade and redeploy static contents.
Note: vendor
is your vendor name and module
is your module name.
Then check if it works.
add a comment |
You have to use custom css in order to fix that one.
In your case, using a custom module you can insert your custom css to the head block of your Magento webshop.
Try this:
- create a custom.css file inside
vendormoduleviewfrontendwebcsscustom.css
and put this code:
/* your button id is send2 */
#send2
background: #0088cc !important; /* color blue, you can change according to your needs */
- Then create a default.xml in your layout folder
vendormoduleviewfrontendlayoutdefault.xml
and put this code:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<css src="vendor_module::css/custom.css" />
</head>
</page>
After doing the above solution, please run an upgrade and redeploy static contents.
Note: vendor
is your vendor name and module
is your module name.
Then check if it works.
add a comment |
You have to use custom css in order to fix that one.
In your case, using a custom module you can insert your custom css to the head block of your Magento webshop.
Try this:
- create a custom.css file inside
vendormoduleviewfrontendwebcsscustom.css
and put this code:
/* your button id is send2 */
#send2
background: #0088cc !important; /* color blue, you can change according to your needs */
- Then create a default.xml in your layout folder
vendormoduleviewfrontendlayoutdefault.xml
and put this code:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<css src="vendor_module::css/custom.css" />
</head>
</page>
After doing the above solution, please run an upgrade and redeploy static contents.
Note: vendor
is your vendor name and module
is your module name.
Then check if it works.
You have to use custom css in order to fix that one.
In your case, using a custom module you can insert your custom css to the head block of your Magento webshop.
Try this:
- create a custom.css file inside
vendormoduleviewfrontendwebcsscustom.css
and put this code:
/* your button id is send2 */
#send2
background: #0088cc !important; /* color blue, you can change according to your needs */
- Then create a default.xml in your layout folder
vendormoduleviewfrontendlayoutdefault.xml
and put this code:
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<css src="vendor_module::css/custom.css" />
</head>
</page>
After doing the above solution, please run an upgrade and redeploy static contents.
Note: vendor
is your vendor name and module
is your module name.
Then check if it works.
answered yesterday
magefmsmagefms
2,0822426
2,0822426
add a comment |
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%2f267552%2fwhy-button-not-showing-in-custom-theme-in-magento-2%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
add the css for your button to your custom theme's css
– magefms
yesterday
where..................
– prabhakaran7
yesterday
from here
appdesignfrontendYourThemeVendoryourThemeNameMagento_Themewebcsscustom.css
– magefms
yesterday
for my custom module
– prabhakaran7
yesterday
1
you can try
.primary.action.primary background: #0088cc !important; /* color blue, you can change according to your needs */
– magefms
14 hours ago