Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #502149

    I’m having trouble with a shortcode of a plugin, but I think it can be solved with Quick CSS. See link, insert a reference image, the plugin will display a video, note that the email field and the SUBSCRIBE button, are beyond the expected. Can you help me?
    Thank´s

    #502245

    Hi ayron,

    I’m not sure what the problem is, could you try to explain a bit further please? Also, you don’t need to start three different thread for the same problem.

    Best regards,
    Rikard

    • This reply was modified 9 years, 1 month ago by Rikard.
    #502311

    Did you see the link?
    It has a reference image, and video.
    The problem occurs in the email field and in the signature button.
    As described in the previous message

    #502429

    Hi,

    Could you try contacting the plugin authors about that? I think they will have more insight about what’s going wrong with the CSS in their plugin.

    Best regards,
    Rikard

    #502805

    Ok.

    the author told me to enter! important in terminating these lines in a style file

    .mc_embed_signup form select {
    width: 70% !important;
    display: inline-block !important;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    margin: 0px;
    vertical-align:top;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    height:34px;
    padding: 0px !important;
    border: 1px solid #ccc !important;
    box-sizing: content-box !important;
    text-indent: 2%;
    }

    befere

    width: 70%;
    display: inline-block;

    after

    width: 70% !important;
    display: inline-block !important;

    The problem was solved.
    It is possible that this is done in quick theme css?
    So I would not have problems every time I would upgrade the plugin.

    Thank´s

    #502924

    Hi!

    Yes, you can add the CSS to the child theme style.css file. As long as your using !important override it will still get applied.

    Best regards,
    Elliott

    • This reply was modified 9 years, 1 month ago by Elliott.
    #502934

    I put the whole block?

    .mc_embed_signup form select {
    width: 70% !important;
    display: inline-block !important;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    margin: 0px;
    vertical-align:top;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    height:34px;
    padding: 0px !important;
    border: 1px solid #ccc !important;
    box-sizing: content-box !important;
    text-indent: 2%;
    }

    or

    .mc_embed_signup form select {
    width: 70% !important;
    display: inline-block !important;
    }

    Thank´s

    #502958

    Hi!

    If it’s only the width and the display inline-block that you are changing then the second code should work fine.

    Regards,
    Elliott

    #502966

    Very Thank´s

    • This reply was modified 9 years, 1 month ago by ayron.
Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Custon Css’ is closed to new replies.