I'm styling this page and yet I can't seem to access either .4thForm or .3rdForm to style. These elements move responsively when screensize drops below 1024px so it's cruitial that I access these elements.
I've tested the @media call and I can change the colour .frontbannertitle with it so I know it's not the media call. Using inspector I can code the element to achieve what I would like, but it will not let me generate a css element to style it.
I need to edit this div to provide it with a negative margin-top value, as that cannot be achieved by targeting the select within the div.
Jsfiddle: http://jsfiddle.net/P49ja/
<form class="frontbannercontainer form-horizontal">
    <fieldset class="frontbanner">
        <h1 class="frontbannertitle">Enquire Now!</h1>
        <div class="control-group">
            <div class="controls">
                <input id="textinput1" class="frontbannertext input-xlarge" type="text" name="textinput">
            </div>
        </div>
        <div class="control-group">
            <div class="controls">
                <input id="textinput2" class="frontbannertext input-xlarge" type="text" name="textinput">
            </div>
        </div>
        <div class="control-group">
            <div class="controls 3rdForm">
                <input id="textinput3" class="frontbannertext input-xlarge" type="text" name="textinput">
            </div>
        </div>
        <div class="control-group">
            <div class="controls 4thForm">
                <select id="selectbasic" class="frontbannerselect input-xlarge" name="selectbasic">
                    <option selected="selected" disabled="disabled" value="0">Select Membership</option>
                    <option value="1">Individual Membership</option>
                    <option value="2">Corporate Membership</option>
                </select>
            </div>
        </div>
        <div id="SliderFormPhone">
            <span id="ques">Enquire By Phone:</span>
            <span id="ph">(02) 000 000</span>
        </div>
        <div class="control-group">
            <div class="controls">
                <button id="singlebutton" class="frontbannerbutton btn btn-primary" name="singlebutton">Apply!</button>
            </div>
        </div>
    </fieldset>
</form>
Thanks!
 
     
     
     
    