1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

Websites webpage review of "HTML Editors"

Discussion in 'Reviews' started by navyfalcon, Jul 3, 2009.

  1. navyfalcon

    navyfalcon Well-Known Member Verified Member

    Thank you for your assistance.
    I would appreciate a thorough review of:
    http://www.freetutorials.name/Reference1/html_editors.html
    -
    Please check;
    - web page analyzers and comment - should I include more as they all are for only a few specific items (meta tags - download time - etc)
    http://freetutorials.name/Reference1/html_editors.html#Analyzers
    - menus (dropdown - static left and bottom)
    - I have started a tutorial under articles for "Alleycode" - I intend to include a few of the editors.
    -
    any suggestion for improvement
    -
    Thank You
    falcon
     
  2. navyfalcon

    navyfalcon Well-Known Member Verified Member

    Could someone tell me how it displays in different browsers and/or different resolutions ?
    The biggest room in the world is "room for self improvement" and I am trying to improve.
    Thank You
    falcon
     
  3. ishkey

    ishkey Moderator, Logos, Sports Crests Staff Member Verified Member

    Had a look at it in ie8 and opera9 "editors"
    looks the same in both, loads in a blink.
    nice job - good selection - clean flow to the layout considering all you are putting up on the page. if someone has a problem, they need to go back to the basics.
    alleycode - one of my favorites to recommend.
     
  4. deyounggerry

    deyounggerry New Member

    A good resource to check different browsers: http://browsershots.org/
    You can see for yourself how it displays in a large number of browsers.
     
  5. navyfalcon

    navyfalcon Well-Known Member Verified Member

    Thank you for your reviews, I do appreciate it
    falcon
     
  6. bmcoll3278

    bmcoll3278 New Member

    I use your site alot to help with seo on mine looks great. I have a question though how you you make it fit the screen at diff res settings. a basic thing im sure but I dont know how.
     
  7. navyfalcon

    navyfalcon Well-Known Member Verified Member

    -
    Use percents, such as:

    .col {
    float: left;
    width: 100%;
    border: 1px solid darkblue;
    margin-bottom: 5px;
    }
    .col { /* 1 column - left column */
    float: left;
    width: 100%;
    border: 1px solid darkblue;
    text-align: left;
    margin-bottom: 5px;
    }
    .leftcol { /* 2 column - left column */
    float: left;
    width: 49.5%;
    border: 1px solid darkblue;
    margin-bottom: 5px;
    }
    .rightcol { /* 2 column - right column */
    float: right;
    width: 49.5%;
    border: 1px solid darkblue;
    margin-bottom: 5px;
    }
    -
    Note: I don't use fixed width, which is state the width in pixels
    but I use floating width, which is state the width in percents
    100% for one column
    50% for two columns (minus the border, .05% or 49.5%)
    33% for three columns, 25% for 4 columns and 20% for 5 columns
    -
    hope this helps
    falcon
     
  8. bmcoll3278

    bmcoll3278 New Member

    ok thats what I do just did not know it was working I tried my site at diff res and it works Thanks. I am going to link to your site under free web stuff on mine or maybe make a new category for seo stuff, If thats not ok let me know and I will remove it.
     
  9. navyfalcon

    navyfalcon Well-Known Member Verified Member

    What ever helps you is fine with me
    You may even get some of the free tutorials
    We all need to help each other
    -
    hope this helps
    falcon