Home Forums WoodMart support forum Newsletter pop up – reduce size of a window

Newsletter pop up – reduce size of a window

Viewing 17 posts - 1 through 17 (of 17 total)
  • Author
    Posts
  • #29553

    arven1
    Participant

    Hi,

    Can you tell me is it possible to reduce size of a newsletter pop up window? Currently, if I reduce number of rows in visual composer it does not reduce its size, just size of a text. Is this possible somehow? Thanks

    #29566

    arven1
    Participant

    Let me try to explain… I want screen to be smaller for newsletter. Check image: https://prnt.sc/hp9uvs

    #29599

    Artem Temos
    Keymaster

    Hi,

    Try to add the following code snippet to the Custom CSS area in Theme Settings to decrease its width

    div.woodmart-promo-popup {
        max-width: 600px;
    }

    Regards

    #29770

    arven1
    Participant

    Thank you this helps. 🙂

    Can you tell me another thing… How can I add one more button (Maxbutton [maxbutton id=”2″] ) right next to the Add to Quote button? Sample, but it will be different button –
    https://prnt.sc/hq28qa

    #29774

    Artem Temos
    Keymaster

    If you want to add it right next to this button then you need to find this button’s code in the plugin files and place your additional button there.

    #29792

    arven1
    Participant

    But I want to add it in custom CSS. Can you please help me with this?

    #29807

    Artem Temos
    Keymaster

    But you can’t place the button with CSS code only. You need to place the HTML code of the button firstly.

    #29813

    arven1
    Participant

    Where? That’s bugging me where to place this maxbutton?

    #29814

    Artem Temos
    Keymaster

    But we don’t know where in that plugin you can place the code so it will be shown right next to their button. We don’t know this plugin’s files structure. You can contact plugin’s developers for help with this question. Just add the button where you want and we will help you to style it properly.

    #29815

    arven1
    Participant

    But you helped me to manually place Add to Quote button (refer to thread MOVING BUTTON A BIT LEFT created one month ago) which gives two same Add to Quote buttons. Basically I assumed that this can just be set up on the same way as that were set up just to change name and url. Can you please check? Maybe I can do that by myself by extracting custom style css from old backup. If you can tell me where I can find files changed with Custom CSS or HTML inside of theme I migth get that code…

    #29838

    Artem Temos
    Keymaster

    OK, could you please provide us your FTP access so we can take a look?

    #30141

    arven1
    Participant

    Sure. Please check it out.

    #30221

    Artem Temos
    Keymaster

    Hello,

    We have added this button for you. Please, check how it works now.

    Regards

    #30263

    arven1
    Participant

    Thanks. Can you tell me why buttons are not in the same line (on devices that are big enough to be in same line/row)?

    #30286

    Eric Watson
    Participant

    Hello,

    Try to add the following code snippet to the Custom CSS for desktop area in Theme Settings to fix this issue.

    .single_variation_wrap {
        display: flex;
        align-items: flex-end;
    }
    .single_variation_wrap .clear{
        display: none;
    }
    .single-product .yith-ywraq-add-to-quote+.clear {
        display: none;
    }
    .single-product .yith-ywraq-add-to-quote{
        display: inline-block !important;
    }
    .compare-btn-wrapper, .sizeguide-btn-wrapp, .summary-inner>.yith-wcwl-add-to-wishlist{
        margin-top: 15px;
    }
    .product-image-summary .cart{
        margin-bottom: 0px;
    }
    .product-image-summary .quantity,
    .product-image-summary .single_add_to_cart_button,
    .single-product .yith-ywraq-add-to-quote,
    .yith-ywraq-add-button{
    	margin-bottom:0px !important;
    }
    .add-request-quote-button{
        padding: 12px 18px !important;
    }
    .single-product .yith-ywraq-add-to-quote{
    	margin-right:5px !important;
    }

    Kind Regards
    XTemos Studio

    #30293

    arven1
    Participant

    This is working. Thanks a lot. 🙂

    #30319

    Artem Temos
    Keymaster

    You are welcome!

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

The topic ‘Newsletter pop up – reduce size of a window’ is closed to new replies.