colorvila
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Images not displaying in downloaded themesYou should have a look at the backend of your WordPress, Most of the themes have a Theme Options to let you config them.
Forum: Fixing WordPress
In reply to: Posts displays in wrong placeAssign the What’s new to a specific category, then any other categories’ posts won’t display in What’s new
Forum: Fixing WordPress
In reply to: 2 independent posts pages – possible?You can use custom post type.
Forum: Fixing WordPress
In reply to: Sidebar code is incorrect?Seen from your site, you should edit your css file.
add this to your style.css:.hentry .entry-content { float:left; width:710px; }
Forum: Fixing WordPress
In reply to: Edit Post or Page – Unable to re-sizeI don’t know exact what the problem is except some more information. If you can give me a admin account let me have a look. Contact me by GTalk: [ redacted ]
Forum: Fixing WordPress
In reply to: How to change the name "Home" in the nav barEdit it in your Appearance -> Menu
Forum: Fixing WordPress
In reply to: where to insert code for functionYou should find your page template first, maybe is ‘page.php’or any others, id depends on your theme.
Then add the code in the main loop.
If you don’t know the php, I think you’d better get someone to help you.If your needs are not very complicated, you can contact me by Gtalk:[ redacted ], I can do it for you when I have time.
Forum: Fixing WordPress
In reply to: Post title to resize automatically..Check the title length, if it’s too long, dynamic add some css rules to reduce the font size by Java scripts.
Forum: Fixing WordPress
In reply to: How do you get a widget to display only certain posts?If you are using a widget plugin, please contact the author. Or you can deep into the widget code yourself, to see if there is any problem.
Don’t be worried, it’s not a difficult work, can contact me by Gtalk: [ email redacted ] , I’ll help modify the code for you.
Forum: Fixing WordPress
In reply to: How to add ads on front page and category?You need to edit your theme to achieve this.
I think the flexible solution is:
1.Add a filter at the front page where you want to show your ADS.
2.Insert any things you want in the filter.(Certainly can be your ADS.)Forum: Fixing WordPress
In reply to: Slideshow Widget that pulls featured image from category?search ‘slideshow’ in the plugins, you’ll find lots of.
Forum: Fixing WordPress
In reply to: Why is my Home page not my Main page?What theme are you using? Give us more information about your site.
Forum: Themes and Templates
In reply to: colorway themeIn general the features content are about your service or products.
Also you can show what you love most and want to share with others.Forum: Themes and Templates
In reply to: Only show Facebook logo on homepageYes, it’s possible.
You should edit your theme files. I think maybe the “header.php” file in your theme.
in homepage:if(is_home()) { // show the image }
in the rest pages:
if(!is_home()) { // show the image }