nsathees
Forum Replies Created
-
Forum: Installing WordPress
In reply to: missing 'install.php' script file in WordPress folderyou don’t need to point to the install file. Just point the browser to the sub directory you created.
eg: http://domainname.com/sub-dir/
if the WordPress not installed it will start the install.
Remember you have to configure the wp-config.php file
There is a sample file called wp-configsample.php use it as base and save it as wp-config.php
Forum: Installing WordPress
In reply to: Struggling to get WordPress up and running with my 1and1 accountHey Dominic Ryan,
Make sure that the domain is not parked and point the name server to your web server.Forum: Installing WordPress
In reply to: What is error 505 in setting up a config file?http Error code 505 stands for: HTTP Version Not Supported
Check your wp-config.php file.
Forum: Themes and Templates
In reply to: splash pagewp_query will do that. But if you want to list all at once, check for a sitemap page code!
Forum: Themes and Templates
In reply to: Change of TemplateWhat do you mean? Sidebar looks OK
Forum: Fixing WordPress
In reply to: Import data from excel file to a custom post typeBut the CSV Importer do not import All in One SEO data! xl2wp does import them too and it is difficult to manage the escape for , within the CSV file.
I think these people has dropped developing it. I am going to write a new plugin expect it to be released within weeks.
If those guys come back and fix it, let me know!
Forum: Fixing WordPress
In reply to: Where is the sticky post feature?check it in the post itself. Else you will find it under quick edit!
Forum: Fixing WordPress
In reply to: Help! Issue with PagesAdd the following line to your style.css file
you will find the following code in line 41
.container-inner {
margin: 0 auto;
padding: 1.75em 20px 1em;
width: 950px;
}Add overflow: hidden; to that so it will loook like this after wards
.container-inner {
margin: 0 auto;
padding: 1.75em 20px 1em;
width: 950px;
overflow: hidden;
}that will solve your problem!
hover thing is done within CSS
a link to your site could have helped me to help you.
Forum: Themes and Templates
In reply to: whole category as search resultForum: Themes and Templates
In reply to: (urgent) Adding XHTML/CSS Theme to WordPress1)you side bar code do NOT have any template tags.
2) you have hard coded the menu. if that should work then you have to have the pages or post with that name and set the permalink option accordingly with in the settings at the admin back end.do you have a link to the site?
Forum: Themes and Templates
In reply to: Minimalist theme sidbar problemif you mean that you only want the pages listed and nothing else, you got to edit the sidebar.php file
yes that is possible
Forum: Themes and Templates
In reply to: Notes Core theme – want to stack social buttonsThe classes are named as follows in your blog.
FBConnectButton_Text
retweethope it helps.