garry-chahal
Forum Replies Created
-
I can develop your WordPress website and blog according to your needs. My email is [email moderated] your can reply me on it to start work.
Forum: Installing WordPress
In reply to: uninstallYou can delete the blog folder from your installation if your wordpress is installed like: https://www.yoursite.com/blog
It will eliminate each and everything about your blog(or wordpress installed) then you can start from scratch.Forum: Themes and Templates
In reply to: Themes messed upSimply download that theme(from some source like wordpress themes) and upload it to wordpress/wp-content/themes/ folder of your installation and overwrite the old one.
Forum: Themes and Templates
In reply to: How to edit themes?Open the style.css, index.php, header.php, sidebar.php, footer.php and modify them according to your needs. You can find them under wordpress/wp-content/themes/ on your installation
Forum: Themes and Templates
In reply to: Themes not showing upDid you unzipped the folders containing themes before uploading!!
Forum: Themes and Templates
In reply to: wp_list_pages css helpCreate your navigation menu with ul or li tags, as we cant create a menu using span tag because WordPress generates the navigation menu dynamically from the database on the fly.
Forum: Themes and Templates
In reply to: Uploading new themesSimpley download some themes and upload them to the wordpress\wp-content\themes\ folder of your installation and they will be available to you in your admin panel for use. In your admin panel you can try them before actually installing them by jut clicking on any one.
Forum: Themes and Templates
In reply to: “Comment text is extremely tiny.”The font size property in style.css controls all the font sizes, find the font size entry corresponding to comment in style.css and change it(i.e. give some big size).
Forum: Themes and Templates
In reply to: moving sidebarsFor the left sidebar use the property float:right and keep the hierarchy as given below in your index.php:
header.php
sidebar.php
sidebarleft.php
place the content code(i.e. code which gets the posts)
footer.phpForum: Themes and Templates
In reply to: Changing Theme Graphics/Headers?You can easily change your header image on your theme by going to the Admin panel->appearance->custom image header.
You can also change the look and feel of your blog or website by changing the theme it uses.Forum: Themes and Templates
In reply to: custom header image not showing up“The cookie problem”
This problem harass new programmers very much. What going up is your browser is receiving the old picture from the cookies saved by browser against that page in past. So remove all cookies from your browser and your new image will show up after refreshing the page or next reload.Forum: Themes and Templates
In reply to: How do I fix My header?Use any button or image to link back to your main page by giving it the URL of your main page.
You can also do it by static link method by giving “href= yoursitename/blog”Forum: Themes and Templates
In reply to: Change the width of Depo Skinny themeSimply do it by changing property “width” in appropriate ID (which is controlling the width of your whole PAGE) of your style.css
Forum: Themes and Templates
In reply to: Need help uploading themeYou need to upload the whole folder to desired directory at your web server after unzipping it.
Forum: Themes and Templates
In reply to: Need to have only specific categories show up in links widgetExclude the desired categories with:
<ul> <?php wp_list_categories('orderby=name&show_count=1&exclude=10'); ?> </ul>
You can write some PHP code to hide the desired categories with upper code when some condition comes true.