gidd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to change the transparent content background to white?To make the background of your content white, you can add this line to your style.css:
#content{ background-color: #FFF; }
The blog title is wrong. You can check for this at the Reading section under Setting inside WP-Admin. You might pick the wrong post page for the blog.
Forum: Themes and Templates
In reply to: Good Minimal theme, won't display bog postsFor the menu, can’t you just delete what you have added and make it the same as the way it was before?
In WordPress, there is a menu link under Appearance where you can control the menu. However, because you bought a premium theme, there might be a separate menu system built into the theme options.
For the blog page, you should check if it has a page name blog and check if that page uses template from your theme.
These kind of problems might need to have access to the hosting to see what is going on. Hope this can help you in some ways.
Forum: Themes and Templates
In reply to: [Twenty Twelve] How do I widen the search form?Hi, I think I have something useful for you.
To change the twentytwelve header from your child theme,
you need to copy the header.php from parent theme and put it into child theme directory.Then, you can edit the header.php in your child theme directory. After this, you need to write stylesheet in style.css in your child theme directory to make it wider and taller as you need.
Your stylesheet should override the parent stylesheet. You can do so by adding “body” before the css selector.
Forum: Themes and Templates
In reply to: Centering Headers – SmartBiz TemplateHi Weesey1,
Do you have any link to the demo site? or a screenshot of your website?
It is better to answer if you post the link here.Forum: Themes and Templates
In reply to: Oxygen theme getting front page backNice to hear this. If you need more support, you can ask me for more help through my blog.
Forum: Themes and Templates
In reply to: How to add something after the post?You should use add_filter instead of add_action.
Here is an example: http://www.wprecipes.com/wordpress-tip-insert-custom-content-after-each-postForum: Themes and Templates
In reply to: Images on CategoriesYou can modify category.php. If it not available, modify archive.php. Then above the loop code, you need to check the category ID and show the image link. If you don’t check, every category will have the same image.
The way you link image above is not right. Try to use get_template_directory_uri() or get_stylesheet_directory_uri().
Forum: Themes and Templates
In reply to: [Pinboard] Show post-thumbnails on the single pageTo use post thumbnail, you need to enable it first if your theme doesn’t do it for you. Once it is enabled, you see a feature image link on the right side when you insert/edit a post.
To show the post thumbnail, you featured image must be set. After that, you can modify your single.php to show the post thumbnail by using the function: the_post_thumbnail. Here is the link for detail about it: http://codex.wordpress.org/Post_Thumbnails.
To modify a stylesheet from your child theme, you can modfiy style.css inside your child theme folder. When you write the stylesheet, you can start by adding “body” before the selector or you can force it by using “!important”.
Maybe you can activate the parent theme and see if it works properly.
If it works, there is something wrong with your child theme.Most of the time, it is a JavaScript problem, I used to face it for one of my client projects. It is caused by JavaScript not working properly or conflicts.
Forum: Themes and Templates
In reply to: [F2] Menu customization in F2 2.0To make change to the menu, you can login to your WordPress Admin and find the menu link under Appearance. Once you locate it, you can add custom links, pages & categories to the menu.
Forum: Themes and Templates
In reply to: page template show postsTo do show posts from a specific category, you need to modify your while loop and WordPress has WP_Query to help you do like that.
Here is the link: http://codex.wordpress.org/Class_Reference/WP_Query
Forum: Themes and Templates
In reply to: Oxygen theme getting front page backYou should be more specific about how you delete that front page.
If you delete the file, you need to re-upload the template files.WordPress Admin has an option to set the front page for your website in the reading section. You will need to create a page and make it as the front page.
You can also check your theme documentation on how to install that front page if available.
Forum: Themes and Templates
In reply to: How was this simple site built?All components like search widget, social media, video embed, subscribe via email, archive etc are available for free. You can find plugins to help you do that.
However, the look and feel is very unique. You need to have knowledge in creating your own template. If not, you can find a graphic designer and a developer to help you along the way.