Results 1 to 2 of 2
  1. #1
    Join Date
    May 2007
    Location
    California
    Posts
    30
    Plugin Contributions
    0

    Default stylesheet - help with form fields

    Hello,
    I stink at CSS. Can someone who knows what they are doing help this poor nOOb fix what seems to be a simple issue?

    My issue is with line 82 on stylesheet.css.
    Here is the code:

    FIELDSET {
    padding: 0.5em;
    margin: 0.5em 0em;
    border: 1px solid;

    It creates a border around all the form input fields which is great... looks just fine. The problem is that it is also adding a border around certain buttons such as "add to cart", and "update cart" button, which looks bad.

    Here is a link to what i am talking about http://www.bikebrake.com.php5-9.webs...&products_id=2

    If I remove the border from the FIELDSET style, it makes the form input fields invisible, but if I leave it, my buttons looks bad.... grrrr

    How do I remove the border from my buttons?

    Thanks in advance to anyone smarter than me who can help.

  2. #2

    Default Re: stylesheet - help with form fields

    You have this in your stylesheet:

    Code:
    input {
    	border: 1px solid;
    }

    That's what is creating the border around your buttons.

    You could take that out and style each type of input individually. For example:

    Code:
    INPUT[type=text]
    {
    	border: 1px solid #CCCCCC;
    }
    Sarah

 

 

Similar Threads

  1. Help with stylesheet
    By lqqkey in forum Templates, Stylesheets, Page Layout
    Replies: 6
    Last Post: 30 Sep 2012, 03:33 AM
  2. How to process contact form with new fields data
    By corvettesalvage in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 30 May 2009, 05:33 PM
  3. Need immediate help for displaying product fields in tabular form(cell form)
    By Madhu in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 26 Jan 2009, 01:00 PM
  4. Returns Authorization contrib - prob with form fields
    By heavenlynights in forum Addon Sideboxes
    Replies: 43
    Last Post: 24 Aug 2006, 04:28 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg