Progressive Design Website Question

I have made a new site and it's my first attempt at progressive design.
http://www.openrangeimaging.com/index.html
I am testing the progressive functionality of the site by dragging the browser window to it's narrowest width and observing how the website re-flows and images re-size. I think I may have some problem with the header section but I'm not sure.
What I'm trying to achieve is that when the browser is narrowed the header logo re-sizes, the contact info just disappears off the screen and the nav menu re-flows. It pretty much works that way as I have it.
1) On all of the pages, at a certain point while dragging the browser to a narrower width, a horizontal scroll bar appears. Is this normal or should this scroll bar not be appearing at all?
2) On the pages that have 2 main content columns "websites", renderings", "blog" and "about" when the browser is at it's narrowest width there is no horizontal scroll bar. Everything appears as I want it to. On the other pages "index/home" and "contact when the browser is at it's narrowest width there is a horiz scroll bar. It may have something to do with the 2px border but I am thinking it may also be related to the contact info in the header. I can't figure out how to make it go away.
If anyone can look at this and offer any advice it will be most appreciated. Also any other comments or criticism about my first attempt at progressive design will be welcome.
thanks in advance for any help!

yes.
the easiest way to do that is to use a sharedobject.
var so:SharedObject=SharedObject.getLocal("yourwebsite","/");
if(so.data.answer1){
//skip the questions page
} else {
//display the questions page
//when questions are answered/emailed:
so.data.answer1=...
so.data.answer2=...
so.data.answer3=...

Similar Messages

  • What is the size for design website layout ?

    Hi everyone
    I am new to adobe forum and photoshop. I just bought domain  for that i want to design website layout but i coud not sure about size in pixel.Can anybody help me over here
    Thanks in advance for your help !
    URL removed by: PECourtejoie

    Hello, I'm not a web designer, but I see that nowadays, fixed designs are becoming a thing of the past due to the browsing that is now done more on mobile devices than on computers. More and more, flexible designs are done, with applications such as: http://html.adobe.com/edge/reflow/
    I removed your URL as it was a common SEO tactic to post fake questions to get hits, I don't imply that's the case for you, but it was not relevant for your question.

  • ID CS5 for designing websites?

    Hi there all you helpful people!
    I have asked this question before - but it was a while ago and I wondered if things had changed for anyone.
    Is anyone using IDCS5 for designing/prototyping websites?
    I am a print and web designer and use ID for all my print work and FW for all my web work.
    Increasingly I am getting more and more frustrated with FW - so many simple things that it does sooooooo badly compared to ID.
    Now that IDCS5 has the ability to design in pixels there is the option to design websites in ID, however, it will not export to png format and I know that will make it hard for our coders to use.
    Does anybody have any experiences of using it to design websites and if you do, what workflow do you use?
    Thanks in advance.
    Tom

    tpstom-ggDek1 wrote:
    Bob - to clarify - I don't produce the websites, just design/prototype them.
    I get them to a stage where they look good and the content is right and then they go to a professional coder to be created.
    In my experience, you will have great difficulty exporting everything your coder/developer requires from InDesign. Once designed, typically your developer will need individual images for each section and hex color codes - both of which are not easy to get from InDesign alone.
    I have used InDesign for 'Prototyping' a website but more for the functionality and to show several pages but the design was 100% done in Photoshop. Basically I exported a JPEG from PS of every page in the website that is different and then imported that into InD - one JPEG per page. I then overlayed buttons on top to show the menu working and when clicked, navigated to those pages via InD buttons "Go to Page" function. The buttons themselves can have a gradient overlay so it looks like they are being hovered over. It gave a rather simple example of how the website would finally function and was saved as a PDF so all reviewers could see it.
    InDesign was also used for the style guide which was then sent to the developer, which included all hex codes, text styles and dimensions.
    Hope this helps you.

  • Designing websites -- what code do I need to add to allow a pop behind window to open from one of my webpages? I have code, but Firefox is the only browser that won't pop behind. It pops on top instead. That's not what I want.

    I have designed websites, and would like a pop under (new window) to be displayed BEHIND the current/open window. I have code that does this on all browsers except firefox. For some reason, Firefox insists on opening up the new window on top of the active browser window session. It covers the entire page. Reason is because I purposely have a new full-size window opening BEHIND the open browser. Is there some code I can add to my web page script that forces the new window to open up BEHIND the active/open browser, specific to firefox?

    this is support forum, if you need help about developing please use developer irc channel
    * irc://moznet/developer
    if you dont have irc, use mibbit
    maybe they can help you :)
    Good luck!

  • Can you design websites in indesign?

    Can you design websites in indesign?

    InDesign is  very flexible application but designing websites? While you can certainly use it for prototyping, I would choose something else such as the already mentioned Muse or Dreamweaver.
    There's a great article by Justin Putney in InDesign Magazine on this, but I don't recall which issue. It wasn't that long ago, though.

  • Want to create flash design websites using creative suite cs5.5/beginner

    Hello everyone! I would really like to learn how to create a great flash design website. I already have website hosting with 2 different companies for two different websites that I have not added content to yet. But I want to add my own templates and and custom feel , design and graphics to and I want it to be great! I have downloaded the dreamweaver free trial and I am seriously considering purchasing Adobe creative suite cs5.5 like tomorrow along with the tutorial that has to be purchased separately. I am a beginner to creating websites and I would really appreciate it if someone could point me in the right direction or let me know if I am already headed there by purchasing the complete tutorial for cs5.5. Does any one know if I will be making a smart move?

    I suggest a visit to Lynda.com. Check out the video training there. This link will get you a one week trial. http://bit.ly/fcGpiI
    Bob

  • Misc Basic PL/SQL Application Design/Programming Questions 101 (101.1)

    ---****** background for all these questions is at bottom of this post:
    Question 1:
    I read a little on the in and out parameters and that IN is "by reference" and OUT and IN-OUT are by value. To me "by reference" means "pointer" as in C programming. So it seems to me that I could call a function with an IN parameter and NOT put it on the right side of an assignment statement. In other words, I'm calling my function
    get_something(IN p_test1 varchar2) return varchar2;
    from SP1 which has a variable named V_TEST1.
    So.... can I do this? (method A):
    get_something(V_TEST1);
    or do I have to do this (method B):
    V_TEST1 := get_something(V_TEST1);
    Also, although this may muddy the thread (we'll see), it seems to me that IN, since its by reference, will always be more efficient. I will have many concurrent users using this program: should this affect my thinking on the above question?
    -- ******* background *******
    So Far:<< I've read and am reading all over the net, read and reading oracle books from oracle (have a full safari account), reading Feurstein's tome, have read the faq's here.
    Situation Bottom Line:<< Have an enormous amount to do in a very little time. Lots riding on this. Any and all pointers will be appreciated. After we get to some undetermined point I can re-do this venture as a pl/sql faq and submit it for posting (y'alls call). Some questions may be hare brained just because I'm freaking out a little bit.
    Situation (Long Version):<< Writing a pl/sql backend to MS Reporting Services front end. Just started doing pl/sql about 2 months ago. Took me forever to find out about ref-cursor as the pipe between oracle and all client applications. I have now created a package. I've been programming for 20 years in many languages, but brand new to pl/sql. However, pl/sql sql has freed me from myriad of limitations in MS RS's. My program is starting to get big (for me -- I do a lot in a little) pks is currently 900 lines with 15 functions so far. Currently SP (pls) is back up to 800 lines. I get stuff working in the sp then turn it into a function and move it to the package.
    What does application do?:<<<< Back End for MS Reporting Services Web front end. It will be a very controlled "ad-hoc" (or the illusion of ad-hoc) web interface. All sql queries are built at run-time and executed via "open ref cusor for -- sql statement -- end;" data returned via OUT ref_cursor. Goal is to have almost 100% of functionality in a package. Calling SP will be minimalist. Reporting Services calls the SP, passes X number of parameters, and gets the ref_cursor back.
    Oracle Version: 10.2 (moving to 11g in the next 3 months).Environment: Huge DW in a massively shared environment. Everything is locked down and requires a formal request. I had to have my authenticated for a couple dbms system packages just to starting simple pl/sql programs.

    Brad Bueche wrote:
    Question 1:
    I read a little on the in and out parameters and that IN is "by reference" and OUT and IN-OUT are by value. To me "by reference" means "pointer" as in C programming. So it seems to me that I could call a function with an IN parameter and NOT put it on the right side of an assignment statement. The IN parameter is not passing by reference. It is passing by value. This means variable/value of the caller used as parameter, is copied to the (pushed) stack of code unit called.
    An OUT parameter means that the value is copied from the called unit's stack to the caller (and the current value of the caller's variable is overwritten).
    To pass by reference, the NOCOPY clause need to be used. Note that is not an explicit compile instruction. The PL/SQL engine could very well decide to pass by value and not reference instead (depending on the data type used).
    Note that the ref cursor data type and the LOB data types are already pointers. In which case these are not passed reference as they are already references.
    The NOCOPY clause only make sense for large varchar2 variables (these can be up to 32KB in PL/SQL) and for collection/array data type variables.
    As for optimising PL/SQL code - there are a number of approaches (and not just passing by reference). Deterministic functions can be defined. PL/SQL code can be written (as pipelined tables) to run in parallel using the default Oracle Parallel Query feature. PL/SQL can be manually parallelised. Context switches to the SQL engine can be minimised using bulk processing. Etc.
    Much of the performance will however come down to 2 basic issues. How well the data structures being processed are designed. How well the code itself is modularised and written.

  • Forum for graphic design related questions?

    Does anyone know of any good graphic design discussion forums? I'm looking for a place to ask questions about typography, color, layout, etc.
    Thanks in advance.

    Not as much activity on soem of these, btu here are some good ones
    http://typophile.com/
    http://www.underconsideration.com/brandnew/
    http://www.howdesign.com/forum/

  • Which is the better app for devloping a freelance design website?

    Hey Forum
    I'm putting together a website for my freelance design business. I've rough out the site, but now I'm stuck between using Dreamweaver or Flash. The site is relatively simple with the common home, about, philosophy portfolio and contact pages. I know that Dreamweaver is a real workhorse and is very stable. But as a designer I want a little more glitz and freedom which Flash seems to have. If I do use Flash, I'm worried about bandwidth, search capabilities and device compatibilities.
    Any insight would very helpful
    KatyDad

    The stability of Dreamweavere will have no little bearing on the stability of your web site--Dreamweaver provides tools, it doesn't teach you how/when to use them.  Your decision on which way to go should be based on what it is you are trying to sell.  If you are selling web site design, then you may want to temper things towards a non-Flash design base so that you can demonstrate your coding skills alongside the graphics aspects of it.  If you are selling Flash-based designs, then Flash would be a good vehicle to demo the work itself.  If Flash is not a big part of what you are selling, then it should not be a big part of what you put on display.  But you can always mix things up, showing Flash elements and html/css elements, if the intention is to show well-rounded skills across the design options palette.
    Be prepared for a large swing in differences in the responses.

  • Simple Design Analysis Question before designing dimensions and facts

    Hi I have a simple question ... (I think its simple)
    Suppose that i have the following staging table with the following columns:
    Student_Name | RollNo | Test_Date | Subject-Taken
    with data such as
    Kevin |123|12-4-2010|Physics
    now suppose that I want to design a cube on the basis of the above table so that I can succesfully get the result of a query such as
    List the names of all those students who took the test b/w 12-4-2010 to 12-5-2010 of the Subject Physics
    Here what i need to know what dimensions/Levels would u set and what would be our fact?
    I think that one dimension would be time ( but i am not sure how i would  accommodate and handle duration... any idea )
    would it be wise to make each column a dimension ??? for example the student_nanme a dimension and details of the student its attributes??
    Anyways the main thing is what bothers me is looking at the query we see that we are required 3 things the name of the student , the TestDate and subject taken so if i make the 3 columns the  dimension i am still not sure that i would be able to acomodate the query properly...any ideas on how to approach and handle these situations
    Edited by: Johnacandy on Dec 14, 2010 9:26 AM

    ScoobySi wrote:
    Yes I mean Time dimension, however in a DW you will have many Time dimensions, instead of creating a physical object for each you use a ROLE. If you edit a dimension in OWB you'll see that you can specify a ROLE on the first tab.
    Thanks for the great explaination... could you explain the process of roles a little more that will really save me some time... furthermore u stated
    + "instead of creating a physical object for each you use a ROLE" +
    The way i create dimensions is right clicking dimensions and selecting dimension.... for a standard dimension
    however incase of a time dimension i use a wizard... I am still a bit confused about "Physical objects" ... Id really really appreciated it if you can clarify this up...
    as discussed before one dimension would be Student and other would be subject
    and 3rd one would be TEST_DATE with role ?? and should that be a time_dimension or a standard dimension with a role defined ???

  • Designer datamodel questions

    I've got a couple of questions about how to do a few tasks in Designer.  First, a little background:<br />I've got a dataconnection called "report_data" that's derived from and xml schema.  The structure of the schema is somehing like this: <br /><report><br />    <job_description><br />       <name/><br />       <start_date/><br />       <end_date/><br />    </job_description> <br />    <task><br />       <name/><br />       <description/><br />       <resource> <br />            <name/><br />            <cost/><br />       </resource><br />       <subtask><br />          <name/><br />          <description/><br />            <resource> <br />               <name/><br />               <cost/><br />           </resource><br />       </subtask><br />    <task><br /></report><br /><br />a report has a single jobdescription, and multiple tasks.  Each task has a name and decription, multiple resources, and multiple subtasks.  Each subtask has a name and description, and multiple resources.<br /><br />I've designed a report entry form, with multiple subforms for job_description, tasks, resources, and subtasks.  I've then bound these subforms to the datamodel.  This is all good and works.  The problems start occuring when I want this form to be dynamic.  The Task subform has a button "add_new_task", which adds a new task to the report.  It does this by calling a function "add_new_task()" in a script object.  The function is as follows:<br />function add_new_task(){<br />    var t_node = xfa.datasets.dataDescription.report.task.clone(1);<br />    t_node.resolveNode("name").value = "task " + (xfa.record.resolveNodes("task[*]").length + 1).toString();<br />    xfa.record.nodes.append(t_node);<br />    xfa.form.remerge();<br />}<br />This function appears to work, new instances of the task subform are appended to the document. <br /><br />The task subform also contains subtask subforms.  They are added with a button "add_new_subtask", that calls a function "add_new_subtask(task)".  the function is as follows:<br />function add_new_subtask(task){<br />    var st_node = xfa.datasets.dataDescription.report.task.subtask.clone(1);<br />    st_node.resolveNode("name").value = "subtask " + (xfa.record.resolveNodes("subtask[*]").length + 1).toString();<br />    task.nodes.append(s_node);<br />    xfa.form.remerge();<br />}<br /><br />The button click function is:<br />scripts.add_new_subtask(xfa.record.task);<br /><br />Resources work in a similar way.<br /><br />The problem is now that when I try to create subtasks, they are appended to the initial task, not the task associated with the current record.  Same thing for Resources.<br /><br />Doesn't xfa.record refer to the current record?  If not, how to I determine the current record?  xfa.dataWindow.currentRecordNumber is always returning 0.  I'm assuming that's because there is only 1 instance of the report.  How do I determine the record associated with a given subform?  Is there a better way than using the index of the subform and getting the record with the same index?

    To determine the instance of the record associated with a given subform, you can get the subform's
    index property value. Since new instances are created with the same name as siblings of one another, they end-up getting index numbers in order to make them unique.
    For example, if you create a new instance of the Task subform, you'll have "Task[0]" and "Task[1]" where
    this.index will be 0 or 1. If it's an object parented to the Task subform which needs to know the instance of the Task subform/record in which it occurs, you can use the
    parent property to drill up to the Task subform which contains the object in question and then get its index property value.
    Creating bookmarks is a little more complicated. Unfortunately, XFA doesn't support bookmarks so you have two options:
    Use the xfa.host.setFocus("field name") method to set focus, when the user clicks a button, to a field somewhere on the form to have Acrobat automatically scroll the field in view and set focus to it (see post #6 of the
    Links Within PDF thread for an example); or
    Use the
    target property of the event object you get in an XFA event script to access the Acrobat Document object and then programmatically add bookmarks to the form (but
    this will only work if the form is viewed using Acrobat):
    event.target.bookmarkRoot.createChild("Next Page", "this.pageNum++");
    I'm not familiar enough with creating bookmarks in Acrobat to elaborate further on the subject but you can read more about it in the
    Acrobat JavaScript Scripting Reference.
    I hope this helps!
    Stefan
    Adobe Systems

  • Best way to design website with multiple pages

    In dreamweaver what are your suggestions to create a full website with multiple pages where each page has a different but similar setup. I'd have a similar theme but I don't want each page to be exactly the same as the home page? I've tried a template but that was a nightmare since some of my pages were different from the original page and i had to mess with it to fix it.I've also made the home page, saved the html file in my website root folder then changed that page into the second page and saved it as another html file. I have thought about using pre-made templates and designs but I kind of want to design from my own creative viewpoint.
    your ideas are appreciated, advice welcome.

    Templates do make your life much easier.  I use the following scheme....
    First, I mentally separate the page layout into three sections:
    1.  Stuff that will not change for the life of the site (i.e., the basic
    structural elements)
    2.  Stuff that *could* change from time to time (e.g., navigation elements,
    burst advertisements, section-specific navigation, etc.)
    3.  Stuff that *will* change from one page to the next
    Then I create a template containing all class1 elements.  Next I create
    server-side include files containing all class 2 elements and place them on
    the template as needed.  Note - some of the class 2 elements may be
    "section-specific elements", and their placement on the template will be
    subject to the next item.  Finally, I insert editable regions to cover the
    class 3 items, INCLUDING the section-specific navigation.
    This allows me to just cookie-cut the rest of the site.  I estimate that
    even for fairly large sites, about 80% of my work goes into planning and
    creating this template file.
    To handle pages that have substantially different layouts I just change the CSS on those pages, and leave the Template alone.

  • .mac website question

    I know this is off topic, but I want to build a website in iweb. I know you have to use .mac to publish it very easy. IS there a way to do it with out it? Also do you have to publish it to the .mac site, or can you publish it to your own domain? Ya know. like www.whatever.com instead of the .mac blah blah blah?
    Thanks
    rick

    Hi Rick,
    Yes, it is possible. For a detailed explanation Tom Gewecke (a frequent contributor) has prepared a User Tip on just such a procedure. You can view it here:
    http://homepage.mac.com/thgewecke/iwebserver.html
    If you have further iWeb related questions it would be best if you post them in the iWeb forum:
    http://discussions.apple.com/forum.jspa?forumID=1108
    RD
    EDIT: Further iWeb Tips by Tom can also be seen here:
    http://web.mac.com/thgewecke/iWeb/1/Tips.html

  • Design View question

    Good evening,
    I'm working on a site using a Dreamweaver template and for
    some reason my "Design View" shows up only like you'll see in the
    top image on this page:
    http://community.middlebury.edu/~nmeiers/question.htm
    I want the pages to appear like the template I put on the
    bottom so I can see the design. It used to look like that and I
    don't know what I changed. Any ideas?
    (Yeah, I know Design View isn't ideal, but I'm not very good
    at this and I like seeing the graphics.)
    Thank you,
    Nick

    Looks like for the top image the style sheet isn't attached.
    Walt
    "Topkdlfs" <[email protected]> wrote in
    message
    news:gcro26$pnf$[email protected]..
    > Good evening,
    > I'm working on a site using a Dreamweaver template and
    for some reason my
    > "Design View" shows up only like you'll see in the top
    image on this page:
    >
    >
    http://community.middlebury.edu/~nmeiers/question.htm
    >
    > I want the pages to appear like the template I put on
    the bottom so I can
    > see
    > the design. It used to look like that and I don't know
    what I changed. Any
    > ideas?
    >
    > (Yeah, I know Design View isn't ideal, but I'm not very
    good at this and I
    > like seeing the graphics.)
    >
    > Thank you,
    > Nick
    >

  • Layout / Design View questions

    This is the sort of thing I've wondered about before, but
    would really like to get to the bottom of.
    Sometimes things seem to go a bit funny in design view -
    although the page will display correctly in a browser - but can
    anyone let me know if there is something not quite right somewhere,
    or if it actually really matters?
    As an example, I've posted some screenshots on the link
    below. The only difference is that the 'footer' div has been added
    to the second page. They're both fine in the browser, but as you
    can see from the screenshots, the first is fine in design view, but
    the second (the bottom two screenshots) it all looks wrong.
    Basically is this anything to worry about?
    Even if it isn't, it is a bit annoying, as from a design POV
    it's good to see things as they should be!
    screenshot
    1
    My second question is about TD widths - in these pages I have
    a wrapper div set at 780px, and in the table containing the
    navigation, they navigation buttons/graphics seem to need to be one
    px narrower than they actually are (54 instead of 55px etc) in
    order for them to line up to the total 780px, as per the screenshot
    below :
    screenshot
    2
    If anyone could shed any light on any of this it would be
    greatly appreciated.
    Cheers,
    Iain

    dukla wrote:
    > Basically is this anything to worry about?
    No its nothing to worry about.
    I don't know what version of DW you are using but all
    versions up to
    2004 didn't handle css that well.
    I believe DW8 has improved. However having said that I have
    found a lot
    of the time that it also has a lot to do with how you write
    the css. I
    can't believe version 8 can possible cover all eventualities
    so it
    probably still shows the odd thing or two incorrectly.
    Personally I never had much trouble with DW04. It works
    pretty well with
    the css I write.
    > Even if it isn't, it is a bit annoying, as from a design
    POV it's good to see
    > things as they should be!
    Yeah it does get a bit annoying but you have to work through
    it.
    > My second question is about TD widths - in these pages I
    have a wrapper div
    > set at 780px, and in the table containing the
    navigation, they navigation
    > buttons/graphics seem to need to be one px narrower than
    they actually are (54
    > instead of 55px etc) in order for them to line up to the
    total 780px, as per
    > the screenshot below :
    >
    >
    http://www.handprintwebdesign.co.uk/CollinsBartholomew/tableDesign.htm
    >
    > If anyone could shed any light on any of this it would
    be greatly appreciated.
    I don't think this web thing is totally precise and sometimes
    you have
    to 'hack' it to do the job. Usually if thing are a px out I
    don't bother
    unless it screws the design up in too mmnay browsers.

Maybe you are looking for

  • Fluxbox-like tabs in openbox via tool ?

    Hi! I am happy fluxbox user. Now I am tempted to switch to openbox, BUT I would miss tabs (=auto-grouped windows with tab ower group, like fluxbox - see http://fluxbox.sourceforge.net/features/tabs.php). I would like not to repeat things said elsewhe

  • Why does Adobe Illustrator keep crashing?

    This is more of an Adobe Illustrator question, but seeing that even their support is confused, I thought I might try my luck here. I have a MacBook Pro and only Adobe Illustrator CC crashes expectedly. There is no warning for when it will crash. Sorr

  • JList bigger in one click

    Hello, I would like to fit a JList in a single row (many items...) and whenever the user clicks on the JList, it should open to show all the elements on it. Is it possible to do it with a method or should I implemented it ? thank you very much Marcel

  • Losing Audio when converting videos to work on IPOD

    Hello, I have loads of small home videos I took using a pretty basic Hewlet Packard Camera. They are just MPG files and when I dragged them over into ITUNES then tried to sync them into my IPOD it did'nt work. I followed the instructions and used the

  • GRC Process Controls - Materials

    Hi: I am new to SAP GRC Process Controls. Can anyone suggest me study materials for the same? Thanks Vijai