playing2012
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to Change logo in headerForum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] nav bar fails in IE8You page don’t even list the correct list of current browsers! You have got IE10 as current while in fact it is not!
I am talking about this page: https://toolbox-4-websites.com/browser-updates/current-browsers
When will you be updating it?
Forum: Themes and Templates
In reply to: Header Image Size – TwentyElevenThanks for the replies. I went to the tutorial but it is for the old version. However, it gave me the idea and I inserted this function in my child-theme functions.php and it works:
<?php function add_theme_support($support_type) { $result = 0; return $result; } function apply_filters() { $result = 0; return $result; } // This theme uses Featured Images (also known as post thumbnails) for per-post/per-page Custom Header images add_theme_support('post-thumbnails'); // Add support for custom headers. $custom_header_support = array( 'default-text-color' => '000', 'width' => apply_filters( 'twentyeleven_header_image_width', 1000) , 'height' => apply_filters( 'twentyeleven_header_image_height', 133 ), 'flex-height' => true, 'random-default' => true, 'wp-head-callback' => 'twentyeleven_header_style', 'admin-head-callback' => 'twentyeleven_admin_header_style', 'admin-preview-callback' => 'twentyeleven_admin_header_image', ); echo " <pre>"; print_r($custom_header_support); echo "</pre> "; ?>
Please follow this guide when posting code – I’ve fixed what I can, but the forum may have eaten some of your code.
Forum: Fixing WordPress
In reply to: How do I change the background color of the showcase template?I am also trying to change the background of the content section of a showcase page. However I would like to change it to a picture. Is this possible?
Try this:
#content { background-image:url('your-image.jpg'); background-color: lime; }
Forum: Fixing WordPress
In reply to: How to Change the Text in the Body of Post using Google FontsActually, if you use google fonts then your guests don’t need to have their own fonts because your code will do the trick to download them from Google fonts website. You just need to use the correct code as given by google.
Forum: Fixing WordPress
In reply to: How to Change the Text in the Body of Post using Google Fontsbody { font-family: Arial, Helvetica, sans-serif; }
Forum: Fixing WordPress
In reply to: Remove & Add Margin in Twenty Eleven Postsspan.entry-utility-prep { padding-left: 40px; }
Change 40px to wharever you want ut to be.
Forum: Fixing WordPress
In reply to: Remove & Add Margin in Twenty Eleven PostsOK good for finding this. Mark it resolved so that people don’t waste any more time on it.
Forum: Fixing WordPress
In reply to: v3.3.2 how to change category ID in phpMyAdmin?Don’t touch your DB unless you want to break everything beyond repair!!.
Try this instead:
Dashboard >> Posts >> Categories
Now hove over the category shown on the right side and click on “Edit” or “Quick Edit”. these are only visible when you hover over the category item in question.There is bulk option as well but I believe you don’t want to change lots of them.
Hope this helps.
Forum: Fixing WordPress
In reply to: Remove & Add Margin in Twenty Eleven PostsHow about a URL of your site? Without looking at the code it is impossible to suggest anything meaningful.
Forum: Themes and Templates
In reply to: Center header imageTry this code:
#branding { float: none; width: 35%; margin: 0 auto; text-align: center; }
Good luck.
Forum: Fixing WordPress
In reply to: YooTheme – Bloc EditIt’s a background image at this link:
https://headcasesound.com/wp-content/themes/yoo_bloc_wp/images/variations/stripes/page_bg_img.png
You can edit it in Fireworks, photoshop or some other graphics application packages.
Good luck.
Forum: Themes and Templates
In reply to: Coraline TemplateForum: Fixing WordPress
In reply to: How to remove "Latest Articles" from homepage?Have you tried going to:
Dashboard >> Appaearance >> Widgets
Now on the right hand side you will see an item called: Recent Articles or “Recent Comments”
You need to drag it all the way to the bottom of the screen and drop it in a box where it says Inactive Widgets.
That is all to it as far as I am aware.
Good luck.
Forum: Themes and Templates
In reply to: Why is wp-admin.css all one long line!?I know this is a very old post but to answer your question for other users, you need to de-minify the file using tools like on this link:
https://minify.avivo.si/#results
Step 1: Select CSS from the drop-down list;
Step 2: Select Beautify;
step 3: Paste your code in the white box;
Step 4: Click on GenerateHope this helps.