Announcement

Collapse
No announcement yet.

Styling input box that is between Actinic:StaticSearchField Tags

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Styling input box that is between Actinic:StaticSearchField Tags

    Default inpuit in Search Results Bulk Area:
    Code:
    <Actinic:StaticSearchField>
    <input class="input-border" type="text" name="SS" size="40"/>
    </Actinic:StaticSearchField>
    In Search and Search results layouts, if you style the input box by giving it a different class to the usual "input-border", that class is not recognised in the live site and is not present in Firebug.

    Code:
    <Actinic:StaticSearchField>
    <input class="someplaceelse" type="text" name="SS" size="40"/>
     </Actinic:StaticSearchField>
    Can anyone help to explain this?
    Where do the codes for items wrapped in 'Actinic:StaticSearchField' tags reside?

    Thanks
    Jonathan Chappell
    Website Designer
    SellerDeck Website Designer
    Actinic to SellerDeck upgrades
    Graphicz Limited - www.graphicz.co.uk

    #2
    Simple fix

    Instead of:
    Code:
    <Actinic:StaticSearchField>
    <input class="someplaceelse" type="text" name="SS" size="40"/>
     </Actinic:StaticSearchField>
    Style: input.someplaceelse {styles in here}

    Code:
    <div class="someplaceelse">
    <Actinic:StaticSearchField>
    <input type="text" name="SS" size="40"/>
     </Actinic:StaticSearchField>
    </div>
    Style: div.someplaceelse {}
    div.someplaceelse input {styles in here}
    Jonathan Chappell
    Website Designer
    SellerDeck Website Designer
    Actinic to SellerDeck upgrades
    Graphicz Limited - www.graphicz.co.uk

    Comment


      #3
      Also add the class to the "actualtag".
      Peblaco

      Comment

      Working...
      X