Andrei Olsen
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pinboard] footer – 3 columns?Appearance -> Widgets and drop 3 widgets into the footer.
Forum: Themes and Templates
In reply to: favicon and Twenty-Twelve doesn't work as documentedBear in mind that it can take 3-5 days for the favicon to start appearing.
Care to elaborate on this?
Forum: Themes and Templates
In reply to: Availability of FontsTwenty Twelve loads CSS with font references from Google Web Fonts. See functions.php line 106 and bellow.
Forum: Themes and Templates
In reply to: [theme: twenty twelve] Cannot capitalize Page namesI see, it’s a child theme. Well, your parent theme’s CSS transforms text to uppercase.
Set
text-transform: none;in your child theme then.Forum: Themes and Templates
In reply to: [theme: twenty twelve] Cannot capitalize Page namesRemove text-transform from CSS and change the page name to aBcdE.
Forum: Themes and Templates
In reply to: [theme: twenty twelve] Cannot capitalize Page namesCapitalized is when the first letter of the word is changed to uppercase, the rest is left as it was. If you type aBc deF, capitalized text will be shown as ABc DeF.
Forum: Themes and Templates
In reply to: [theme: twenty twelve] Cannot capitalize Page namesWell, the site is up and your page names are capitalized.
Forum: Themes and Templates
In reply to: [pandora] changing color of search element on pages and postsYou can add something like this to your style.css
#searchform .button {color: #000000; background-color: #ffffff;} #searchform .button:hover, #searchform .button:focus {color: #000000; background-color: #cccccc;} #s {color: #aaaaaa; background-color: #ffffff;} #s:hover, #s:focus {color: #000000; background-color: #ffffff;}First two will change the button’s styles, last two input field’s styles.
Forum: Themes and Templates
In reply to: [theme: twenty twelve] Cannot capitalize Page namesUnrelated, but you’re missing a few units in
margin: 1 1 1rem 1;You need to specify what 1 is supposed to be (px, em, rem, %, etc.).
Forum: Fixing WordPress
In reply to: Broke something on my pagesThat meta line bellow is only going to be added to HTML if the page is a homepage (see elseif(is_home()) on the line above). So, I don’t think it’s a good idea to just remove the first meta line.
What he could do is replace
<?php if (is_single() || is_page() ) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <meta name="description" content="<?php the_excerpt_rss(); ?>" /> <?php endwhile; endif; elseif(is_home()) : ?> <meta name="description" content="<?php bloginfo('description'); ?>" /> <?php endif; ?>with just
<meta name="description" content="<?php bloginfo('description'); ?>" />Forum: Fixing WordPress
In reply to: Broke something on my pagesYou can change
the_excerpt_rss();tobloginfo('description');until you figure out what’s wrong with it.Forum: Themes and Templates
In reply to: [Esplanade] Undefined indexIt’s due to error reporting being on on your live site and being off on your local install.
See if you have
define('WP_DEBUG', false);in your wp-config.phpAlso, see Configure Error Logging
Forum: Fixing WordPress
In reply to: Broke something on my pagesI bet
the_excerpt_rss();is causing the problem in
<meta name="description" content="<?php the_excerpt_rss(); ?>" />Probably some character in the feed.
Forum: Themes and Templates
In reply to: Deleting code on child themeCopy post.php from parent over to your child theme and delete the part you want.
Forum: Themes and Templates
In reply to: Add different logo in each pageOr you can upload your style.css and header.php to pastebin and give us a link.