Jump to content

kralcx

Member
  • Posts

    153
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by kralcx

  1. Since your new you might as well start learning Responsive Design (responsive design works on multiple viewing devices; e.g. smart phones and different size monitors). The Goldilocks Approach uses a combination of Ems, Max-Width, Media Queries and Pattern Translations to consider just three states that allow your designs to be resolution independent. There are many other grid systems to choose from; I just prefer the Goldilocks Approach the best.
  2. I think you meant to say internal or inbound links (pointing toward your website). Theoretically yes that could be true, however it is not practical. Many people will find brand new websites for a variety of reasons (they may be hackers, they may be directory sites, they may just like your website and want to link to it). If you want to be sure the search engines don't index your website, password protect it or at the very least use a robot.txt asking the search engines not to index your website.
  3. kralcx

    Html To Psd

    The original poster is looking for html to psd not psd to html
  4. Yes. As long as there is a link to that page (for example: index.html or index.php) googlebot (google's search engine) can find it and index that page. Sub-domains are consider separate websites by google, however they can still be crawled and indexed just like any other website. Yes. According to Google's own website: If you need to keep confidential content on your server, save it in a password-protected directory. Googlebot and other spiders won't be able to access the content. This is the simplest and most effective way to prevent Googlebot and other spiders from crawling and indexing content on your site. Hope that helps.
  5. I would say build your portfolio. Just start building some websites; this way you'll understand what you're capable of. Then you'll be in a position to show others what you can do before you take on volunteer work.
  6. Yes that's correct. Googlebot finds pages in two ways: through an add URL form, www.google.com/addurl.html, and through finding links by crawling the web.
  7. If you have Dreamweaver CS5 or CS6 you're in luck. This will get you started... http://www.wpbeginner.com/news/wordpress-themes-made-easy-with-adobe-dreamweaver-cs5/
  8. Download a trial version of dreamweaver and use the find and replace.
  9. Welcome aboard and enjoy!
  10. A cookie is just one or more pieces of information stored as text strings on your machine. A Web server sends you a cookie and the browser stores it. The browser then returns the cookie to the server the next time the page is referenced. The most common use of a cookie is to store a user ID. Many websites will not let you access them if you refuse their cookies. The choice to accept or not is always yours. If you are concerned about being tracked just use a program like ccleaner and remove all cookies after you close your browser.
  11. I am no expert in this field, however it seems to me that you need some type of php to determine the ip address of the user to either use the local streaming server or the CDN. I believe a simple javascript can determine if a user is on a smart phone and redirect them accordingly. Or a more preferable option (in my opinion) is to make your website a responsive web design; that way you won't need a separate mobile version site. Hopefully some one more qualified that I can give you a more thorough answer.
  12. kralcx

    My Intro

    Welcome; this is a great forum for learning...many people willing to help you with your problems.
  13. While paypal is very popular; paypal is evil and should never be used by anyone unless you are willing to throw your money away. Read horror stories for yourself http://www.paypalsucks.com/ I prefer stripe https://stripe.com/ If you are not a do-it-yourselfer try helium https://gethelium.com/ it is the novice friendly version of stripe
  14. Try these: http://www.freestockphotos.biz/ http://morguefile.com/ http://photopin.com/
  15. Unless your website offended the India government and they blocked the site; I don't think her being in India is the reason why she can't view it.
  16. Yes I saw will.i.am, chris bosh, mark zuckerberg, and bill gates urging young people to learn coding because of the huge need for programmers by 2020. I think it's time for me to master Php and Drupal
  17. You can remove this because its redundant with the body html { height:100%; font-family: "Century Gothic", Arial, Helvetica, sans-serif; }
  18. Welcome and enjoy!
  19. Just drop $2,600 USD on Adobe Creative Suite 6 Master Collection and if you master it you'll be good for the 10 years.
  20. http://www.killervideostore.com/videos-photoshop.php
  21. kralcx

    Html To Psd

    With Adobe Acrobat Pro you can covert the html into a pdf file and then open the pdf into Photoshop; however it's basically just an image in Photoshop (no layers).
  22. Even though vendor-specific extensions are guaranteed not to cause conflicts (unless two vendors happen to choose the same identifier, of course), it should be recognized that these extensions may also be subject to change at the vendor’s whim, as they don’t form part of the CSS specifications, even though they often mimic the proposed behavior of existing or forthcoming CSS properties. Although these extensions can be useful at times, it’s still recommended that you avoid using them unless it’s absolutely necessary. It’s also worth noting that, as is usually the case with proprietary code, the extensions will not pass CSS validation. Having said all of the above you have some errors in your linear gradient code. Vendor specific code comes before standard code. You're also missing the vendor specific code for IE plus you have one too many sets of rgba code in your code. I rewrote it below: background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75)); /* vendor specific code for webkit browsers */ background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75)); /* mozilla */ background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75)); /* opera */ background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75)); /* IE10 */ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#9900000 /* IE 5.5-7 */ -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000 /*IE8 */ background-image: linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75)); /* standard code */
  23. You could probably do web development on an iPhone if you really had the will to do it. Me, a desktop with dual monitors is the way to go!
×
×
  • Create New...