CMSHelpLive
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Minamaze] move sidebar up on FrontpageCan you post the url of your site so that we can help you out?
Forum: Fixing WordPress
In reply to: how to find unused PHP and theme filesIn dashboard go to Appearance->Themes. Here you will get all the themes available for your site.
Active theme will have customize button on it and rest of them will have the Active button (to activate them).
If you want to delete non-used themes, you can delete theme by using ftp or cpanel:
1. You will need to browse to public_html->your-wordpress site folder ->wp_content->themes
2. Delete all the themes having Activate button on them.
Display posts shortcode plugin can help you to display number of recent post of a specific category with a shortcode. You may use it on home page:
Forum: Fixing WordPress
In reply to: How to Migrate with WordPress?Migration with the automated plugins can only achieve limited results. The ‘right’ way really depends on your migration goals:
1. Do you want to retain the look and feel of the existing site?
2. How about preserving the SEO assets – do you want to transfer existing SEO work to the new WordPress site?
3. How about transfer of complete functionality.If you need above three, developer intervention will be required.
Forum: Fixing WordPress
In reply to: Thumbnail image sizesIn dashboard go to setting -> media. Here you can see 3 different sizes.
Forum: Installing WordPress
In reply to: How to migrate joomla site to wordpressThis plugin can help you in migration:
Forum: Fixing WordPress
In reply to: Link to another pageAll the pages in WordPress have permalinks. In page editor you can see the permalink of corresponding page under the title. Copy that permalink and use in href of anchor tag.
Forum: Themes and Templates
In reply to: How to make drop down menu and buttons stylish.1. for delay in link hover you can use transition property of css. for example:
transition: color 0.3s linear, background-color 0.3s linear;
-webkit-transition: color 0.3s linear, background-color 0.3s linear;
-moz-transition: color 0.3s linear, background-color 0.3s linear;
-o-transition: color 0.3s linear, background-color 0.3s linear;these are transition example for 4 different browsers.
2. for dropdown menu:
.desktop ul.art-hmenu>li>ul{
margin-top:0px;
}
ul.art-hmenu ul li:hover{
background-color:give desired color code here;
padding-left:10px;
}3. i guess your search box is already in the right of menus.
4. i couldn’t find any read more button on your site.
Forum: Everything else WordPress
In reply to: Recent news slidermay be you will find Jquery news ticker plugin useful:
http://www.gopiplus.com/work/2013/10/03/jquery-news-ticker-wordpress-plugin/#.VAm1CMWSyWw
Forum: Fixing WordPress
In reply to: Reduce space between two sidebar widgetsI checked your site. CSS is not picking your code because you are using a white space between “0” and “px”. Put it together like
padding-bottom:0px;
then, it will work fine.
Forum: Installing WordPress
In reply to: how remove footer text on wordpress?It will be helpful if you can let me know which theme you are using. With the given information, there can be two resolutions possible:
1. Goto Appearance->widgets, check footer widget.
2. In theme folder, check footer.php file.
Forum: Hacks
In reply to: Can't get into backend because of new pluginIf you have ftp or cpanel credentials, then using these plugin can be manually deleted:
1. Login using ftp or cpanel
2. Goto to wp-content -> plugin
3. Look for the plugin folder which is causing this problem
4. Delete it
Done.
Forum: Themes and Templates
In reply to: [Travelify] Social links placement in header..add this in your stylesheet to get them at the same level of header image:
.hgroup-right{
margin-top:47px;
}Forum: Fixing WordPress
In reply to: How to remove big space at the bottom of site?In custom.css file in line no 25 top is set to -22. Reduce it to -15 or something to make it more narrow.
Or in your theme stylesheet, usually that is style.css add the following code:
#footer{
top:-15px!important;
}Forum: Fixing WordPress
In reply to: Centering an imageadd the below code in stylesheet to reduce the size of buy now button:
.post-12703 input{
width:30%!important;
}