CMSHelpLive
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: padding for columnsRight now column width is 16.66667%, increase it to 49.66% if your theme provide option for that or add the following code in stylesheet:
#mega-menu-wrap-secondary-177 #mega-menu-secondary-177 > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1{ width:49.66667%!important; }
Forum: Fixing WordPress
In reply to: CSS positioningadd the following code in your stylesheet:
.header_icons a img{ float:right!important; }
Forum: Fixing WordPress
In reply to: Sidebar on Single.php<?php get_sidebar(); ?>
add this line before calling get_footer function in single.php file. And relatively reduce the area for content part so that there will be space for sidebar.
Forum: Fixing WordPress
In reply to: Reduce space between two sidebar widgetsIf you post the url of your site, then we can help you.
Forum: Fixing WordPress
In reply to: Double ImagesHere first image is one which you are setting as the featured image and the second is what you are adding in the post. If you want only one image, either set it as featured image or add it directly into the post.
Forum: Fixing WordPress
In reply to: White line around logoPlease post your website link so that we can help you out?
Forum: Installing WordPress
In reply to: Preparing InstallationYes you can start with any fictive domain. Later when you will be ready with the WordPress content, you can move it to your website domain.
You may use the steps given in the below link to set up your WordPress:
Forum: Installing WordPress
In reply to: ReinstallationFirst take the backup of file and database. You can use the BackUpWordpress plugin to take the backup of website:
https://www.ads-software.com/plugins/backupwordpress/
Then you can follow the below steps to reinstall the website:
1. Unzip the backup folder- it contains php files and sql file. Rename it to your site name.
2. Move it on server via ftp or cpanel
3. Create a database on server using phpmyadmin
4 Import the sql file from the unzip folder. After this, look for the wp_options table in database. Change the “site url” and “home url” of the site.
5. On ftp, look for the “wp-config.php” file in root folder. Change the information required to connect to the database such as host name, database name and password.Forum: Fixing WordPress
In reply to: want to show Background DIV only show on Home PageAdd this code where you want to show the slider:
<?php if(is_front_page() or is_page(‘home-page-title’)) { ?>
<div class=”slider-div”>
Add slider code here
</div>
<>php } ?>Forum: Themes and Templates
In reply to: Reduce White Space at top of pagePut the below code in style.css file:
#header .container{
display:none!important;
}Hope that works!
Forum: Themes and Templates
In reply to: [Vantage] home with only sliderPut the below code in stylesheet:
.page-id-17 .#main{
display:none!important;
}Hope it will reduce the whitespace.
If there is a backup of the files and database, then its possible to have WordPress site back. It only need to be reconfigured again. Otherwise it need to be configured from the scratch.
Following steps can be followed to restore the site from backup:1. Using ftp or cpanel upload the files on the server.
2. Create a database on server, using phpmyadmin.
3. Import the database backup of your site in new created database.
4. Look for the “wp_options” table.
5. Change the site_url and home url of the site.Please go through this url for information regarding home url and site url
https://codex.www.ads-software.com/Changing_The_Site_URLForum: Installing WordPress
In reply to: Reinstalling with old databaseAfter reinstalling the database, have you changed the site url and home url in the wp_options table?
Also, in wp-config.php file, update the database information, like host name, database name and password.Forum: Themes and Templates
In reply to: [Travelify] Why appears capital letters on the submenu?Add this code in you style.css file
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
#main-nav ul li ul li a { text-transform:capitalize; }
Forum: Themes and Templates
In reply to: [Travelify] Remove top navigation completelyAdd this code in your stylesheet
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
.copyright{ display:none; }