Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi Erling,

    Glad you’re enjoying the plugin. Do you want to make the text boxes bigger, or the text inside them bigger?

    By the way, if you’re a Pro member you can use the Pro forums for a faster reply…

    Thread Starter Erling

    (@erling)

    Well, now I can finish this issue here.
    It is not the text, but the box, I want to make bigger – having a larger text content visible.

    Try adding something like this to the style.css file of your theme:

    #event-form input {
    width: 200px
    }
    Thread Starter Erling

    (@erling)

    Thank you – it works – but for all boxes.
    I hoped to specify WHICH box should be bigger, for example with the code
    #event-form input type=”text” name=”em_attributes[St?vneleder+hj?lpere:]” i{
    width: 200 px;
    }
    But it doesn’t work. Is it not possible? Or if it is possible could you help me to write the code in the right way?

    You should be able to do something like this, where the_name is the name of the text input:

    input[name=the_name] {
        width: 200px;
    }

    It seems that the right syntax is :

    #event-form .event-extra-details input[name=”em_attributes[the_name]”] { width: 200px; }

    with events manager Version 5.6.1

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change size of textarea box in event submission form’ is closed to new replies.