• Resolved synflex

    (@synflex)


    Hi, first of all the plugin is awesome: simple, light, clean and well written code.
    To adapt the look and feel to my e-commerce I had to make some changes to the style sheets, but nothing complicated. But there are a couple of things I can’t do, specifically:

    1. Is it possible to show only the Login tab or only the Register tab in the popup? My need is to split the login and registration process

    2. How can I change the color of the field border when they are been focused? I tried to insert the pseudo-class :focus on different classes of the xoo-aff-style.css file but without luck.

    Please note: I bought the pro version.

    Thanks in advance for your reply.

    • This topic was modified 5 years ago by synflex.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author xootix

    (@xootix)

    Hello @synflex

    Glad you like the plugin. Would really appreciate if you support the plugin by rating here

    1) CSS Trick

    .xoo-el-section, ul.xoo-el-tabs li {
        display: none;
    }
    
    ul.xoo-el-tabs li.xoo-el-active, .xoo-el-active {
        display: block;
    }

    2) Input border color

    .xoo-aff-input-group input:focus {
        border: 1px solid #008000!important;
        outline-color: #008000!important;
    }
    • This reply was modified 5 years ago by xootix.
    Thread Starter synflex

    (@synflex)

    It works perfectly! Thanks so much.

    • This reply was modified 4 years, 12 months ago by synflex.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Plugin customization’ is closed to new replies.