www.webdeveloper.com

Search:

Type: Posts; User: cbVision

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    884

    Make sure you eliminate the margin and padding on...

    Make sure you eliminate the margin and padding on the menu UL:

    ul.menu {margin-top: 0; padding-top: 0;}
  2. Replies
    1
    Views
    648

    1. The padding/margin/etc will depend on the font...

    1. The padding/margin/etc will depend on the font size of the element your applying it to. For example, if you have:

    p {font-size: 1.2em; padding: 1em;} // the padding would be 12px

    2. Yes.
  3. Replies
    2
    Views
    832

    The sprite is the better way to go. It may be a...

    The sprite is the better way to go. It may be a larger file size, but it's going to be faster than loading all 24 images separately.
  4. Gotcha. You could achieve it with pure CSS by...

    Gotcha. You could achieve it with pure CSS by adding this:



    #south_menu ul li:hover ul {display: block; visibility: visible;}
  5. The hover seems to be working for me on the top...

    The hover seems to be working for me on the top nav. What exactly isn't working?
  6. Replies
    7
    Views
    1,228

    In your example, you're using "strong." You...

    In your example, you're using "strong." You could simply do this:


    <p>The quick <strong class="brown">brown</strong> fox jumped ...</p>

    Then in your CSS, you'd have this:

    .brown {color:...
  7. Replies
    9
    Views
    2,328

    Javascript is a must for any web application. ...

    Javascript is a must for any web application. You mentioned payment and registration ... so you could definitely use some field validation here.
  8. Replies
    9
    Views
    2,328

    Javascript.

    Javascript.
  9. Replies
    8
    Views
    1,611

    Perfect! Glad you got it straightened around!

    Perfect! Glad you got it straightened around!
  10. Replies
    8
    Views
    1,611

    Your markup is rendering extra markup between...

    Your markup is rendering extra markup between your line1 and line2 divs. Open it in Chrome Debugger to check. Here's what it's putting:

    <div id="line1">...</div>
    <a href="price.html">
    ...
  11. Replies
    3
    Views
    721

    I've always had to use JavaScript to simply loop...

    I've always had to use JavaScript to simply loop through all the elements and add their widths together then set it to the parent element. Here's a basic example:
    http://jsfiddle.net/ZfSHJ/
  12. Replies
    3
    Views
    599

    Here's a link to get the desired results using...

    Here's a link to get the desired results using your method:
    http://jsfiddle.net/eNtQF/

    And here's the same method but using margins:
    http://jsfiddle.net/3Gxau/
  13. Replies
    3
    Views
    599

    You definitely want to use margins in this case. ...

    You definitely want to use margins in this case. Top is tricky because it acts weird with the height. To get your desired affect, you'd have to add a different "top" to each of the outer divs. ...
  14. Archiac, Do you have a screenshot of the...

    Archiac,

    Do you have a screenshot of the design you're trying to create? It may be best if I show you a simple example to achieve your desired layout.
  15. Are you familiar with floats and margins? The...

    Are you familiar with floats and margins? The type of positioning your using is bad practice for layouts.

    And no, you don't want to move things inline. External stylesheets are the way to go.
  16. Hmm, do you have an illustration on what you're...

    Hmm, do you have an illustration on what you're trying to achieve?

    Here's a basic example of what I think you're looking to do:
    http://jsfiddle.net/5a54a/2/
  17. remove the "left: 30%;" and "top: -130%;"

    remove the "left: 30%;" and "top: -130%;"
  18. ^^^ What ry_lloyd said.

    ^^^ What ry_lloyd said.
  19. Replies
    5
    Views
    1,823

    I didn't go through their PHP course. They have...

    I didn't go through their PHP course. They have some samples you can watch to get an idea though.

    I went through their Drupal and Facebook development courses.
  20. You've got some real oddities for your...

    You've got some real oddities for your positioning.

    I'm sure it has something to do with all these negative margins and top/left positions. I'm not even seeing the H1 inline style you're...
  21. Replies
    5
    Views
    1,823

    I've used Lynda.com and love it.

    I've used Lynda.com and love it.
  22. Replies
    1
    Views
    583

    You need to use a server side language such as...

    You need to use a server side language such as PHP.

    Google for MySQL PHP stuff.
  23. Replies
    1
    Views
    602

    Bump.

    Bump.
  24. Replies
    3
    Views
    750

    Try this: function changeContent(x) { ...

    Try this:



    function changeContent(x) {
    var content = '';
    switch (x) {
    case 'cats' :
    content = '<i>meow.</i>';
    break;
  25. Replies
    1
    Views
    602

    Drupal Navigation

    Hello,

    I'm totally new to Drupal. I'm hoping there's a drupal module out there to help me, but I haven't been successful in setting it up. Basically, I just want to display a listing of all the...
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles