treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Kermet

  • about wordpress menus

    http://codex.wordpress.org/Function_Reference/wp_nav_menu You create the menu in the backend, filling it with whatever you need, then you print to the frontend with wp_nav_menu(array('menu' => 'mymenuname')); You really don&…
    Comment by Kermet March 2012 permalink
  • Finally was able to re-design our OWN site...what do you think?

    @Luminated my bad, i thought i had IE 8 on my VM (running osx), but i have IE 6 still... ..i guess it's enough if any site loads at all on that one... :)
    Comment by Kermet February 2012 permalink
  • Get array of Images from a Wordpress Post

    I use attachments plugin (http://wordpress.org/extend/plugins/attachments/) to attach media to a post, then i can retrieve all the attached media as an array. You could try that if wordpress' get_attachment function doesn't do the trick fo…
    Comment by Kermet February 2012 permalink
  • All Ajax Theme - Js into pages problem

    Probably they rely on document.ready function, or something like that. If they load into the #content's ajax-ed area you probably have to change that logic a bit...just a guess.
    Comment by Kermet February 2012 permalink
  • Finally was able to re-design our OWN site...what do you think?

    I really love the design! However, the site looks really bad in IE8, but i guess you already knew that? :)
    Comment by Kermet February 2012 permalink
  • Loading Dynamic text in HTML?

    You can't do that with HTML, which is static content by definition. However, you could, with some scripting (bash? perl? depends what you have available/what you know already) "dinamically" generate html code based on the input txt/do…
    Comment by Kermet February 2012 permalink
  • Get array of Images from a Wordpress Post

    http://codex.wordpress.org/Function_Reference/wp_get_attachment_image The first example should be what you're looking for.
    Comment by Kermet February 2012 permalink
  • design critique and help

    On Firefox 9, when you click, for example, link B when you're in page A, you get page A loaded then straight after page B pops instead of it. For the homepage, you should center the graph with the big title above. The fonts used on graph are v…
    Comment by Kermet January 2012 permalink
  • Your Top 10 Wordpress Plugins.

    Well i don't have ten plugins, but i always includes the following when i start out a fresh site for a client: Contact Form 7Contact Form to DBAttachments Really can't live withouth them
    Comment by Kermet January 2012 permalink
  • Could Wordpress achieve this?

    First of all, there's nothing you can't achieve in WordPress :) Have a look at this: http://codex.wordpress.org/Template_Tags/get_posts You'll want to use customized loops to achieve what you're looking for.
    Comment by Kermet January 2012 permalink
  • Breaking Up Contact Form Vertically

    Media queries allows you to do that directly into the CSS http://www.w3.org/TR/css3-mediaqueries/ Short answer: you can with something like @media (max-width:500px) { … }, adjust the pixel width for your needs. This doesn't target exactly the…
    Comment by Kermet January 2012 permalink
  • Breaking Up Contact Form Vertically

    I can't see the whole code you posted, you should be embedding it into code tags. Anyway that's the idea, you put the table tags directly into CF7 textarea defining your form. You can put there ids and classes aswell, for styling.
    Comment by Kermet January 2012 permalink
  • Breaking Up Contact Form Vertically

    That's a common request from our clients on WP via CF7. I usually embed everything into this kind of structrure: Insert your name [text* myname] Not the best looking solution, but it works.
    Comment by Kermet January 2012 permalink
  • Wordpress loop: Hide images

    You could use a custom template and include the_content() into a div of some kind of id or class: and put in the css.mycustomclass img { display: none; }
    Comment by Kermet August 2011 permalink
  • .HTACCESS

    I'm sorry, but the snippet you posted will ADD a .php to the url so the webserver can retrieve the correct .php file, and my snippet does just that, but for every request. To do the other way around you will need the following:RewriteRule ^(.+)…
    Comment by Kermet August 2011 permalink
  • .HTACCESS

    Try withRewriteRule (.+) $1.php [L]It will add a .php to any url you write in. As you can see, $1 is the variable for the matched regular expression you have in .+, which will match ANY character 1 or more times.
    Comment by Kermet August 2011 permalink
  • Suggestions on Analytics for Large Website

    Google Analytics, what else?
    Comment by Kermet August 2011 permalink
  • background problem

    Try usingbackground-position: topfor the background, or some other fixed (pixels) dimension, to have consistency between different sized pages
    Comment by Kermet August 2011 permalink
  • using single property classes for multiple elements

    I think the first approach could be more clear, but i'd group the css declarations like this: #element, #element2 { position:absolute; bottom:0; } #element { width:100%; } #element2 { width:500px; }
    Comment by Kermet August 2011 permalink
  • Help with Page Wrap

    The problem you're having is because parent elements doesn't expand to fit child elements, if those child elements are floated. Try applying a class for clearfix to the wrapper: http://css-tricks.com/snippets/css/clear-fix/ Doing so will m…
    Comment by Kermet August 2011 permalink