Which LESS files do you compile in a child theme?source/lib not available in magento 2 frontend designChild Theme Change Colors - Less Mixins in Magento 2Magento Grunt Less Compilation behaves weirdGrunt watch doesn't watch _theme.less and custom less file(Magento2) Grunt Less problem with a new themeError: Exception #0 (InvalidArgumentException): Unable to serialize value - Produced by custom ThemeMagento 2 less compilation error while setup:static-content:deployproper way to use .less files in custom theme?Magento 2 Theme Development - grunt watch not detecting changes of custom LESS fileHow to edit .less or css files

How do I ask for 2-3 days per week remote work in a job interview?

Why aren’t there water shutoff valves for each room?

Why aren't rockets built with truss structures inside their fuel & oxidizer tanks to increase structural strength?

Solving pricing problem heuristically in column generation algorithm for VRP

Are there any low-level means to *exit* the Ethereal plane to a plane of my choosing?

What if a restaurant suddenly cannot accept credit cards, and the customer has no cash?

Word for an event that will likely never happen again

Can anybody tell me who this Pokemon is?

Good textbook for queueing theory and performance modeling

Sum Square Difference, which way is more Pythonic?

Is there a fallacy about "appeal to 'big words'"?

Why aren't rainbows blurred-out into nothing after they are produced?

Is there any official ruling on how characters go from 0th to 1st level in a class?

Does the C++ standard guarantee that a failed insertion into an associative container will not modify the rvalue-reference argument?

Locked room poison mystery!

What is the prop for Thor's hammer (Mjölnir) made of?

Go to last file in vim

Illustrator - SVG make thinner path

A man in the desert is bitten by a skeletal animal, its skull gets stuck on his arm

How would armour (and combat) change if the fighter didn't need to actually wear it?

What can I do to increase the amount of LEDs I can power with a pro micro?

Telephone number in spoken words

Weird resistor with dots around it

Output the list of musical notes



Which LESS files do you compile in a child theme?


source/lib not available in magento 2 frontend designChild Theme Change Colors - Less Mixins in Magento 2Magento Grunt Less Compilation behaves weirdGrunt watch doesn't watch _theme.less and custom less file(Magento2) Grunt Less problem with a new themeError: Exception #0 (InvalidArgumentException): Unable to serialize value - Produced by custom ThemeMagento 2 less compilation error while setup:static-content:deployproper way to use .less files in custom theme?Magento 2 Theme Development - grunt watch not detecting changes of custom LESS fileHow to edit .less or css files






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I'm trying to create a theme based on Pixtron. I'm using Gulp rather than Grunt, but everything I've read about compiling LESS files has the same instructions: you have point to the source file(s) (e.g. styles-m.less or styles-l.less) in app/design/frontend/<Vendor>/<Theme>/web/css and point the destination files in pub/static/frontend/<Vendor>/<Theme>/<locale>/css.



Pixtron uses Magento/blank as its parent theme. So, I think because of that, there are no overarching theme files directly in the css folder. There are files inside the source subfolder to extend/override the blank theme. Here's the folder structure:



<Theme_Dir>
| |-- web/
| | |-- css/
| | | |-- source/
| | | | |-- _custom.less
| | | | |-- _extends.less
| | | | |-- _navigation.less
| | | | |-- _theme.less


So, I guess my question is which files should I be compiling when there aren't any main theme files for me to use? Should I be using the styles-l/m files from the parent theme? Hopefully, my question makes sense.










share|improve this question






























    0















    I'm trying to create a theme based on Pixtron. I'm using Gulp rather than Grunt, but everything I've read about compiling LESS files has the same instructions: you have point to the source file(s) (e.g. styles-m.less or styles-l.less) in app/design/frontend/<Vendor>/<Theme>/web/css and point the destination files in pub/static/frontend/<Vendor>/<Theme>/<locale>/css.



    Pixtron uses Magento/blank as its parent theme. So, I think because of that, there are no overarching theme files directly in the css folder. There are files inside the source subfolder to extend/override the blank theme. Here's the folder structure:



    <Theme_Dir>
    | |-- web/
    | | |-- css/
    | | | |-- source/
    | | | | |-- _custom.less
    | | | | |-- _extends.less
    | | | | |-- _navigation.less
    | | | | |-- _theme.less


    So, I guess my question is which files should I be compiling when there aren't any main theme files for me to use? Should I be using the styles-l/m files from the parent theme? Hopefully, my question makes sense.










    share|improve this question


























      0












      0








      0








      I'm trying to create a theme based on Pixtron. I'm using Gulp rather than Grunt, but everything I've read about compiling LESS files has the same instructions: you have point to the source file(s) (e.g. styles-m.less or styles-l.less) in app/design/frontend/<Vendor>/<Theme>/web/css and point the destination files in pub/static/frontend/<Vendor>/<Theme>/<locale>/css.



      Pixtron uses Magento/blank as its parent theme. So, I think because of that, there are no overarching theme files directly in the css folder. There are files inside the source subfolder to extend/override the blank theme. Here's the folder structure:



      <Theme_Dir>
      | |-- web/
      | | |-- css/
      | | | |-- source/
      | | | | |-- _custom.less
      | | | | |-- _extends.less
      | | | | |-- _navigation.less
      | | | | |-- _theme.less


      So, I guess my question is which files should I be compiling when there aren't any main theme files for me to use? Should I be using the styles-l/m files from the parent theme? Hopefully, my question makes sense.










      share|improve this question














      I'm trying to create a theme based on Pixtron. I'm using Gulp rather than Grunt, but everything I've read about compiling LESS files has the same instructions: you have point to the source file(s) (e.g. styles-m.less or styles-l.less) in app/design/frontend/<Vendor>/<Theme>/web/css and point the destination files in pub/static/frontend/<Vendor>/<Theme>/<locale>/css.



      Pixtron uses Magento/blank as its parent theme. So, I think because of that, there are no overarching theme files directly in the css folder. There are files inside the source subfolder to extend/override the blank theme. Here's the folder structure:



      <Theme_Dir>
      | |-- web/
      | | |-- css/
      | | | |-- source/
      | | | | |-- _custom.less
      | | | | |-- _extends.less
      | | | | |-- _navigation.less
      | | | | |-- _theme.less


      So, I guess my question is which files should I be compiling when there aren't any main theme files for me to use? Should I be using the styles-l/m files from the parent theme? Hopefully, my question makes sense.







      magento2 theme less less-compilation






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 4 at 7:02









      NikkiBdrawsNikkiBdraws

      12 bronze badges




      12 bronze badges























          0






          active

          oldest

          votes














          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
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f284334%2fwhich-less-files-do-you-compile-in-a-child-theme%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f284334%2fwhich-less-files-do-you-compile-in-a-child-theme%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

          Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

          Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

          Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form