Draw a thin border around an inputText box????

Hi,
I would like to draw a thin border around an inputText box but when I use the following, I am getting a thin border around the inputText box as well as the label (text) associated with it. I don’t really want this border around the label.
border-width:thin; border-style:solid
So how can I draw a thin border just around a inputText box only (Not around the label associated with the inputText) ?
Regards
V.Piraba

Hi
I found the answer. Just do the following to draw a thin border around a inputText box.
border-width:thin; border-color:rgb(0,0,0)
---------------------------------------------

Similar Messages

  • Unwanted thin border around DIV

    So I have two pages (not online yet) in a site I am builing.
    They both have an arrow rollover (about 60x40px made in PS), The
    first one is fine and the arrows sits on the background seemlessly.
    I used the same master file, but changed the arrow color. Made
    another page but on this page I can see a thin white border around
    the 40x60 box the arrow sits in . The border bvalue is set to 0. It
    sits on black. I tried no BG color, and Black BG color and neither
    made a differnce. I am really stumped. What causes a thin white
    outline around and object/DIV like this?

    The image itself probably has the border in it. Remake the
    image and be
    careful when you export it to make sure there is no border.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "iptinak" <[email protected]> wrote in
    message
    news:gckfrn$ou7$[email protected]..
    > okay, it is something about how the image is saved. I
    took the new arrow
    > out
    > and inserted the old one to the same page. No border.
    They are both JPGS.
    > I
    > realize now that when I made the first one I never saved
    saved the PS
    > original
    > files. I opened the JPG and over laid on top to redo it.
    I must have saved
    > it
    > differently but I don;t see any differences. What am I
    missing here?
    >

  • I have never used my mac for desktop publishing before and am having some problems.  This sounds really dumb, but I can't figure out how to put a border around a text box.  Also, how do you edit the border, i.e. border color, thickness, etc. Help!

    I have never used my mac for desktop publishing before and am running into some real problems.  How do you put a border around a text box?  Can you edit the border - color, thickness, etc.?  Help!

    I think the best solution is to read Pages documentation, go to Help and you have a long list of options. Pages is capable of quite sophisticated things, some features are above Nisus or Mellel, so it is not so simple to summarize things in a few lines.

  • How to put a border around locked text boxes?

    I have a number of locked text boxes. I need to place a border (a box) around them. How do I do that?

    Govan,
    1. It's helpful to give a full and complete description of your problem when first posting in order to get a complete answer and avoid follow up posts.
    2. There's no need post the same answer twice.
    My answer: The stroke/line around a text box is all or nothing. If you want to eliminate the line between adjacent text boxes you'll have to draw a white line over the offending line to cover it up. Once this is done, select both text boxes and the line (using shift-click or command-click) open the Arrange menu and choose Group (or press Option-Command-G). This will keep the white line in place if the text boxes move.
    Good luck,
    Terry

  • Black border around buttons and boxes

      My browser displays a thick black rectangle around buttons and dropboxes. It affects webkit browsers, luakit and surf. This is a stripped down atom desktop. There is gtk 2 2.24, libwebkit 1.8.3, standard xorg, xf86-video-intel 2.20.5 (i915), and cairo, all from the arch repo, and linux-ck-atom 3.5.3 from AUR. I have cairo but no mesa and no compiz. Adding mesa doesn't fix it. But it's possible I removed some important graphic library. Any suggestions how I might fix it?
    Last edited by skeerly (2012-09-02 00:28:22)

    Thanks for the suggestions. The accelerators don't make a difference, neither does today's new intel driver. I've had the same version of cairo since June (1.12.2-1 -> 1.12.2-2) and this problem is recent. As a last resort I'll try to find an old cairo package. But maybe I should look into libwebkit or gtk first.

  • How to draw a border around a Textured Plane?

    Hi everyone,
    How does one go about drawing a square border around a textured square plane?
    I've tried using the setBoundaryColor() method, and have set the texture2D's boundaryModeS and boundaryModeT to CLAMP, but no boundary color appears.
    Can someone help?
    Here are some fragments of my code:
    /** My plane **/
    QuadArray plane = new QuadArray(20, GeometryArray.COORDINATES
    | GeometryArray.TEXTURE_COORDINATE_2
    | GeometryArray.COLOR_3
              float length = 0.5f;
              float epsilon = 0.1f;
         Point3f p = new Point3f(-length/2.0f, length/2.0f, 0.0f);
    plane.setCoordinate(0, p);
    p.set(-length/2.0f, -length/2.0f, 0.0f);
    plane.setCoordinate(1, p);
    p.set(length/2.0f, -length/2.0f, 0.0f);
    plane.setCoordinate(2, p);
    p.set(length/2.0f, length/2.0f, 0.0f);
    plane.setCoordinate(3, p);
         Point3f upperborder = new Point3f(-(length/2.0f+epsilon), length/2.0f+epsilon, 0.0f);
    plane.setCoordinate(4, upperborder);
    upperborder.set(-(length/2.0f+epsilon), length/2.0f, 0.0f);
    plane.setCoordinate(5, upperborder);
    upperborder.set((length/2.0f), length/2.0f, 0.0f);
    plane.setCoordinate(6, upperborder);
    upperborder.set((length/2.0f), length/2.0f+epsilon, 0.0f);
    plane.setCoordinate(7, upperborder);
    Point3f rightborder = new Point3f((length/2.0f), length/2.0f+epsilon, 0.0f);
    plane.setCoordinate(8, rightborder);
    rightborder.set((length/2.0f), -(length/2.0f), 0.0f);
    plane.setCoordinate(9, rightborder);
    rightborder.set((length/2.0f+epsilon), -(length/2.0f), 0.0f);
    plane.setCoordinate(10, rightborder);
    rightborder.set((length/2.0f+epsilon), length/2.0f+epsilon, 0.0f);
    plane.setCoordinate(11, rightborder);
    Point3f lowerborder = new Point3f(-(length/2.0f), -length/2.0f, 0.0f);
    plane.setCoordinate(12, lowerborder);
    lowerborder.set(-(length/2.0f), -(length/2.0f+epsilon), 0.0f);
    plane.setCoordinate(13, lowerborder);
    lowerborder.set((length/2.0f+epsilon), -(length/2.0f+epsilon), 0.0f);
    plane.setCoordinate(14, lowerborder);
    lowerborder.set((length/2.0f+epsilon), -length/2.0f, 0.0f);
    plane.setCoordinate(15, lowerborder);
    Point3f leftborder = new Point3f(-(length/2.0f+epsilon), length/2.0f, 0.0f);
    plane.setCoordinate(16, leftborder);
    leftborder.set(-(length/2.0f+epsilon), -(length/2.0f+epsilon), 0.0f);
    plane.setCoordinate(17, leftborder);
    leftborder.set(-(length/2.0f), -(length/2.0f+epsilon), 0.0f);
    plane.setCoordinate(18, leftborder);
    leftborder.set(-(length/2.0f), length/2.0f, 0.0f);
    plane.setCoordinate(19, leftborder);
    TexCoord2f q = new TexCoord2f(0.0f, 1.0f);
    plane.setTextureCoordinate(0, 0, q);
    q.set(0.0f, 0.0f);
    plane.setTextureCoordinate(0, 1, q);
    q.set(1.0f, 0.0f);
    plane.setTextureCoordinate(0, 2, q);
    q.set(1.0f, 1.0f);
    plane.setTextureCoordinate(0, 3, q);
    /** My Texture (using Appearance) **/
    // can't use parameterless constuctor
    Texture2D texture = new Texture2D(Texture.BASE_LEVEL, Texture.RGBA, image.getWidth(), image.getHeight());
    texture.setImage(0, image);
    texture.setEnable(true);
    texture.setMagFilter(Texture.NICEST);
    texture.setBoundaryModeS(Texture.CLAMP_TO_BOUNDARY);
    texture.setBoundaryModeT(Texture.CLAMP_TO_BOUNDARY);
    texture.setBoundaryColor(new Color4f(1.0f, 0.0f, 0.0f, 0.0f));
    planeAppearance.setTexture(texture);
    Is there a better way to do it?
    Thanks in advance for any help!

    Do a control-A (select all). This should put a selection outline around your image. Then do an Edit-Stroke. Define your Width in pixels, Color, and then choose Inside. Set blending to whatever you want (Normal for a solid color) and then the Opacity.
    Play with it. Have fun. Do NOT edit original images - always do an Image-Duplicate before doing edits until you know what you're doing. It is way too easy to make edits and then save that file over your original - losing the source file forever (unless you have a backup).

  • Black border around entire design

    I would like to make a black thin border around my entire design but the page is made of a table with atleast 6 rows and lots of different images. I don't think the border should be stagnant as the design changes from page to page. Check outjuliakuskin.com/jk2/home.html. Can someone please tell me how I can do this? In CSS? Thank you.
    -Julia

    You can use a wrapper division around anything and then set the css border attributes to the kind, size and color you want for that border. Just set an ID for the div so you know where it is being used
    Remember for this list that the space after less than < symbol must be removed for the code to work in your files, the following is just a sample of generally how it would look
    < div id="wrappertable">
    < table width="180" border="1" cellspacing="2" cellpadding="0">
    < tr>
    < td></td>
    < /tr>
    < /table>
    < /div>
    Then in your css editor
    make a div statement called wrappertable
    and set the css like you want it.

  • Thin white border around image in browser

    In Firefox and Safari a thin white border appears around a
    black image. My background is black so.....is it a matter of the
    blacks being slightly different? I'd like the image to appear
    seamless on the page. How can I fix this?
    http://wall-eye.com/about.html
    (it's the Walleye eye navigation image)
    keith

    Hi, Even when you assign 100% to width and height you will notice one black border around applet in case of IE5.0 When I go in to full srceen mode in IE 5.0 It should not show me scrollbars.
    But because of this border scrollbar remains

  • How to draw a border around shape objects?

    How would I draw a border around something like an Ellipse2D object? I tried using using a BasicStroke in a sub-class of Ellipse but nothing showed.

    nvm, figured it out, I wasn't calling the draw method :)

  • I just bought a C4680 all-in-one new in box. It puts an irregular border around "borderless" prints

    I just bought a C4680 all-in-one new in box.  It puts an irregular border around "borderless" prints (at least in 8.5 x ll size) --border is about 1 inch on right, 3/4 at top, 3/8 at bottom and 3/16 at left.  How do I eliminate this?
      Using win XP.

    In iTunes on your computer, select the Purchased section under STORE in the left column. Click on the first track and choose "Get Info" from the "File" menu.
    In the "Summary" tab you'll see details of the purchaser of the track. Click Next to go through all your purchased music one by one until you find the ones you need to get rid of.
    Unfortunately, there are no smart playlist rules that can filter tracks by the purchaser that I know of.

  • How to draw a border around a TreeNode control?

    I have a TreeView that contains levels of TreeNodes. How do I draw borders around the text of the TreeNode? The TreeNode class does not accept a border style property. Assigning the property to TreeView only draws an outside window around the entire tree,
    not the individual nodes.

    Hi T.J.Fan,
    Sheng Jiang give a good suggestion, you could use the DrawNode event, I make an example for you.
    before you using this, you need to set DrawMode
    property to OwnerDrawText;
    private void treeView1_DrawNode(object sender, DrawTreeNodeEventArgs e)
    // Draw the background and node text for a selected node.
    if ((e.State & TreeNodeStates.Selected) != 0)
    Font nodeFont = e.Node.NodeFont;
    if (nodeFont == null) nodeFont = ((TreeView)sender).Font;
    Pen p = new Pen(Brushes.Red);
    e.Graphics.DrawRectangle(p, e.Node.Bounds);
    // Draw the node text.
    e.Graphics.DrawString(e.Node.Text, nodeFont, Brushes.White,
    Rectangle.Inflate(e.Bounds, 2, 0));
    // Use the default background and node text.
    else
    Font nodeFont = e.Node.NodeFont;
    if (nodeFont == null) nodeFont = ((TreeView)sender).Font;
    Pen p = new Pen(Brushes.Red);
    //draw border
    e.Graphics.DrawRectangle(p, e.Node.Bounds);
    // Draw the node text.
    e.Graphics.DrawString(e.Node.Text, nodeFont, Brushes.Black,
    Rectangle.Inflate(e.Bounds, 2, 0));
    // If the node has focus, draw the focus rectangle large, making
    // it large enough to include the text of the node tag, if present.
    if ((e.State & TreeNodeStates.Focused) != 0)
    using (Pen focusPen = new Pen(Color.Black))
    focusPen.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
    Rectangle focusBounds = e.Node.Bounds;
    focusBounds.Size = new Size(focusBounds.Width - 1,
    focusBounds.Height - 1);
    e.Graphics.DrawRectangle(focusPen, focusBounds);
    private void myTreeView_MouseDown(object sender, MouseEventArgs e)
    TreeNode clickedNode = treeView1.GetNodeAt(e.X, e.Y);
    if (clickedNode.Bounds.Contains(e.X, e.Y))
    treeView1.SelectedNode = clickedNode;
    #TreeView.DrawNode Event
    https://msdn.microsoft.com/en-us/library/system.windows.forms.treeview.drawnode(v=vs.110).aspx
    Best regards,
    Youjun Tang
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Black border around boxes and oval shapes

    I created some boxes and oval and circles in InDesign and it is placing a black border around the shapes. How can I get correct this? I am using InD CS6.
    Thanks,
    Joe

    Select the frames and go to Window>Stroke and change the stroke value to 0pts
    Or press "/" on your keyboard
    Or click the square in the tool bar on the left the bottom one and press the icon that has a red line going through it

  • Drawing a lowered / raised bevel border around column headers

    Hello,
    I have a JTable and I want that every time while the user is pressing the mouse button down on one of the column headers, it will be drawn with a lowered bevel border around it, and with a raised border while it is not pressed. The problem is that the renderer of the headers has no way of knowing the state of the mouse button when it is requested to draw itself...
    Does anyone know how I can accomplish this effect?
    Thanks.

    Create your own renderer which has a field to indicate which one of the columns to draw with a lowered bevel border around it. (column number is passed into getTableCellRendererComponent, so you know which column is being rendered)
    Add a mouse listener to the header which tells the renderer which column has been clicked on.
    The cell renderer also needs to implement TableColumnModelListener, so that the depressed column index tracks re-ordering of the columns.
    Pete

  • How to get rid of white border around Container Div (main box)?

    I have look and look for a solution but couldn't find one. I'm developing a website but the main issue is the white (I changed it black so you can see what I'm talking about)  border around the website when i go to preview it from DW to Google Chrome or Internet Explorer.
    I've tried everything! from setting body margins all to zero but nothing works... can anyone help me?!

    No that's not what I'm talking about, the black div bot on the top is what i put, I put the entire style.css code in my last post, I'm talking about the white border on the right inside the scroll bar.
    let me explain from the bottom, let say I don't put Margin: 0 under Body  in my style.css . I get a white (I made it Green to show you better) border around my entire webpage looking like this:
    so this made me curios because I wanted to know why it gave me this border without putting Margin: 0 under Body in my Style.css sheet. so i went to inspect element inside Google Chrome and saw this:
    I was shocked because it automatically added 8 px in Margin around the body. So I took all the advice i was given in this thread and put the Margin: 0 ; under Body in my Style.css Sheet and it did this:
    for Some reason it says Margin 0 in the inspect element under body but put a default white border there to the right....
    I have explained this the best way possible. PLEASE CAN ANYONE HELP ME?!
    ps. its doing this for all browsers so i know it not a chrome issue!

  • How to make a border around text?

    In my latest FCE project, I made a solid color matte clip (dark blue) to set below my titles to give the text a colored background (these titles are not overlaid on video clips, so without the colored matte, the background would be the default black of the Timeline, and I don't want black).
    Anyway, so here I have this nice white text overlaid on a dark blue background, looking pretty good, and now I'd like to put a decorative rectangular white border around the text, a thin white line, or a maybe a double white line, sort of like a pinstripe, to elegantly (I hope) enclose the text in a sort of box.
    What would be the best way to create such a border? Could I make one on a transparent layer in Photoshop (I have CS-2,) and then import it into FCE as a clip to set the text above? Or is there a simpler way to do it, within FCE?
    Any suggestions would be welcome.
    Tom

    The only option I see on that PieroF webpage is to download it as a .zip file. When I download it and double-click on the icon, I get that zoom-out effect like it's opening, but it doesn't open. Dropping its icon onto the Stuffit icons doesn't do anything either.
    Anyway, I just experimented with masking off a colored matte in the way you mentioned, and I think I see how to do it: create a color matte and then lay two masks on top of it, an inner one and an (inverted) outer one, which leaves only a thin line of the color matte still showing. Is that it? For a double pinstripe, I suppose I would do that twice, i.e. create two masked-off mattes, one a little larger than the other, and stack them up on the video tracks?
    It's more trouble than the Piero frame generator, no doubt, but effective. Thanks!
    Tom B.

Maybe you are looking for

  • Adobe Acrobat Standard 9 Change computer resolution

    How do I stop Adobe Acrobat 9 from changing the display resolution on my entire computer when I open a .pdf file?  I have scanned my computer with Symantec Cloud and Malware to no avail.  Has anyone else run into this? and if so, how did you fix it? 

  • Trying to run wls in ecplise

    Has any one seen smtg simillar to this? I am trying to run wls 6.1 as a plugin to eclipse. I suspect there can be a problem with the plugin classloader? Funny thing is that the class not found below really does not exist in weblogic.jar... Starting W

  • Im trying to connect my ipad 2 to my new airport extreme

    but it says ''not connected to the internet'' even though i have full wifi bars. what should i do it works fine on the computer.

  • More flv file issues

    hello out there ! What is the reason that at some sites when I go to dl flv files through the activity window of the windows safari menu by double clicking on the flv file I get a text rather then a get video fora dl. And more importantly how do I ge

  • 3 cam multi-cam, HDV or DV?

    First, let me say I read this http://www.kenstone.net/fcphomepage/when_to_staynative.html and even emailed the author about the HDV->DVD workflow. His response was "If you're going to have no HD distribution now or any time in the future, then downco