CMSHelpLive
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change image to bigger size but it does not reflectsYou can locate your theme’s stylesheet in the following path:
wp-content->themes->qmedical->style.cssLook for the line number 173 and change the width to 550px.
Forum: Fixing WordPress
In reply to: Change image to bigger size but it does not reflectsYou are getting the smaller size of logo in second example because the logo <div> has the fixed width of 121px; So the logo image cannot go beyond this.
In your stylesheet at line number 173 change logo width to 550px;.logo{
width:550px;
}Forum: Fixing WordPress
In reply to: I cannot access my site after upgradingSuch kind of problem occurs due to the incompatibility of plugins with WordPress 4.0.
Try uninstalling each plugin one by one by renaming them or moving them to any other folder. You can locate plugins into wp-content->pluginsForum: Everything else WordPress
In reply to: Logo Image looks distortedDo you want the logo image dimension as of original size??
You can changes the CSS for logo at line number 173 in style.css :
.logo {
position: absolute;
top: 30px;
width: 290px;
}Forum: Fixing WordPress
In reply to: Migrating from live server to local host and back to live serverYou don’t need to move the live site on the local server.
1. Using ftp on your local machine or using cpanel you can download the particular WordPress file from live server. After making changes in it you can upload it back to live server.
2. If you want to make changes in the dashboard, then you can login into dashboard using wp-admin. For example:
http://www.mysite.com/wp-admin
It is advised to take backup of your site, before making changes in any file.
Forum: Fixing WordPress
In reply to: Post width into sidebarInstall bluefish or dreamweaver editor. Open your stylesheet file with bluefish Dreamweaver. They will tell you the line number.
Forum: Themes and Templates
In reply to: Virtue: Hide site title only at page "home"1. Locate your theme’s stylesheet in wp-content->Themes->”your theme name”->style.css.
2. Add the following code in your stylesheet file:
.home .page-header{
display:none;
}Now, you can give title to your home page. It will not show on home page. Also, you will get ride of these two lines.
Forum: Themes and Templates
In reply to: Slider Problem1. Install and Activate “Widget Logic” plugin.
https://wordpress.org/plugins/widget-logic/
2. After this you will see the “widget logic” field in widget. Add the following code in tht field:
is_page('home')Forum: Installing WordPress
In reply to: .org or .comCan you please post the URL of your site??
Forum: Themes and Templates
In reply to: Slider ProblemDo you have any idea where you have added the code or shortcode for slider? Or can you share the header.php file code here?
Forum: Themes and Templates
In reply to: Virtue: Hide site title only at page "home"Have you already done this?? because i cant see any Home beneath slider.
Forum: Themes and Templates
In reply to: cant find my wp-content in the remote site in filezilaYou will find the “wp-content” inside the “public-html” if your site is in root. Otherwise you can find it inside subfolder in “public-html” folder.
Forum: Fixing WordPress
In reply to: Edit default wordpress widgetsYou can use any plugin to do this. Like display post shortcode plugin and add its shortcode into text widget.
https://wordpress.org/plugins/display-posts-shortcode/
If you want to edit the default recent post widget. Then Here is the path for widget file: wp-includes/default-widgets.php
Forum: Themes and Templates
In reply to: Virtue: Hide site title only at page "home"Which title are you talking about? Site title or page title?
Forum: Themes and Templates
In reply to: [Twenty Twelve] how to just display title in homepageDo you mean that you don’t want description below title? If yes then follow below steps:
1. In your dashboard, go to setting->General.
2. Look for tagline field and make it clear.Done.