CMSHelpLive
Forum Replies Created
-
Forum: Installing WordPress
In reply to: How to Change Sidebar Background ColorAdd one more closing curly braces(}) above .col dim3 {background-color:#000000;}.
Because at this moment the background style for sidebar is working only for the 480px width mobile.
The short code used by the theme to fetch site url is not working. Like:
url([site_url_secure]/wp-content/uploads/2014/09/AETS_home.jpg)
Her [site_url_secure] is not working. Or if you are able to make changes then change [site_url_secure] to <?php echo bloginfo(‘url’); ?>Otherwise you have to contact to the theme vender support to solve this issue.
Forum: Everything else WordPress
In reply to: My client wants the comments on her blog emailed to her1. In your dashboard go to Setting->General->Email Address.
2. Add client email address here.Done, now she will receive email for everything.
Forum: Everything else WordPress
In reply to: uploaded file exceeds the upload_max_filesize directiveAfter updating the php.ini file, server must be restarted again. Then only you will be able to upload file.
Forum: Fixing WordPress
In reply to: Trouble removing padding above image sliderTo remove the padding above the slider just add the following code in your custom css file:
.content{
padding-top:0px;
}Forum: Themes and Templates
In reply to: Slider ProblemLook for slider code in your header.php file of the theme and put it with in if(is_page(‘home’)) condition.
Forum: Installing WordPress
In reply to: What do you do after you download a theme?1. Open your WordPress site dashboard.
2. Go to Appearance->Themes->Add New
3. Click on upload
4. Select one of the theme you want to upload on your WordPress Site.
Done!Forum: Installing WordPress
In reply to: What happen after DB upgradation?Database tables created by you won’t be affected due to upgrading. Upgrading of WP doesn’t have anything to do with database tables.
Forum: Installing WordPress
In reply to: How to Change Sidebar Background ColorYou don’t need to find this code. Just add it at the end the theme’s stylesheet.
Forum: Installing WordPress
In reply to: I need to upgrade my wordpress to latset versionData can be lost in case if changes are made in the core files. So, it is advised to better take a backup of website before upgrading.
Forum: Everything else WordPress
In reply to: What is this type of sidebar/widget called?Here, have a look on this. It is something similar to which you are looking for. Its done with the help of javascript:
Forum: Fixing WordPress
In reply to: How do I change Twitter link on front page?Please post your site URL so that we can find out in which file you should look for your social media links.
Forum: Fixing WordPress
In reply to: Unable to change fonts using google fontsHello Daisy,
You don’t need to download the Google font. Just embed the Google font path in your stylesheet or header file. Here’s how you can embed the font path:
1. In header file within <head> & </head> tags, add this:
<link href=’http://fonts.googleapis.com/css?family=Roboto’ rel=’stylesheet’ type=’text/css’>
2. In stylesheet, add this:
@import url(http://fonts.googleapis.com/css?family=Roboto);
You can find the embed code for a particular font at Google Fonts here: https://www.google.com/fonts
Forum: Fixing WordPress
In reply to: Navigation Menu doesn't point to other pagesI have checked your site. Menus seems fine to me. Have you solved this issue?
Forum: Fixing WordPress
In reply to: CSS and Images not working after migrationCan you please post the link of your site so that we can help you?