Feedback on website

I wonder whether someone could give me some feedback on my first site.  www.cortijoandaluz.co.uk  There are a number of issues with the site.  1. I'd like to get rid of the margin at the top of the site, but can't figure out how to do this. Ideally, I'd also like to get rid of the side margins when the browser width is less than the site's minimum width. 2. There's something odd with the css.I have two sets of attributes for the body, one at the top which deals with padding and one towards the bottom which deals with all the other elements. I would have thought these two sets could be combined, but this sends the whole layout awry. 3. Perhaps related to this issue, a css validation gives me a parse error for the first body reference, but I've no idea what such an error is. 4. I started out attempting a liquid layer, but this proved difficult as I lost control of the text. In the end, the min/max width sizes had to be constrained, that it might simply be better to fix the width..  4. The text in Safari OSX is behaving oddly in the Gardens page. When the browser width is extended beyond a certain point, the text adjacent to the "transparency" div elongates vertically so there are only one or two words per line. This does not happen to the text adjacent to the "slideshow" div, even though both divs are similarly positioned. 5. That issue aside the site looks ok in OSC Safari and Firefox. I haven't been able to look at the site on a Windows PC. From Adobe Lab, it would appear that the text is quite pixelated in IE7 and horribly so in Firefox. I understand there are going to be differences, but this appears a little excessive.  I think that's all.  Thanks very much.

I wonder whether someone could give me some feedback on my first site.   www.cortijoandaluz.co.uk    There are a number of issues with the site.    1. I'd like to get rid of the margin at the top of the site, but can't figure out how to do this. Ideally, I'd also like to get rid of the side margins when the browser width is less than the site's minimum width.   2. There's something odd with the css.I have two sets of attributes for the body, one at the top which deals with padding and one towards the bottom which deals with all the other elements. I would have thought these two sets could be combined, but this sends the whole layout awry.   3. Perhaps related to this issue, a css validation gives me a parse error for the first body reference, but I've no idea what such an error is.   4. I started out attempting a liquid layer, but this proved difficult as I lost control of the text. In the end, the min/max width sizes had to be constrained, that it might simply be better to fix the width.  5. The text in Safari OSX is behaving oddly in the Gardens page. When the browser width is extended beyond a certain point, the text adjacent to the "transparency" div elongates vertically so there are only one or two words per line. This does not happen to the text adjacent to the "slideshow" div, even though both divs are similarly positioned.   6. That issue aside the site looks ok in OSC Safari and Firefox. I haven't been able to look at the site on a Windows PC. From Adobe Lab, it would appear that the text is quite pixelated in IE7 and horribly so in Firefox. I understand there are going to be differences, but this appears a little excessive.   I think that's all.  Thanks very much.

Similar Messages

  • I want to leave seller feedback on website amazon.co.uk, but it will not submit my infromation.

    Na aankoop DVD op website amazon.co.uk, wil ik feedback geven via invullen formulier op website. Vervolgens na klikken op submit gebeurt er niets. Bij verlaten van website wordt ook gevraagd om info 'submit'maar werkt ook iet. Ik heb alle beveiligings-ad-ons uitgeschakeld.
    Eerder, vorige versie firefox, had ik geen problemen.

    Try deleting cookies and cache:
    1. Tools| Clear recent history
    2. Time range to clear: Everything
    3. If it isn't already selected, select '''Cookies''' and '''Cache'''
    4. '''Clear now'''
    '''Check cookie exceptions'''
    1. Tools | Options | Privacy Panel
    2. Set '''Firefox will: Use custom settings for history.''' '''Insure Accept cookies for sites and accept third-party cookies''' is selected
    3. Click '''Exceptions'''. If the misbehaving site is in that list, select it and click '''Remove site'''
    '''Safe Mode'''
    Add-ons can cause problems with not being able to log into certain websites. To see if this is the case with your issue, run [[Safe mode]]. When you get to the safe mode window, select Continue in Safe Mode. If this resolves your problem, see [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    Also see [[Updating Firefox]] and [[Cannot log in to websites]]

  • Please do let me know what do you think about Designer's Digest | Review

    Hi,
    I recently changed domain name and logo of Designer's Digest so your feedbacks are ver importent. Please make sure to leave your feedbacks.
    Website url: http://designersdigest.co
    Thanks

    Hi sir,
    Know you are asking in a design forum, the first thing I would point out is the logo.
    There is pixel errors in it. To fix this try saving it in a better quality.
    Best Regards,
    Sven Philipsen
    hjemmeside - webshop - translate -ordbog
    http://www.godordbog.com/

  • Where can I give suggestions to Apple???????????????

    I couldn't figure it out.
    I love the Twilight series and want to put them onto my iPod nano but I think the audiobooks are really annoying. Why can't they just have the actual books in words so that you can read them?? They could just have the same font that they use for putting lyrics in....
    Message was edited by: alyss53

    Welcome To  Discussions alyss53!
    It depends on the suggestions.
    Here are some possibilities.
    Apple Product Feedback
    Apple Online Support Feedback
    Apple Website Feedback
    ali b

  • Minor PHP Problem

    Hello there,
    I have a PHP script to use to send form-field results. Now
    when sent, ONLY the NAME show's in the message. The 'Comments' show
    but not the actual field results. I have about 15 fields to include
    into this but I'm unsure how I can implement them into the code.
    Really appreciate any help, I'm sure it's only a matter of
    entering the correct data.
    Regards,
    Kristopher (UK).

    Coxdabd posted in macromedia.dreamweaver
    > Hello there,
    >
    > I have a PHP script to use to send form-field results.
    Now when
    > sent, ONLY the NAME show's in the message. The
    'Comments' show
    > but not the actual field results. I have about 15 fields
    to
    > include into this but I'm unsure how I can implement
    them into
    > the code.
    >
    > Really appreciate any help, I'm sure it's only a matter
    of
    > entering the correct data.
    >
    > <?php
    > ini_set('sendmail_from',
    '[email protected]');
    > $email_to = "[email protected]";
    > $name =$_POST['name'];
    > $email_from =$_POST['email'];
    > $email_subject = "Feedback from website";
    > $comments = $_POST['message'];
    > $headers =
    > "From: $email_from .\n";
    > "Reply-To: $email_from .\n";
    > $message= "Name: ". $name . "\nComments: " . $address;
    You did not assign a value to $address, but I suspect you
    wanted that
    to be $comments anyway. Nor have you retrieved the values of
    the other
    12ish fields and appended them to $message.
    > $sent = mail($email_to, $email_subject, $message,
    $headers,
    > '[email protected]');
    > if ($sent)
    > {
    > header( "Location:
    http://www.bobsdomain.co.uk/thankyou.html"
    > } else {
    > echo 'There has been an error sending your comments.
    Please try
    > later.'; }
    > ?>
    >
    >
    Mark A. Boyd
    Keep-On-Learnin' :)

  • In need of some website design feedback (experts please)

    Hey guys I've been designing and redesigning my personal website this is the 5th time I've basically done it over and started from scratch, I find it is very difficult to be objective when designing for myself, and I know that there are probably a number of you who have been doing graphic design far longer than I have (about 6 months), and I'd like to get your feedback, anything that is constructive criticism is appreciated. Just as a background my website is to show my music, select graphic design, and sound design projects I have done. "Future Someday" is what I put out electronic music as, and is somewhat of the largest section (a bit how Tycho designs as iso50, but both are equally important to his "brand"). So my site is futuresomeday.com . I'm designing in muse, here are some sites that look quite good from my perspective and I would like to create something comparable, though I don't need to have their exactl layout/ design style: bleed.com , Alex Goose , Kurppa Hosk , The Designers Republic™ , and Form: Design-led furniture, lighting and accessories for contract environments. . Thanks in advance.

    Download and install the correct versions of the MSVC 2012 runtimes directly from Microsoft after running the cleaner tool. Then try again.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Mylenium

  • How to Include Feedback in Your Website without Using the Blog or Podcast

    Hi All,
    I have been looking at the websites that people have created using iWeb and some have included feedback forms with boxes where visitors can enter their e-mail addresses and then comments in individual boxes and then click on a send button.
    How do you do this, as I would like to do it on my own website?
    Thanks.

    Hi,
    have a look at this here
    http://alyeska.altervista.org/en/iWebFeedbackComments.html
    Regards,
    Cédric

  • Can you please give some feedback for my new website

    Hey guys
    I recently launched a new website. Its of freelance niche.
    http://www.zumzzy.com/
    Brief Intro of the site: Basically here the freelancers can list their services, upload their portfolio, contact details etc.
    And a person looking for such services can directly contact him through the email or IM ids. And the most important point is its FREE for both client and contractor
    Its more of directory nature than a usual freelancing sites where you have to post your project and the freelancer can bid on your project.
    I need some feedback on UI and UI experience of user. Do you think the design is conveying the concept of the site.
    Thanks in advance

    The search menu is over emphasized and the text looks unbalanced.  You should work in a second typeface to make certain elements more interesting or stand out more.  Featured free lancers should be up in the top tier of the layout so smaller browsers do not have to scroll.  "How It Works" is also too big and out of balance.  It is a good start with some rethinking in the overall appearance and concept.  Look at some professional web sites who do similar things like list dentists, lawyers, and doctors.  Think brand and professional corporate identity.  I do not like the hand drawn arrow or clip art.  Work instructions into the sub head under the search box.  Focus on the sketch, not the software.  Get everything laid out either by hand in sketches or an Illustrator template.  Initially, I think the user will find it useful. A little more work on design.

  • Is there a general Verizon website feedback page ???

    Where to post general feedback on use of Verizon website (general website, not just forums) ?
    Thank you for your help.
    Thanks again for your help.
    akm (XPpro, SP-2, IE-7, Office2003)

    There's nothing built into DW (or an extension of DW that I've ever seen) that can do that.
    You would be looking at hand coding javascript to get that kind of set up. Search Google for "astrology javascript", there should be something out there already built that you can copy/paste into DW.
    To get the exact functionality you're looking for may require hiring a professional to create it for you though.

  • Website Feedback, Tips, and Metatags

    I am a sculptor/performace artist and have a website up through iWeb. I am looking for feedback on ease of navigation, seeing that about 50% of my traffic leaves in 30s or less. I am also looking for any tips on metatags and how to generate more traffic and to make the user experience as nice as possible. Any feedback would be great. Link is
    http://www.markmcleod.org
    Mac Mini 1.42ghz, 1 gig ram, 4 external hds   Mac OS X (10.4.7)  

    I do not use a .mac account but rather dot5hosting. I publish everything to a folder, then use fetch to ftp it to my site. I actually did not use one of the built in templates, but started with a blank slate. The contact page was done through http://www.freedback.com/ All you do is insert a text box with the word FORMCODE, generate a form through the feedback site, and subsititute the generated html for the word FORMCODE in that particular page (after it is published). The only thing I don't like about it is that a visitor will have to click the word continure after sending a message in order to get back to the site. Did you notice the flash galleries?

  • Feedback option on the website

    Does anyone else find that the feedback icon on the Canon site is inactive?
    Is there any option to give feedback to the company?

    Hi formercanonuser!  The 'Feedback' option appears to be functional on our website at http://www.usa.canon.com.  The survey will launch in a new window, so you might need to turn off any pop-up blockers you may have.  Also, please note this is a survey about the design of the website.  If you would like to send us any comments or concerns regarding a product, please visit the Contact Us section of our website.  You can call or email to share your feedback!

  • Can we offer feedback on improving the usability of Verizon Wireless's website ?

    I didn't find any email or webform on the "Contact Us" for website feedback.  The only thing I found was a snail-mail address.
    Is this correct? Website feedback is allowed only through snail-mail?

        Hey there onedeetentee,
    I would be more than happy to address your website feedback.  We are always trying to make our website more user friendly and the only way to do that is to hear from the users themselves.
    What kind of feedback do you have for us?
    Ann154 is correct, we currently do not have an option to e-mail us, but we have plenty of other venues for you to interact with us. You can try the Chat option, you can give us a call at 1-800-922-0204, you can send us a post on Facebook or reach out to us on Twitter @VZWSupport.
    Let us know if you need additional assistance.
    Nicholas_VZW
    Please follow us on twitter @VZWSupport

  • Website color feedback

    Hi guys,
    I`m working on a new site and want your feedback on the colors of the website. I know the structure is not perfect, but I want to focus on the colors first.
    Please compare the home page Heilpraktiker Marketing with one of the content pages like Heilpraktiker Homepage
    How do you like the colors? What would you recommend to focus more on the optin box and increase optin rate?
    thanks alot!

    What's your question? The colors are identically drab on both pages.
    For some color inspiration, visit the Kuler site:
    http://kuler.adobe.com/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Feedback Website

    Is it just me, or when you click on "Provide Numbers Feedback" from the Numbers menu, it takes you to a dead link?

    Feedback website for numbers can be found at:
    http://www.apple.com/feedback/numbers.html

  • Website feedback link?

    www.oracle.com and otn.oracle.com would have to be about the only commercial websites on the planet that do not have a readily accessible "feedback" link off the main page or "contact us" pages.
    I can't imagine how many bad links and so on that go unreported because it is just too difficult to figure out how.
    Suggest you put those links in palce ... even if they just link to a forum like this

    Oracle is "unbreakable" as well as it's website, don't you know that? ;)
    Gints Plivna
    http://www.gplivna.eu

Maybe you are looking for