Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Did this theme vanish? Noticed I cant download.
Edit the footer fileSo it was server configuration. It activates now.
Is there an option to remove the 'by buildersociety' at the bottom?
<title><?php wp_title('|', true, 'right'); ?></title>
<meta name="description" content="
<?php if ((is_home()) || (is_front_page())) {
echo home_url('description');
} elseif(is_category()) {
echo category_description();
} elseif(is_tag()) {
echo 'Tag archive page for this blog - ' . single_tag_title();
} elseif(is_month()) {
echo 'Archive page for this blog - ' . the_time('F, Y');
} else {
echo get_the_excerpt();
} ?>" />
<?php wp_head(); ?>
The general consensus around the SEO community is that, along with meta keywords, meta descriptions don't matter.
demo link is broken and refer back to buildersociety. Just wanted to mention it in case it is not done on purpose.
Noob question how can I set up a landing page home page with this theme. Under reading there's no option to set a homepage unless I missed it.
.logo-strip-text img {
height: auto;
margin-top: 10px;
margin-bottom: -35px;
max-width: 100%;
}
.logo-strip-text img {
height: auto;
margin-top: 10px;
margin-bottom: -35px;
max-width: 382px;
}
@Ryuzaki is there an easy way to have a full screen width and a sidebar? The regular post size with a sidebar is a little too skinny for some pages but I still want the sidebar.
.container {
position: relative;
width: 100%;
max-width: 960px;
margin: 0 auto;
padding: 0 20px;
box-sizing: border-box; }
Perfect! Thank you! I'm going to make a new page template (full-width and sidebar) and just copy in the regular template but use .modified-container with modified .container code.Yes, but you may find that you want to start adjusting the sizes of some of the images after you do this, which will be more CSS work (definitely worth it and what Lightning is meant for!)
In the style.css file, find this chunk of code, it's right under the main Skeleton section under the sub-section Grid.
Code:.container { position: relative; width: 100%; max-width: 960px; margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
All you'll need to do is change max-width: 960px; to max-width: 100%; so any other pixel dimension you want.
You will also need to make this change is the minified style too, which is style.min.css
This is extremely helpful and very interesting. I needed to make this particular theme wider for one page in particular that I wanted to use some images side-by-side on. But I'm reconsidering switching other pages widths around now. I guess its something I'll also just need to keep testing down the road.Nat, feel free to disregard this, but I just thought I'd mention it on the off chance you or anyone else fall in to the same situation I did awhile back.
As far as page width for the content area, in many cases there is such a thing as too wide. I remember at one point, with some other themes on a few of my sites, getting fed up with an excessively narrow content area, so with a bit of CSS I moved to much more of a full screen or at least 75-90% width content body (sidebar and all, if there was one). Seemed better, but something kept nagging me in the back of my mind, telling me something still wasn't quite right. A bunch of other marketing, content and site dev efforts later, after a couple months, it took me awhile to realize my decline in user engagement metrics (these were heavily text content-focused sites) was due to the excessively wide content area. Seems crazy, something so simple, but the little things can often make a HUGE difference.
There's actually a TON of science and R&D behind this, for decades if not a century or more, and likely much of it coming from the print media world as well. It;s actually an incredibly interesting subject, IMO, and one most people don't even bother to study. Here's a few examples to get those mental gears turning (for anyone that finds it useful):
Environmental Vision: Interactions of the Eye, Vision, and the Environment
http://socialtriggers.com/perfect-content-width/
http://baymard.com/blog/line-length-readability
In terms of the width, one of the major issues in too wide of a content area is user difficulty in scanning from line to line. We've all seen it before. You get to the end of the line, move to the "next", only to realize you just started re-reading the same line. Definitely something to be said for "all things in moderation" here, depending of course on the application. Obviously this may not apply to certain cases, such as a much more photographic intensive site, gallery pages, etc.
The thing I found more effective, at least in my case, was simply changing up other variables, getting more creative with typography (text color, font weight, formatting, etc.), and/or modifying element spacing and sidebar elements to be less overpowering against the main content area.
Quick question, does this theme need to be updated?