Unfortunately we cannot control Twitter’s responsiveness. If the service goes down, which occasionally happens, your tweets will not load.
The subheading is actually our latest Tweet. It can be created by enabling the “Show Twitter Headline” option in the Appearance panel. Adding a static subheading requires custom HTML.
Font sizes are controlled via CSS, and are explicitly set in em values for numerous selectors. To perform a re-sizing across all elements, use the body selector and set a value via Custom CSS. For example, the following snippet will reduce font size across all elements by 5%:
body {font-size:.95em;}
If you’d like to tweak individual elements, you’ll need to use a more specific selector.
The custom CSS window should be empty, unless you’ve added your own CSS styles. The CSS for the theme is contained in an external file, which is occasionally updated to accommodate fixes and improvements. The current version of the CSS file is 1.3.
This can be achieved using custom CSS. The header, sidebars, and post are contained within a “.wrap” selector. Setting a background color property on that selector via custom CSS will fill those sections. For example, if you’d like to have a white background, use:
.wrap {background:#fff;}
If you’d like to adjust the left, middle and right columns individually, you may use the “#sidebar”, “#primary” and “#secondary” selectors respectively.
How do you go about setting up the right selectors?
A step by step description of how to set it up would be much appreciated..
Cheers!
This demo page uses two TypeKit fonts, FF Meta Serif Web Pro for “body” and “p” selectors, and FF Meta Condensed Web Pro for “h1”, “h2”, and “h3” selectors. You’ll need to explicitly set these selectors in the TypeKit Editor to override the Tumblr Appearance options.
If you’re looking to do more detailed customizations, we suggest using a CSS inspector (such as Firebug on Firefox) to determine the appropriate selectors you’d like to target.
An API key is not provided by default with your Twitter account. This is an advanced feature and requires registering your blog as an “App” with Twitter. For more information regarding Twitter’s API, please visit their developer site.
Yes, using custom CSS. The theme uses id’s to dynamically adjust the width of each column, depending on page type. The left, center, and right columns are labeled with the following id’s respectively: #sidebar, #primary, and #secondary. Here is the CSS that controls column width:
#sidebar { width: 200px; }
#primary { width:669px; border-left: 1px solid; }
#index #primary { width: 438px; border-right: 1px solid; }
#permalink #primary { width: 538px; border-right: 1px solid; }
#secondary { width: 0; display:none }
#index #secondary { width: 230px; display:block; }
#permalink #secondary { width: 130px; display:block; }
This gives three possible layouts: All three columns (e.g. home page or tag index); all three columns, but with a wider center column and narrower right column (e.g. permalink pages or ask page); two columns, left and center only (e.g. pages).
Column widths may be adjusted by tweaking the styles via custom CSS, however please note that the theme uses fixed sizes for photo, photoset, and video posts to correspond with the default column widths. Adjusting those requires tweaking the appropriate theme tags.
As for font sizes, custom CSS can again be used to adjust the default settings. Each column may be individually targeted using the #sidebar, #primary, and #secondary selectors, as well as individual elements using more specific selectors.
