| |

Building WordPress Themes from Scratch FAQs

Note: This article was published while I was in my early 20s. I was much younger and dumber. Please don't hold it against me. One of the perils of having a 20+ year old website!

How do I access the files from the book?

If you go to Page 140 in the book, you’ll see a section called  “Your Download Links” with a link generated for you! Just click on that link (or type it into your browser if you got the print copy) and the accompany files will be downloaded to your computer. To make things easier, you can also click this link, which will take you to Github 🙂

Do Lifetime Updates also come with the print version?

Do they ever! When you buy the paperback version of the book, all you have to do is send a copy of your Amazon purchase receipt to upgrade@rockablepress.com and they’ll send you all 3 digital version of the book as well (PDF, ePub and Kindle). Once you have these three digital versions, we’ll send you the updated versions of the ebooks* when we we launch a revised edition of the book.

*This does not include an updated version of the print book.

Do you cover Responsive Web Design in your book?

Unfortunately I do not. I really wanted to focus on WordPress theming and tapping into the API. I do cover it in my new book, Responsive Design with WordPress, out now!

Is the book be available on Tuts+ Premium?

It is! You can also buy it on Amazon again. Oh happy day!

I found an error! How can I report it?

Bummer! If you found an error, fill out the contact form and include the page number and what the error is. If you’d be so kind, make the Subject, “Errata.”

Have other questions?

Shoot me an email through the contact form on my main site and I’ll get back to you as soon as possible.

Similar Posts

  • |

    Responsive Design with WordPress Giveaway

    As you’ve probably read, my book, Responsive Design with WordPress, came out last month and is now available to purchase online and in stores. My publisher has also sent me a few copies to give to family, friends, important people, etc. I’ve decided that I’m going to give a few of those copies away through a…

  • Google

    Note: This article was published while I was in my early 20s. I was much younger and dumber. Please don’t hold it against me. One of the perils of having a 20+ year old website!Microsoft challeges Google. They are revamping the MSN Search, amoungst other things. This sounds a little farmiliar. O wait- Yahoo did…

  • |

    What are You Passionate About?

    I was having a conversation with a friend recently that lead me to ask myself that very question. I’ve written about passion on occasion and have a general idea of what I’m passionate about, but the question struck me differently this time. I think it’s because the question wasn’t asked of me outright. It was…

  • |

    Regarding Building WordPress Themes from Scratch

    Lately I have been receiving a lot of questions regarding the availability of my book, Building WordPress Themes from Scratch. After speaking with the publisher, Rockable Press, it seems they’ve had to make some unfortunate changes regarding their distribution model. From their website: All Rockable Press books are now exclusively available with any Tuts+ Premium subscription,…

  • | |

    dXc Ramp Builders

    Note: This article was published while I was in my early 20s. I was much younger and dumber. Please don’t hold it against me. One of the perils of having a 20+ year old website! Recently my brother had a skate ramp built in our back yard, and the company who did it, dXc Ramp…

5 Comments

  1. Hi there,
    Sorry to bother you, but I wondered if I could ask a question about p34 in your book? Specifically: wp_nav_menu ( array(‘menu’ => ‘Main’ , ‘container’ => ‘nav’ ));

    I’m not getting any styling on the wp_nav_menu in the header and when I look at the generated code, it doesn’t produce the “nav” div class, but instead provides a “menu” div. I looked in the CSS and all I can see that’s relevant is “header nav” and “header nav ul li” with no header class in the header. I’m more than happy to change the css to reflect this, but I was concerned that I’ve fundamentally misunderstood something. If you have the time to point out where I went wrong, I’d be very grateful. If not, please don’t worry – I’m sure I’ll puzzle it out myself at some point!

    Other than this one issue, I’m really enjoying the book and have found it really interesting and easily navigable. Thank you for writing the book, it’s helped me immensely!

    Regards,
    Angela

  2. Hi Guys, I had the same issue and fixed it finally. Here is the my solution below:

    Open header.php and

    find:

    ‘Main’, ‘container’ =>’nav’ )); ?>

    change with this:

    ‘Main’, ‘container’ =>’nav’ )); ?>

    and add this in master.css file:

    header ul li { float:left ;}

    These will fix the menu issue 🙂

  3. Hi Guys, I had the same issue and fixed it finally. Here is the my solution below:

    Open header.php and

    find:

    [code] ‘Main’, ‘container’ =>’nav’ )); ?>[/code]

    change with this:

    [code] ‘Main’, ‘container’ =>’nav’ )); ?>[/code]

    and add this in master.css file:

    header ul li { float:left ;}

    These will fix the menu issue 🙂

  4. Put the related code in header.php between tags and add this code “header ul li { float:left; }” in master.css

    Sorry for previous posts, the site cuts the codes automaticly

Comments are closed.