Home Forums WoodMart support forum Icons space

Icons space

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #74063

    indrapal
    Participant

    Team,

    I have added icons in menu but I don’t know why it’s has extra space in some menu items.

    Please have a look and how to fix it (Find attached snap)

    #74064

    indrapal
    Participant

    find snap here https://prnt.sc/km5bt9

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

    Hello,

    You need to open your SVG icons file with some editor like Sublime Text or default system text editor and add height and width attributes to your <svg> tag like it is shown: http://prntscr.com/km6bpd

    Best Regards

    #75323

    indrapal
    Participant

    Hi Team,

    Need some help,

    I have added border to products on shop page, like border-right & border-bottom.

    I want to hide border-right on 4th products https://prnt.sc/kq163h , how to do it.

    Thanks

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

    Hello,

    Please add this code to the Theme settings > Custom CSS > Global

    .elements-grid {
    	position: relative;
    }
    
    .elements-grid:after {
    	content: ""!important;
    	display: block!important;
    	position: absolute;
    	top: 0;
    	bottom: 0;
    	right: 0;
    	border-right: 1px solid white;	
    }

    Best Regards

    #75346

    indrapal
    Participant

    Thanks but on mobile device with 2 Products columns showing it border at right side

    #75392

    Artem Temos
    Keymaster

    Try to add the following code snippet to the Custom CSS area for mobile devices in Theme Settings.

    .elements-grid:after {
    	right: 5px;
    }

    Best Regards

    #75577

    indrapal
    Participant

    Thanks Team,

    How to add banner in mega menu like your demo has

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

    Hello,

    1. Create HTML block as shown: http://prntscr.com/kqw01j

    2. Add HTML block to menu item https://xtemos.com/docs/woodmart/create-menu-2/

    Best Regards

    #75802

    indrapal
    Participant

    Team,

    Which module to be select for making this type of outer box https://prnt.sc/kr9wqy

    #75815

    Hello,

    Have a look to the screen https://gyazo.com/26cb76b91516c11dda5945f4b32c16aa

    Please find here more instructions and tutorials:

    https://wpbakery.com/video-tutorials/

    https://kb.wpbakery.com/docs/learning-more/content-elements/

    Best Regards

    #75842

    indrapal
    Participant

    Team,

    How to change hover color of these text to this color #02a2b5 https://prnt.sc/krdge4

    #75865

    Hello,

    There two ways to change the hover color, the first one is to change Primary color in the Theme Settings > Styles and colors > Primary color.

    If you want to change the color only in menu, add this custom CSS to the Theme settings > Custom CSS:

    .whb-color-dark .navigation-style-default .item-level-0>a:hover{
    color: #02a2b5;
    }

    Best Regards

    #76562

    indrapal
    Participant

    HI Team,

    Which widget to be use for making this type of view https://prnt.sc/kt0s2b

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

    Hello,

    Navigate to the Theme settings > Product Page > Show/Hide elements and set the “Upsells products” to be shown in the sidebar http://prntscr.com/kt13jo

    Best Regards

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

The topic ‘Icons space’ is closed to new replies.