Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. camyba

    Photoshop CS5 - copy/paste text problem

    @carlow - text is not rasterized, is just regular text. I can paste text into Photoshop but not form Photoshop. @mscallisto - the simple function of copying text form Photoshop and paste it in another application, like a notepad or a HTML editor etc... I've restarted Photoshop, I have looked at...
  2. camyba

    Photoshop CS5 - copy/paste text problem

    Hello, I have a CS 5 copy/paste problem. When I select text from Photoshop and paste it into a html editor or notepad or anywhere except Photoshop, doesn't work. If anyone had this problem and found a solution please tell me because it's very frustrating. Tank you very much!
  3. camyba

    getElementbyId in Firefox

    Make sure you have correct HTML syntax. <html> <head>...</head> <body> ... </body> </html> Had the same problem when one of theese tags were missing.
  4. camyba

    Divs spreading auto over 2 columns

    The solution to this problem might be javascript. You could keep your code and after the DOM is loaded and proper calculation you could modify the content to serve your needs.
  5. camyba

    Divs spreading auto over 2 columns

    You can use a table and it will look better even if the height is different. There are ways to do it with divs but tabel is not a bad thing when you have something like this.
  6. camyba

    div in middle of screen

    Hi, if you still need i use this for a div to stay in the middle of the screen. <style type="text/css"> html, body { height: 100%; margin: 0; padding: 0; } body { display: table; height: 100%; width: 100%; text-align: center/*for IE5 win*/; } #wrapper { display: table-cell...
  7. camyba

    css table-less table in IE7

    or you can do this .it_date_col { display: table-cell; float: left; width: 75px; text-align: left; vertical-align: top; } .it_buyer_col { display: table-cell; float: left; width: 125px; text-align: left; vertical-align: top; } .it_shares_col { display: table-cell; float: left; width: 75px...
  8. camyba

    Page does not work in IE

    Glad I could help! For future projects try adding something like this at the start of your css file: a, a:hover, div, img, h1, h2, h3, h4, h5, h6, ul, li, ol, table, tr, td, p, form {margin: 0; padding: 0; border: 0;} This kind of problems will be solved before they appear.
  9. camyba

    Page does not work in IE

    try this in css file #header .search form {margin: 0; padding: 0;}

Part and Inventory Search

Back
Top