Jump to content

kralcx

Member
  • Posts

    153
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by kralcx

  1. It's called responsive web design; these websites will get you started and point you in the right direction. Responsive Process This is Responsive Responsive Design Newsletter
  2. I don't know of any script that does what you're suggesting. Most likely because using someone else video can get you into copyright trouble or get your Youtube account banned. However if you want to add other people's videos to your own channel you can as long as the video is creative commons. You can learn more about that here.
  3. wouldn't it be easier to just pick a responsive wordpress theme?
  4. Find example sites of what you're looking for and study the code; that usually works for me.
  5. Try cool kitten it is a parllax responsive framework that may help you, however I'm not sure how you would get the code into wordpress
  6. thanks for the info...I just installed it
  7. You can use Google Webmaster Tools to easily find pages with both duplicate titles and meta descriptions. Get more information here or use a program like Screaming Fog to check your site for duplicate pages
  8. Sounds like this should go under the Programming>PHP section?
  9. SEO involves a lot; some science some art. Some is consider blackhat, some whitehat, some greyhat. You need to do both on-site optimization and off-site optimization. Ranking a website is not easy and any script that claims to do so is definitely blackhat and may eventually get blacklisted by the search engines. You can learn more about SEO here
  10. If you like to learn how things work and are willing to do the coding yourself below are two tutorials which will help Create slideshow of photos Scrolling Text
  11. Here is a link to your code; I think this is what you're looking for http://codepen.io/kralcx/pen/IwdKn Instead of stylesheet.css I used style.css and I removed your font-color and an extra html tag.
  12. I just took a quick look at your code and I'm fairly certain transition is not allowed in ie7 also border-bottom is buggy in ie7; here is an example of what usually works for example, instead of border-bottom : 1px solid #161616; do below instead border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #161616;
  13. Instead of using ids step up to html5. For example instead of <div id="header"> use <header>. Here are more html5 examples: <article></article> <nav></nav> <aside></aside> <section></section> <header></header> <footer></footer> <address></address>
  14. Here's a video for you: Responsive Web Design for Noob's
  15. The world will be a better place without Facebook; people need to stop being so trusting of private corporations and governments with their personal data.
  16. I didn't see that...thanks
  17. the new skin looks great...now all you need to do is make the site responsive
  18. Typekit will give you two fonts for free on one site; the paid versions offer you many more choices. Adobe Edge Web Fonts has the same setup as google web fonts; lots of free fonts to choose from.
  19. I've used hostgator in the past with success; you may want to try hostmantis if price is an issue.
  20. kralcx

    Checkbox Hack

    It looks fine to me; I'm using Opera 12.16 and it works fine. CSS3 user-select doesn't work in Opera mini however. You may want to add some prefixr to your code however to account for older browsers. e.g. label { cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; height: 30px; position: absolute; width: 40px; top: 0px; } #content { display: block; clear: both; width: 100%; background-color: lightblue; padding: 8px; min-width: 90%; -webkit-box-sizing: box-border; -moz-box-sizing: box-border; -ms-box-sizing: box-border; box-sizing: box-border; }
  21. kralcx

    Bootstrap

    Foundation is another framework you may be interested in.
×
×
  • Create New...