Home Forums WoodMart support forum How to add border in product layout

How to add border in product layout

Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #73106

    indrapal
    Participant

    Hi team,

    How do I add border to this product layout https://prnt.sc/kjtw8j https://prnt.sc/kjtwar like this one https://prnt.sc/kjtwca

    #73107

    indrapal
    Participant

    And How to change price color to #00000

    #73109

    Artem Temos
    Keymaster

    Hi,

    To do this you will need to copy the file woodmart/woocommerce/content-product-standard.php to the child theme and put this line before all the code

    <div class="woodmart-product-wrapper">

    and this to the end of the file

    </div>

    Also, add this code snippet to the Custom CSS area in Theme Settings

    .product .woodmart-product-wrapper {
    	border: 1px solid #efefef;
    	padding-bottom: 20px;
    }

    Regards

    #73158

    indrapal
    Participant

    Thanks team,

    One more help needed, how to change search bar placeholder text color to #212121

    #73184

    indrapal
    Participant

    Fixed it thanks

    #73187

    Hello,

    Please add this code to the Theme settings >custom CSS:

    .searchform ::-webkit-input-placeholder { color:  #212121!important; }
    .searchform :-ms-input-placeholder { color:  #FF00AE!important;  }
    .searchform ::-ms-input-placeholder { color:  #212121!important;  }
    .searchform ::placeholder { color:  #212121!important;  }

    Best Regards

    #73311

    indrapal
    Participant

    Thanks, and how do I change shop page product price to #000 color

    #73348

    Hello,

    Please add this code to the Theme Settings > Custom CSS:

     .price span{
        color:#000000;
    }

    Best Regards

    #73424

    indrapal
    Participant

    Thanks,

    Just updated theme to latest version but showing this errors when I clicks on Header and on homepage header bar is also not showing properly..

    Attachments:
    You must be logged in to view attached files.
    #73439

    Hello,

    The issue has been fixed. Please update your theme to version 2.10.1

    Best Regards

    #73440

    indrapal
    Participant

    Please check

    #73452

    Artem Temos
    Keymaster

    Please, update to the latest version 2.10.1

    #73463

    indrapal
    Participant

    Where to download it, I have just now downloaded from themeforest but still version is showing 2.10

    #73479

    Hello,

    Please login your Themeforest account again and download the fresh version.

    Best Regards

    #73857

    indrapal
    Participant

    Hi team,

    How to increase sidebar width size from 16% to 20%

    #73874

    Hello,

    It is possible to do with custom CSS:

    .shop-content-area.col-md-push-2 {
    	left: 20%;
    }
    .shop-content-area.col-md-10 {
        width: 80%;
    }
    
    .area-sidebar-shop.col-md-pull-10 {
    	right: 80%;
    }
    
    .area-sidebar-shop.col-md-2 {
        width: 20%;
    }

    Add this code to the Theme Settings > Custom CSS > Desktop.

    Best Regards

    #74024

    indrapal
    Participant

    Thanks Team,

    Is there any option or code to show 5 products in a row.

    Attachments:
    You must be logged in to view attached files.
    #74038

    Hello,

    No, there is not such an option. Our theme is based on Bootstrap grid and it does not support 5 column grid.

    Perhaps we shall add such an option in future.

    Best Regards

    #74042

    indrapal
    Participant

    Thanks team for your quick response.

    One more query I have, I want to change “Browse Categories” text to “Shop By Categories” on header menu

    Attachments:
    You must be logged in to view attached files.
    #74054

    Hello,

    You can rewrite all theme and plugin texts via PO file in WordPress. Here is a video tutorial that should help you translate your website texts with a Loco Translate plugin https://www.youtube.com/watch?v=D3NsDdMzsls&list=PLMw6W4rAaOgKKv0oexGHzpWBg1imvrval&index=3

    Best Regards

Viewing 20 posts - 1 through 20 (of 20 total)

The topic ‘How to add border in product layout’ is closed to new replies.