Jump to content

activeworker

Member
  • Posts

    14
  • Joined

  • Last visited

activeworker's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi guys, Good day I like to inform you that I work in oDesk (SEO). I have learnt about WordPress and Web Design, but I never work professionally in oDesk before. I just want to know that how to start Professional Web Design work if I get this. Which elements need to start for the job? May I ask client to provide something like PSD file or images or anything else for this job? In fact, I just want to get a start up guideline as well. No more, I am waitng for your kind response. Thank you.
  2. Hi guys, Good day I like to inform you that I work in oDesk (SEO). Recently one of the clients invites me an interview “Designing website including electronic payment option”. Though I have learnt about WordPress and Web Design, but I never work professionally in oDesk before. So, please give me advice that how I could convince the client and get the job and complete successfully. Please see the job description below: "I would like to design a website for my small business. It is including the following pages and features: 1. 11 pages including main page. 2. Accepting online payment from credit cards via PayPal. 3. To be searchable in different Search engines 4. Creating SEO. 5. Compatible with all browsers including chrome, IE and Firefox 6. Mobile version with having all pages and options working in android and Apple. 7. Training to how change the text and pictures in pages. 8. Main colors are orange and white. 9. Sample website is www dot ertinc dot com Home (main) page: This page to be loaded when visitor clicks on domain address. This page has some text and pictures. A nice flash showing some pictures is an option The other components of this page are: 1- Top Bar menu(Home, Services, Jurisdictions, Get a Quote, Clients, Links, Carriers, Electronic Payment and Contact us) 2- Logo in top left side 3- Login bar menu (Top right) including "Login" and "Register". This is not functional now. 4- "Copyright @ 2013 Achievement Engineering Corp." in the right bottom of the page. SERVICES Page: A drop-down bar opens and two options shows: Geo-technical Engineering and Special inspection. Drop-down to be slow-motioned. SERVICES/ Geo-technical Engineering Page: All pages to have the same template as home page design. This page includes some text and pictures. At the bottom of page there is a button “Request for Quote”. Visitor will direct to a new page by clicking on this button. SERVICES/ Special Inspection Page: All pages to have the same template as home page design. This page includes some text and pictures. At the bottom of page there is a button “Request for Quote”. Visitor will direct to a new page by clicking on this button. JURISDICTIONS Page: This page is including a map showing San Francisco Bay Area cities. There are some points on map. Clicking on any of those points open an small tag showing the name of City. One more click removes the tag box. This page has some text. GET A QUOTE Page: By clicking on this bat menu two options are opens: Geo-technical Engineering, Special Inspection. GET A QUOTE/Geotechnical Service Page: This page is a form and visitor can fill it up. He can also attach some files (More than one file). By clicking “Submit” button an email to be forwarded to admin including all filled information and attached files. A message to be shown to visitor that his quote received and we will be in touch shortly. Visitor also will receive an email confirming he will receive a quote very soon. Form detail will be provided later. GET A QUOTE/Special Inspection Page: Same as above with different content in form CLIENTS Page: A table in same main template with three un-boarded columns; list of clients, City and scope of work LINKS Page: There are some links in main template and visitor will direct to the page by clicking on each link. CARRIER Page: This page shows list of opening jobs. By clicking on each job a new page with information about the job will appear. There is a button “Submit resume” is in this page. By clicking on this button visitor will direct to a new page can fill the “Cover Letter” section and attach his resume. Clicking on “Submit will send the cover letter and attached files to admin email address and visitor will receive an auto response ELECTRONIC PAYMENT Page: Visitor can type the amount and then continue to pay the amount using the main credit cards via PayPal. CONTACT US Page: Visitor can fill a form and attach a file (Up to 5G). By clicking on “SEND” button admin will receive an email including all field information and attached files. An auto replies email to be forwarded to visitor saying that we received his request and will reply to him shortly. Please send me your proposal including work, time and payment breakdown. Due to previous experience I prefer to not pay in advance." No more, I am waiting for your kind response. Thank you.
  3. Hi guys, I like to inform you that I work in oDesk (SEO). Recently one of the clients invites me an interview “Wordpress Web Designers Needed”. Though I have learnt about WordPress and Web Design, but I never work professionally in oDesk before. So, please give me advice that how I could convince the client and get the job and complete successfully. Please see the job description below: “I am looking for Wordpress Web Designers who will be able to use existing themes and enter text into Wordpress websites. You will need to have experience in using and changing Wordpress themes. Experience with "Elegant Themes" and "My Site My Way" themes is highly valued.” Can anybody tell me, what is "Elegant Themes" and "My Site My Way" themes? No more, I am waiting for your kind response. Thank you.
  4. activeworker

    Gradient

    Hi Everybody, Good day Please see the following code and response. No more, I am waiting for your kind response. Thank you.
  5. Hi Guys, Good day I have a web site: www dot my-portfolio-site dot site88 dot net/ and I want that the website has to be responsive and perfectly function on mobiles and tablets. For your kind information, I know HTML and CSS coding. But I don’t know how to convert the website has to be responsive and perfectly function on mobiles and tablets. So, please see my source code and suggest which code I should write. And where should I place it? No more, I am waiting for your kind response. Thank you.
  6. activeworker

    Resize Images

    how i can resize images when display website in mobile ? or res is <700px when images have 200px; weight or res is <300px when images have 1500px; weight etc. Thank you.
  7. Please visit this link: www dot my-portfolio-site dot site88 dot net/ where you we can see the code and what it creates with 2 clicks. Thank you.
  8. Hi Andrea, I am very glad that you spent your valuable time to reply my topics. I am very happy to share my CSS and HTML code with you. Please see the code:
  9. Hi Everybody, Good day Please see the following codes and response: h4.footer-header{ background: transparent url(images/footer-header.png) no-repeat; line-height: 58px; text-indent: 30px; } #video .play{ float:right; margin-top:5px; } .mini_portfolio_item .block_inside { background:none; background-color:#e2dddc; padding:25px 30px 15px 30px; } Why there has no gap/space between h4.footer-header? But why there has a gap/space between #video .play”? Why “id (#)” and “class (.)” both use here? .mini_portfolio_item .block_inside Whether both class (.) is active here or not? No more, I am waiting for your kind response. Thank you.
  10. Hi Everybody! Good day I like to know some JavaScript definitions are following: try_catch_statement: <html> <head> <script type="text/javascript"> var txt=""; function message() { try { adddlert("Welcome guest!"); } catch(err) { txt="There was an error on this page.\n\n"; txt+="Error description: " + err.description + "\n\n"; txt+="Click OK to continue.\n\n"; alert(txt); } } </script> </head> <body> <input type="button" value="View message" onClick="message()" /> </body> </html> Please see the codes above and give me the following answer: # What is “txt”? Why I should use this? # What is “There was an error on this page.\n\n”? What is .\n\n? # What is “txt+="Error description: " + err.description + "\n\n";” here? I mean txt+, Error description:, err.description and "\n\n"? # What is “onClick="message()” as well? throw_statement: <html> <body> <script type="text/javascript"> var x=prompt("Enter a number between 0 and 10:",""); try { if(x>10) { throw "Err1"; } else if(x<0) { throw "Err2"; } else if(isNaN(x)) { throw "Err3"; } } catch(er) { if(er=="Err1") { alert("Error! The value is too high"); } if(er=="Err2") { alert("Error! The value is too low"); } if(er=="Err3") { alert("Error! The value is not a number"); } } </script> </body> </html> # What is “else if(isNaN(x))”? Why I should use it? No more, I am waiting for your kind response. Thank you.
  11. Hi Everybody, Good day I have been facing little bit problem with my latest PSD to html project. I couldn’t adjust padding and text/image at the bottom of the page. So, I attached a screen shoot "bg position" along with my project files. I like to arrange my bottom end according to the screen shoot image. I like to ensure you that there has no virus in my attached file. So, please see the both files and helps me to identify the problem. Thank you. bg position.zip
  12. Hi, Thank you for your suggestion. Now I understood how to fix it. Keep well.
  13. Hi, Now I am working with a CSS project where I can set up a logo but when I want to set up navigation right side of logo it doesn’t work. You can see this in my attached file. If you want more information, please go this link: www dot net dot tutsplus dot com/tutorials/site-builds/from-psd-to-html-building-a-set-of-website-designs-step-by-step/ How do I fix it? Thank you. CSS Pro.zip
  14. Hi everybody! I am a new member of your community. I hope your suggestion will help me a lot. So, please see the following things and response: What is string? What is parameter? What is parentheses () ? Please see the following codes: <html> <head> <script type="text/javascript"> function show_prompt() { var name=prompt("Please enter your name","Harry Potter"); if (name!=null && name!="") { document.write("Hello " + name + "! How are you today?"); } } </script> </head> <body> <input type="button" onClick="show_prompt()" value="Show a prompt box" /> </body> </html> name!=null && name!="" is included here. Here what is the meaning of null? Here what is the meaning of “”? Thank you.
×
×
  • Create New...