Search results

  1. smoovo

    Question about Paypal

    What??? :confused:
  2. smoovo

    Anyone know if this is legal?

    Search engines have more copyright issues than you think. It doesn't end with music and movies, it has complicated law zones involved with caching websites content, books, videos, images... they all copyrighted materials. But, search engines made to help us and to serve our needs online. The law...
  3. smoovo

    text-image proportion issue...

    I'm glad that i could help. :) By default, browsers are using 1em font size (=16px), so 100% is 1em. So why don't we use 1em instead?! IE is the answer! If we want it to work on any browser and any machine we are using it in percent.
  4. smoovo

    Best way to incorporate midi?

    With all the respect guys, i don't see any Flash help request in this post... Why are you keep discuss it? It's only a matter of embedding audio files, not a flash file... ;)
  5. smoovo

    text-image proportion issue...

    It's hard to say, i see it well on my PC, but try to add "font-size:100%;" instead of the "font-size:10pt;" to your body tag in your CSS, i think this is your bug now, also this will reset your font size and will allow all browsers to act the same on any machine.
  6. smoovo

    Anyone know if this is legal?

    Search engines providing links to websites not to downloads, and just to let you know, lately Google decided to take the first step and kick off copyright infringes and pirates from AdSense. Read more about it here. Next time try to post facts not thoughts, people can get arrested and pay...
  7. smoovo

    text-image proportion issue...

    First i would say post your URL that we can see your page and scripts. Second, i think you might want to use width and height sizes for your images, this will fix your issue.
  8. smoovo

    Looking for feedback

    If you are asking which is better, i think the first one, because it has the same black color in the BG of your banner. The second doesn't count at all, forget it.
  9. smoovo

    Help: How i do something.

    Answers: ;) 1. The borders made by the simple CSS code line "border-left:1px solid #252627;" on a div. The first div (from left) designed separately and it didn't get the border style on it. You can use this method and choose from many styles provided (line width, line style, color). You can...
  10. smoovo

    Best way to incorporate midi?

    It's my pleasure, enjoy. :)
  11. smoovo

    Best way to incorporate midi?

    Play audio files on iPhone/iPod/iPad Just use jPlayer or similar in your web page, and you can play audio files on a computer or any Apple's touch gadget. Here is the link. - Enjoy. :)
  12. smoovo

    Hey guys do you know how to generate a logo like this one?

    Sometimes you can find fonts ready to use for your designed project, like this one. See this link and get an idea what i mean. The background can be done by searching for "grunge", "dirty" or "rusty" Photoshop tutorials. If you are not familiar with Photoshop, get a web designer, like...
  13. smoovo

    can't center my page

    CSS stylesheet can save you time and be very useful when you want to change style of particular part in your page, and it will affect all of other pages that using the same class or id. Unfortunately text can't be changed upon a style changes, CSS controls style only. Text can be changed...
  14. smoovo

    DIV sizing issue

    The last div will act the same as absolute positioned div, and will be positioned regards to it's parent div - the "wrapper". All the other divs can stay "absolute" positioned. If you were using floating divs it was a different story, you could just use PixelPusher's advice or add clear...
  15. smoovo

    DIV sizing issue

    Position relative has the same behave as absolute, it will be positioned as you styled it, just change the last one to relative. I don't think it's hard to do... Try it, you won't get hurt! ;) Not everything gets done with it. In this case the only way to force relative div to stretch to...
  16. smoovo

    can't center my page

    Your body tag should be "margin:0; padding:0;" erase all you other margins, then you can just add "margin:auto;" to your div. This will center your div. - Enjoy. :)
  17. smoovo

    DIV sizing issue

    Your last div should get "position:relative;" to affect your wrapper. This will stretch it to the bottom. - Enjoy. :)
  18. smoovo

    Anyone know if this is legal?

    It is point to any kind of copyright material that can be shared and infringement. It's very complex, and there is the "Safe Harbor" law that they give if the service provider (the website) meets their guide lines, then, only the user will be claimed. All the law title is here, and you can go...
  19. smoovo

    CSS background

    Yes, except things like the tube on the background and stuff around it... The tube could be a div with a absolute positioning and lower z-index than the page holder. So basically everything else, all the content, are inside the page holder. - Enjoy! :)
  20. smoovo

    CSS background

    If you are meaning to the page background, it's a 1px height with width of almost 1,200px and it has style of repeat-y. body {background:url('images/bg.jpg') repeat-y;} But if you are talking about the "page holder", the one in the middle with all the content, it can be a 1px on 1px PNG file...
Top