by-expession

Expression Web Resources

Why a Newbie forum?

Latest post 02-23-2007 2:39 PM by Jonathon VS. 17 replies.
  • 02-21-2007 1:51 AM In reply to

    • mema
    • Top 50 Contributor
    • Joined on 12-23-2006
    • Pacific NW
    • Posts 4

    Re: Why a Newbie forum?

    Thanks bunches Tina,

    I'm reading the links you sent in and I'm doing the tutorial that was with the EW, when I get to trying to import and fix my web site I'll post the link.  I use Shared borders top, side and bottom and I also use the navigation thingy in FP for the menu and the buttons.  I do know how to read the HTML, Java script and to make some adjustments to them but I'm afraid I'm not understanding the terminology with the DWT info I've read so far.  The terminology has always been a problem for me.

    Thanks again,

    Kristie aka Mema

    ps I love the spell check for IE, very cool.

    Mema
  • 02-21-2007 9:50 AM In reply to

    • cdwise
    • Top 10 Contributor
    • Joined on 12-22-2006
    • Houston, TX
    • Posts 532

    Re: Why a Newbie forum?

    Kristie,

    You might want to go over to http://starttoweb.com and sign up for the free Language of Web Design Class (classroom at http://starttoweb.net) which hopefully will help you with termiology.

    Cheryl D Wise MS MVP Expression Instructor: starttoweb.com

  • 02-23-2007 2:39 PM In reply to

    Re: Why a Newbie forum?

    Hi, Crawfor --

    Yeah, you could use a script to redirect people, but if they have JavaScript disabled, they'd still be trapped in your website, not to mention the terror it would be for accessibility.

    Includes are nice because it's just a little snippet of code, like the <iframe></iframe> construct, but they're browser independent and aren't near as clunky.

    Another advantage of includes over iframes -- they don't have to be just a square. I usually have everything in includes except for the part of the page that's different (i.e., the reason for having that webpage). For example, I use server-side PHP includes. My file might consist solely of:

    <? include("../headsection.php"); ?>
    <title>Elephants Roaming America</title>
    <? include("../menu.php"); ?>
    <div id="article">
      <h1>Breaking News! Elephants Are Roaming America!</h1>
      <p>This just in! The African elephant, known solely for its gray hide and large frame, has made an appearance in the United States, worrying the citizens of the small town of Kelston, KY.</p>
      ...
    </div>
    <? include("../footer.php"); ?>

    This is a simplified example, but say the head section would be everything that would normally be in <head></head>, the menu page would contain not only the navigation, but also the company logo and a jazzy Flash animation on the top. Finally, the footer page would contain everything after the article, not just the footer bar. Say, for example, there might be a little floating box with the company's address that could be stashed in this section.

    So, for this reason, includes are much more practical because they avoid all the headaches of updating the same bit of information on every webpage, but they have more flexible shapes than iframes and aren't dependent on the browser's implementation.

    Jonathon VS Freelance Web Artist www.jonathonvs.com
    Filed under: , , ,
Page 2 of 2 (18 items) < Previous 1 2 | RSS
Powered by Community Server (Commercial Edition), by Telligent Systems Sponsored by: Start to Web
@ 2005-2008 Cheryl D Wise