Support for Envato Buyers Forums DGWork Two Requests: Menus on Product Page / Menu Issue

Viewing 1 reply thread
  • Author
    Posts
    • #11590
      bdendas
      Participant

      Hey,

      1. Is there any way to make the DESCRIPTION / ITEM DETAILS menu to be a solid color, specifically the color of the product page. I no longer want it to be transparent because the there is overlap on page content.

      2. Is there any way to delete the ITEM DETAILS section on product pages?

      3. Can you change the mobile sticky menu on product pages to show the SHOP NOW button and LEARN MORE button instead of DESCRIPTION & ITEM DETAILS?

      EXAMPLES: http://imgur.com/a/0j3Nu

      Thanks,
      Brandon

    • #11600

      Hi

      1. You can use the following custom CSS, actually, now the background is already a solid color as same as the body background color.

      .is-sticky .dgwork-product-tab{background:#Your Color;}

      2. You can hide the item details tab by the following custom CSS

      .dgwork-product-tab ul li:first-child{content:" ";}
      .dgwork-product-tab ul li:nth-child(2){display:none;}

      3. Just show the button by the following custom CSS

      @media (max-width: 480px){
        .is-sticky .dgwork-product-tab ul li.buy-button {
          display: block;
        }
      }

      You can put all custom CSS into style.css of your child theme or DGWork Options > Custom Code > Custom CSS.

      Thanks

Viewing 1 reply thread
  • You must be logged in to reply to this topic.