eNews Extended Submit Button Not Displaying

Homepage Community Forums Epik Theme Support eNews Extended Submit Button Not Displaying

Tagged: 

  • This topic has 17 replies, 4 voices, and was last updated 11 years ago by Wes.
Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #4115
    braddalton
    Customer

      The submit button is not displaying for the eNews extended widget. Works for the comment form and other functions which use the button but not with eNews. Working locally.

      #4131
      Eric
      Customer

        Hello Brad,

        This is something you would need to ask the plugin’s author/developer in order to get the proper solution since this wasn’t developed by us.

        Let us know if you have any other questions.

        Thanks


        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

        #4133
        braddalton
        Customer

          From Brandon.

           

          Hey Brad, It’s totally a feature of Epik, if you will. Check out the CSS (I’m looking at the theme demo’s since I don’t own it). Starting at line 2141, that set of rules is to hide the submit button. Can you let them know that their issue is with their CSS too? Thanks!

          #4155
          Wes
          Moderator

            I’ll chime in since I created the theme. If you look around line 2141, you can replace that code with this code –

            `.enews input[type=”submit”],
            .search-form input[type=”submit”] {
            border: 0;
            clip: rect(0, 0, 0, 0);
            margin: 15px 0;
            overflow: hidden;
            padding: 10px 20px;
            }`

            ….and then you can make your adjustments from there.

            This was designed based on the Genesis Sample theme at the time, and I like to leave some of the basic code inside while adding my own design around it. So they must of had it set to hide it by default in the Sample theme. The above code should fix it though.

            Wes

            #4156
            braddalton
            Customer

              Its a great theme Wes. I’ve already written half a post on it and will finish the post once i’ve finished the site.

              Looking forward to working with the portfolio page as it looks great on the demo.

              Thanks for the help.

              #4161
              snakeair
              Customer

                Thanks for this fix Wes, I was wondering about this for a week now.

                #4180
                Wes
                Moderator

                  Great glad its working guys. Since I missed this, I will be adding this in the next (minor) update.

                  #4239
                  braddalton
                  Customer

                    And the width also please Wes.

                    #4251
                    Wes
                    Moderator

                      Were you able to get it working?

                      #4252
                      braddalton
                      Customer

                        Got it fixed no problem just not sure why it displays full width by default.

                        #4266
                        Wes
                        Moderator

                          You can add a width to tha same code above like this –

                          width: 250px;

                          Then adjust as needed.

                          #4290
                          braddalton
                          Customer

                            That fixes the enews form in the widget areas but not the home page slider area.
                            `
                            input, select, textarea .widget {
                            width: 20%;
                            padding: 0.6rem 0.925rem;
                            }
                            `

                            This fixes the enews form on the home page but then the footer widget is messed up.

                            #4291
                            Wes
                            Moderator

                              The code I posted was for the enews widget not the slider.

                              This is all you should add/adjust for the enews widget –

                              `.enews input[type=”submit”] {
                              border: 0;
                              clip: rect(0, 0, 0, 0);
                              margin: 15px 0;
                              overflow: hidden;
                              padding: 10px 20px;
                              width: 20%;
                              }
                              `

                              If you are having separate issues with the slider, then just create a new topic/thread for it since this thread is for the enews widget.

                              #4292
                              Wes
                              Moderator

                                Also, do you have a link that we can take a look at?

                                #4294
                                braddalton
                                Customer

                                  Not using the Slider. Simply using the eNews widget in the Slider widget area on the home page.Your code fixes the eNews widget in most areas but not when placed in the home page slider widget area.

                                  Maybe it might be the CSS for the home page slider widget area thats the problem?

                                  Working locally.

                                  This code fixes the width problem when using the eNews widget in the slider widget area on the home page:
                                  `
                                  input, select, textarea .widget {
                                  width: 20%;
                                  padding: 0.6rem 0.925rem;
                                  }
                                  `

                                  But then the eNews widget in the footer has a tiny input area for the email address.

                                  #4298
                                  Wes
                                  Moderator

                                    It works fine for me….I just placed it in the slider area on a local install, and it works the exact same. Make sure if you added any other custom code that it’s not affecting it.

                                    I would recommend not adding the code that you posted, because that will globally affect all areas of your entire site that use “input”, “select”, “textarea”, and “.widget”. If you add something to it, every other part of your site will be affected. If you need to adjust a certain “input” (for example) then you’ll need to specifically target that particular input by using the class or ID it’s attached to….otherwise you’ll have issues with a bunch of other parts of your site

                                    Let me know if you figure it out…..if not, you would probably have to setup a demo site for me to look at.

                                    It’s almost 2 AM for me, I’m going to try and get some sleep…..

                                    #4303
                                    braddalton
                                    Customer

                                      Yes it works in the slider widget area but then when you place eNews in the footer it doesn’t work.

                                      #4311
                                      Wes
                                      Moderator

                                        You would have to upload this somewhere where I can actually see it.  I would need a live link in order to see the issue.

                                      Viewing 18 posts - 1 through 18 (of 18 total)
                                      • You must be logged in to reply to this topic.