Jump to content

lovewebdesign

Members
  • Posts

    50
  • Joined

  • Last visited

Everything posted by lovewebdesign

  1. Nice design. Thanks for sharing !
  2. lovewebdesign

    HTML

    Wait, you said you use text editor? If you do, I think you forgot to switch to code mode to write down your code.
  3. Local shared objects, sometimes referred to as "Flash cookies," are data files that can be created on your computer by the sites you visit. Shared objects are most often used to enhance your web-browsing experience.
  4. 1. simply your website HTML/CSS code. 2. Use low quality images as possible.(such as jpg,gif) 3. upgrade your server.
  5. I guess you've met a path problem, did you put these stuff into the same directory that your website is located in? If not, you just need to put them into the same folder and edit its directory. That's all.
  6. What you need is to use jQuery effect on buttons.
  7. The real effect way to improve speed is to change a better server...really...
  8. Use version 1.0.You would only need to use version 1.1 if you are using certain non-ASCII characters in identifiers, EBCDIC line ending characters, or control characters (character codes 1 - 31).
  9. Here is a tutorial about this issues: Hoep that can help you.
  10. Step 1. Install Apache HTTP server.Step 2. Configure Apache to share documents from the right folder.Step 3. Password your web site documents.Step 4. Congratulate yourself. You've got a home webserver running. Hope that can help you.
  11. you can achieve animation effect by using jQuery plugins.
  12. I've voted HTML kit. It's the first html editor I've used. Quite easy-to-use than other, IMO.
  13. That's a really useful stuff for a designer like me to select a color scheme, in the past, I've used to involve in colorcombos, it's also cool.
  14. Did you just put the active as the same color as normal?
  15. What a weirdo... Learn a lot from this problem...
  16. As far as I can see, the effect of textbox can be compatible with mobile device...
  17. Thanks for the answer, I've also learn a lot from this post.
  18. If you don't have to support older browsers, you can use a display box. I have the following class: .vertically_centered {display: -webkit-box;-webkit-box-orient: horizontal;-webkit-box-pack: center;-webkit-box-align: center;display: -moz-box;-moz-box-orient: horizontal;-moz-box-pack: center;-moz-box-align: center;display: box;box-orient: horizontal;box-pack: center;box-align: center;} Then put just about anything inside there. Since you want the "wrap" div vertically centered, try assigning the vertically_centered class to your body element.
  19. Really confused about what's your problem... You should give us more details about this problem....
  20. you can learn something about responsive web design. It's a kind of solution to be compatible for all the devices
  21. I cannot take your point clearly. Please show me your page so we can solve the problem together.
  22. I found some mistakes on your webpage: in the right "ongoing activites" and lower left corner facebook logo It seems like padding you've set is not enough...
  23. Not at all...But there are some websites can generate logo for free.... a good inspiration worth £60.....
  24. If you are using css, problem will be simple: textarea {height:100px; width:100px; } You also can also specify the rows and cols attributes of the textareas to control their size. Rows are the horizontal lines and cols is the number of characters wide you want the texarea to be: <textarea name="myText" rows="10" cols="80">Enter some text</textarea>
×
×
  • Create New...