Search results

  1. smoovo

    Trying to learn CSS

    Yes, you should have container div, it will contain all the content divs. the header will be also some header container. Like this example... (just example) <div id="container"> <div id="header"> <div id="logo"></div> <div id="menu"></div> </div> </div> When...
  2. smoovo

    html & css v's php

    Posting your URL and/or script will be helpful for you/us. :)
  3. smoovo

    website not working in firefox

    I have tried to figure out, but your CSS "banner" id is empty (no images or text). Maybe you should provide any image how it should be look, and then... :)
  4. smoovo

    Trying to learn CSS

    Don't be confused. The reason of inventing CSS was to make life easier... :). The thing is that you can use divs instead of tables. Search online for "div float tutorials", and start learn how to use it. After short practice you will get the touch and it will flow... In CSS you can use both...
  5. smoovo

    Look up Table

    If it has “search” button, you should upload your file (excel) into your database as a table, and get the results by searching the table and providing new table results to the refreshed page with PHP. If not, you have two options: 1. Upload your table to your database and when the select...
  6. smoovo

    Webdesign Software

    Buy DreamWeaver first, you will need script editor and FTP manager. This software includes design window like FrontPage, so one software is enough. As for the domain/hosting, just download WampServer, it's free. You can host your projects on your PC, and work like it's online. When you...
  7. smoovo

    need help readjusting borders

    Correct. You have to take care of the errors you have before you looking for an answers. It seems like a positioning problem, but really, you have to fix this first. - Cheers.
  8. smoovo

    HTML vs CSS ??

    If you are asking this question you have no clue what is HTML and what is CSS. But it's OK, it means you have to learn the basics and you will get the answers by yourself, it's exciting. :D Learn only HTML, leave everything else. While you will be testing and exploring this language you will...
  9. smoovo

    Twitter Bacground semi transparent

    I can't see any sidebar transparent in this page you provided. Can you post screenshot? Thanks.
  10. smoovo

    html & css v's php

    HTML & CSS is the body and style of your pages, and they are static content. They are the content that your browser show to you and to your visitors. PHP is a language that "speaks" with the server, ask and gets results. PHP can't be visible to you or to your visitors through the browser. So...
  11. smoovo

    I need help with my site banner

    Do this: 1. Make div with your old banner measures. 2. Add background image to it (to make it nice). 3. Make this div "position:relative;". 4. Put inside this div the name, phone and other stuff you want on your banner. 5. Place each part by adding div around it, and 6. Each...
  12. smoovo

    What have you done to keep Earth green?

    I have to say something here. If you are planning to leave the room for more than 15 min, turn off the lights. The power that turns the bulb on uses energy of about 15~20 min lighting time. This is points to Fluorescent bulbs only. To read more about this issue i found this article -...
  13. smoovo

    My website

    bcee is right, use sprite image, it will be fantastic. Everything will work smooth.
  14. smoovo

    Moving Planet Films website

    Looks like a template based with no offense, but it looks very good. Very clean and well done with the colors. The logo made with yellow, so you should use it more often (buttons, links...). Only one small (big) issue, you could cut the boy's image nicely, it's very noticeable.
  15. smoovo

    CSS background

    OK. The background will be configured in the body CSS body {background:url('image.jpg');} If you want it to be fixed body {background:url('image.jpg'); background-attachment:fixed;} The page (white container) will be a div with fixed width (lets say 900 pixels), and we want it to be...
  16. smoovo

    My website

    Nice, clean colorful work. :)
  17. smoovo

    Web Development work from home?

    If you live in the US: Craigslist > State > Gigs > Computer > (search for ) "web"/"web design"/"php"/etc... If not, go to freelancer.com, sign up, and search for projects to bid on. - Enjoy. :)
  18. smoovo

    Help with editor integration

    Please provide your page script (HTML and your CSS), plus the integration script. You don't have to copy paste all of it, just give us link to your page instead of images.
  19. smoovo

    CSS background

    Are you talking about the page layout or the menu? In your first post you talked about the menu, this example you posted is about the page layout :confused:, we all want to help you but you don't explaining your problem. Provide: 1. Link to your website (yours). 2. Image attached to...
  20. smoovo

    Application Form

    First, there is no way not to use HTML, it's the basic markup language. Now, you have to build your form in HTML, and to send it via PHP code that will do the job. The PHP will save the data in your XML file on the server together with storing it in your clients DB table (using MySQL). -...
Top