manavkumar
Forum Replies Created
-
Forum: Installing WordPress
In reply to: how do i upload wordpressplease clear where you want to upload the wordpress means on localhost or your webserver
Forum: Themes and Templates
In reply to: [Twenty Thirteen] background imagejust go to your custom theme folder and open style.css file from wp-content/themes/yourtheme/style.css and in your case that is wp-content/themes/twentythirteen/style.css but the main problem is this if you do some change in style.css file in twentythirteen theme it will be lost when you update the WP so please make a child theme of twentythirteen and do your all the work in it.
1. replace body and site class like
body {
color: #141412;
line-height: 1.5;
margin: 0;
}and
.site {
background-color: #fff;
border-left: 1px solid #f2f2f2;
border-right: 1px solid #f2f2f2;
margin: 0 auto;
max-width: 1600px;
width: 100%;
}with
body {
color: #141412;
line-height: 1.5;
margin: 0;
background: red;
}and
.site {
background-color: #fff;
border-left: 1px solid #f2f2f2;
border-right: 1px solid #f2f2f2;
margin: 0 auto;
max-width: 1600px;
width: 100%;
background: red;
}i have added “background: red;” in both the code and if you want to change the color you can change it with hex code like #c5c5c5 or any other color code available on https://www.w3schools.com/cssref/css_colorsfull.asp. And you can also use image in backgound available on https://www.w3schools.com/css/css_background.asp
Forum: Fixing WordPress
In reply to: Forbidden – You don't have permission to access … on this serveri have navigate your site and everything is working fine even all the image shows properly.
Forum: Fixing WordPress
In reply to: How to align BuddyPress registration fields horizontallyadd this margin: 0 auto; to your login class or id.
Forum: Fixing WordPress
In reply to: Forbidden – You don't have permission to access … on this server@reluma: Remove and upload all images again on your new Linux server for all items if its works then its fine otherwise you have to talk to your Linux hosting provider to change the permission setting on your server.
Forum: Themes and Templates
In reply to: [Twenty Thirteen] background imageyou can do this by 2 ways:
1. edit css file in your custom theme folder
2. add custom function in function.php file in your theme directory.Forum: Fixing WordPress
In reply to: Want to replace text " Comment" to buttonstep 1: create new file called your-script.js in js folder under your custom theme directory and put this code in this file
$(document).ready(function(){
$(“div.btn a”).text(“Reply”);
});step 2: now open function.php file in your custom theme folder and write this code:
function add_my_script() {
wp_enqueue_script( ‘change_anchor_text’, get_template_directory_uri() . ‘/js/your-script.js’);
}add_action( ‘wp_enqueue_scripts’, ‘add_my_script’ );
Forum: Localhost Installs
In reply to: Database problems in moving from localhost to live serverNo there is no changes in WP-3.7 migration process. I think you have exported wrong db structure from your localhost because there are lots of table you have missed in your list (shown above).
here is the basic WordPress db tables list:wp_commentmeta
wp_comments
wp_links
wp_options
wp_postmeta
wp_posts
wp_term_relationships
wp_term_taxonomy
wp_terms
wp_usermeta
wp_usersForum: Fixing WordPress
In reply to: Auto Update Filtersadd_filter is a hook which will register or add custom function to a WordPress site. So you should write this line of code to function.php file into your custom-theme folder.