1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

What Html Editor do you use?

Discussion in 'HTML & Website Design' started by aim_high, Feb 25, 2008.

  1. pharcyded

    pharcyded Peon

    Messages:
    720
    Likes Received:
    53
    Best Answers:
    0
    Trophy Points:
    0
    #81
    Dreamweaver all the way!! It owns and has all the most commonly used options setup so they can be accessed easily and quickly. :)
     
    pharcyded, Feb 28, 2008 IP
  2. drywallinfoman

    drywallinfoman Peon

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #82
    Oh, I see that the styles are on the html page. I take it I can use one of these two pages as a starting point, and fine tune them for a site right?

    Thanks for all your help!
     
    drywallinfoman, Feb 28, 2008 IP
  3. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #83
    Dan Schulz, Feb 28, 2008 IP
  4. aim_high

    aim_high Peon

    Messages:
    167
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #84
    Could you whip up a tutorial please? I'm still experimenting with design etc right now. If I wanted to create a graphic button and have only the text be the clickable area, would I create a <div> element and set the background as the picture? Then adjust the link to the correct position on the picture? or am I completely off.

    Thank you
     
    aim_high, Feb 28, 2008 IP
  5. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #85
    Actually I do have a tutorial in the works on how to code layouts like this that I'll be submitting to SitePoint for publication as an article on their main site - if they choose to publish it of course.

    But in your particular case (the link image), are you talking about something like this?

    http://www.dan-schulz.com/for-others/ethics/template.html (look at the menu)
     
    Dan Schulz, Feb 28, 2008 IP
  6. aim_high

    aim_high Peon

    Messages:
    167
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #86
    like this,
    [link]http://www.absolutecross.com/images/tips/psd/plastic-tabs6.gif[/link]
    I want it so only the text is hovered over. you cant click on the silver part of the button, only the text. Does that make sense?
     
    aim_high, Feb 28, 2008 IP
  7. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    436
    Best Answers:
    0
    Trophy Points:
    0
    #87
    Unfortunately that's not possible with CSS.
     
    Dan Schulz, Feb 28, 2008 IP
  8. innovati

    innovati Peon

    Messages:
    948
    Likes Received:
    63
    Best Answers:
    1
    Trophy Points:
    0
    #88
    The more a program helps you, the dumber it assumes you are. The more hand-holding it does, the more it limits your ability to learn what it is you're actually trying to do.

    No program can make quality stuff FOR you. You have to know it well enough to write it with a pencil and paper before programs that assist you like dreamweaver are of any use for productivity.

    I think far to many beginning designers now how to make a website in dreamweaver, and not really make a website.

    My big test is this: if you use an IDE or a WYSIWYG editor: *could* you create the website in notepad if you had to, or do you rely on dreamweaver's tools (or whatever you use) to get your job done. Ifo so you aren't a web designer, you're an advanced WYSIWYG user. No biggie, sites still get made, but you're not really a web designer.
     
    innovati, Feb 29, 2008 IP
  9. MosTHaTeD

    MosTHaTeD Peon

    Messages:
    318
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #89
    Dreamweaver and Notepad...lol ♥
     
    MosTHaTeD, Feb 29, 2008 IP
  10. bochgoch

    bochgoch Peon

    Messages:
    1,918
    Likes Received:
    67
    Best Answers:
    0
    Trophy Points:
    0
    #90
    HTMLKIT for me ... I avoid WYSIWIG like the plague ...
     
    bochgoch, Feb 29, 2008 IP
  11. Stomme poes

    Stomme poes Peon

    Messages:
    3,195
    Likes Received:
    136
    Best Answers:
    0
    Trophy Points:
    0
    #91
    Should be easy. Most people have the opposite problem.

    If it were in a menu (where it likely should be), the image is on the li part. The <a> part wraps the text. Only the part wrapped in the <a> is clickable, and if it remains an "inline" element then its height and width are only that of the text.

    <ul>
    <li><a href="#">Thing1</a></li>
    <li><a href="#">Thing2</a></li>
    <li><a href="#">Thing3</a></li>
    </ul>
    The li will have to either be set to display: block (for a vertical menu) or floated left or right (for a horizontal menu)... only blocks (and floats are blocks) can have a set height and width. SO then the li is large enough for the background image. The <a> part remains the only part clickable.

    So if Dan says you can't do that, one of us is misunderstanding what you want. The top plastic picture has nothing to do with anything, right? Only an example of what the button part looks like?
     
    Stomme poes, Feb 29, 2008 IP
  12. Rukna

    Rukna Peon

    Messages:
    80
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #92
    node is enough for this.u can also use wordpad,but not rich text.
    for better service u can see mellowhost !
     
    Rukna, Feb 29, 2008 IP
  13. pachecus

    pachecus Well-Known Member

    Messages:
    1,841
    Likes Received:
    62
    Best Answers:
    0
    Trophy Points:
    110
    #93
    Notepad or DZsoft PHP editor. If I need to build some tables I use DW (only for tables)
     
    pachecus, Feb 29, 2008 IP
  14. vpguy

    vpguy Guest

    Messages:
    275
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #94
    UltraEdit is my favorite. I can't stand things like Frontpage, Dreamweaver, etc. because of the bloat. Tight, hand-written code works best for me.
     
    vpguy, Feb 29, 2008 IP
  15. RantRave

    RantRave Peon

    Messages:
    17
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #95
    I've always used Notepad. I'm not saying it's better than any others, but simple
    to use no frills sometimes the way to go.
     
    RantRave, Feb 29, 2008 IP
  16. BunnyB

    BunnyB Peon

    Messages:
    95
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #96
    I use GoLive, which is apparently now GoDead, but I'm looking to learn more about the coding behind it so I can keep its code under control a little better. It's tough when you start with a WYSIWYG, but I didn't know any better.
     
    BunnyB, Feb 29, 2008 IP
  17. aim_high

    aim_high Peon

    Messages:
    167
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #97
    so I could only make a button where the whole thing is clickable then?
     
    aim_high, Feb 29, 2008 IP
  18. dmi

    dmi Well-Known Member

    Messages:
    2,705
    Likes Received:
    51
    Best Answers:
    0
    Trophy Points:
    140
    #98
    ConTEXT. It's the best.
     
    dmi, Feb 29, 2008 IP
  19. jsb

    jsb Guest

    Messages:
    100
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #99
    It's always interesting how a question like this is replied to. It always seems to be split the same ways too :)

    The fact is one can design a clean non bloated site in Dreamweaver just as you can in notepad. Dreamweaver has come a long way.
     
    jsb, Feb 29, 2008 IP
  20. aim_high

    aim_high Peon

    Messages:
    167
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #100
    I just downloaded html-kit and it looks nice so far :D
     
    aim_high, Feb 29, 2008 IP