Home Forums WoodMart support forum Space Beetwen css for information box carousel

Space Beetwen css for information box carousel

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #620035

    jundi2391
    Participant

    Hi guys, I have an information box carousel in my homepage like this https://gyazo.com/3d5c1c975d01793fe436c53d83671391

    My question is: How can I change the space between elements with a maximum of 30px to 50px? I tried the following CSS:

    [class*=”wd-grid”] {
    –wd-gap: 50px;
    }

    However, it doesn’t work on the live site, although it changes correctly in the editor.

    #620054

    jundi2391
    Participant

    If you have the answer, could you please provide the CSS? Thank you.

    #620285

    Bogdan Donovan
    Keymaster

    Hi,

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

    .info-box-carousel.wd-grid {
    	--wd-gap-lg: 50px !important;
    }

    Kind Regards

    #620288

    jundi2391
    Participant

    Hi, thank you for your response, the code works perfectly, I really appreciate it.

    I have one more question: is there a way in CSS to change the color and add an outline to the Google social login button?

    #620620

    Bogdan Donovan
    Keymaster

    Please provide us with an example of how you want this button to look. If it’s possible to achieve using custom CSS, we’ll do our best to assist you.

    Kind Regards

    #621041

    jundi2391
    Participant

    Hello, I want to create something like this. Is there a way to do it?

    https://gyazo.com/514c7660efc3a51fd8b019c06451c960

    #621062

    Bogdan Donovan
    Keymaster

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

    body .btn.login-goo-link {
        background: transparent;
        border: 1px solid #8E8E8E;
        color: #8E8E8E;
        --btn-box-shadow-hover: none;
    }
    
    body .btn.login-goo-link:hover {
        border-color: #000; 
    }

    Kind Regards

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