Recent content by d4m4s74

  1. D

    Resizing images with HTML?

    you can use css. Give the image an ID <img src="image.jpg" id="image"> and give it a variable size #image { width = 50%; height = 50%; } For really high res screens you might want to set a max width and height too
  2. D

    Resizing images with HTML?

    you can use css. Give the image an ID <img src="image.jpg" id="image"> and give it a variable size #image { width = 50%; height = 50%; } For really high res screens you might want to set a max width and height too
  3. D

    Resizing images with HTML?

    you can use css. Give the image an ID <img src="image.jpg" id="image"> and give it a variable size #image { width = 50%; height = 50%; } For really high res screens you might want to set a max width and height too
  4. D

    HTML Question - Trying to get 3 widgets in a single horizontal line, in an HTML...

    if the widgets are all in a DIV find out the ID of these DIVs Then using CSS simply align one on the right side, one on the left and one in the middle using float. div#widget1{ float: left; } div#widget2{ float: center; } div#widget2{ float: right; } You could also use tables, but that's...
  5. D

    I know basic logic PHP but how can I advance?

    The way I learned is buying a PHP book, deciding what I want to do and learn as I go. It seems to work
  6. D

    Spiritually speaking, you should come to this amazing R&S chat room!!?

    reported for spam, thanks for the 2 points
Back
Top