CMSHelpLive
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Move Category Titles from above Post Title to Bottom of PostI guess you are using 2014 theme of wordpress. According to this, you have to make changes in content.php file.
locate the below code in content.php file :[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
<div class="entry-meta"> <span class="cat-links"><?php echo get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'twentyfourteen' ) ); ?></span> </div>
Place the above code, where you entry-content div is closed.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form File Upload SupportLet, [file* resume-attach limit:2MB filetypes:.pdf|.doc|.dox] this is you file field. Here field name is [resume-attach].
You need to add this name in the attachment field of mail section.Forum: Themes and Templates
In reply to: [Parabola] Parabola CSS filesYou don’t need to locate the above CSS tag to change them. Just put your CSS code at the end of the stylesheet(.css). You can locate the stylesheet under root folder of your theme.
Forum: Themes and Templates
In reply to: [Expound] Need to add content slider on the homepagePut that slider code above <article> tag.
Have you changed the home url and site url in wp_options table in your database?
If not please do change that, it might be cause for it.
Forum: Themes and Templates
In reply to: [Virtue] How to rename the "portfolio" link of portfolio posts1. In your dashboard, goto setting->permalinks. Select the “Post Name” Option and save it.
2. Now open the portfolio page in page editor. Under title of the page, you will see the permalink option. You can edit it from there.
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Remove white padding below menuadd the below code in your stylesheet.
#main .entry-header{
margin-bottom:0px!important;
}Forum: Fixing WordPress
In reply to: How do I fix my website?1. To change the title of your Sample page to Home Page.
In your dashboard go to the “Pages”. It will give you a list of pages. Click on edit the Sample page, you will see here the option to change the title.2. To make the home page as your landing or front page.
In your dashboard
a. goto setting-> Reading.
b. Choose the Static option.
c. Then select Home page as your “Front Page”.Don’t forget to Save Changes.
There might be two reasons for this issue:
1. After uploading database, have you changed the home URL and site URL in wp_options table of your database? If not, try changing them.
2. Due to .htaccess file: In your dashboard, open the Setting->permalinks. Here you will see the setting for permalinks. Choose “default” option and save it. Then again choose it as “Post Name” and save it. With these steps, your .htaccess be configured again.
Forum: Fixing WordPress
In reply to: open links in new tabYou can open the link in new tab by target attribute of anchor tag.
Forum: Themes and Templates
In reply to: [Spun] Reduce Top Margin in HomepageHey walt86, answer to your question is:
Add the below code in your stylesheet:
body > .container{
margin-top:0px!important;
}@yogesh, add the below code in your stylesheet:
body{
margin-top:0px!important;
}this will reduce some space. And please do check your header.php file, there is a
tag used after <body> tag. Delete that also.Forum: Themes and Templates
In reply to: [Make] Image Vertical alignment in slideradd below code in your stylesheet
.builder-banner-slide{
background-position: bottom center!important;
}Forum: Themes and Templates
In reply to: [Innovative] Hw to Remove Some already given phrase??In your dashboard goto Appearance->Theme Option.
Here you will find a tab named as Home Page. You can change this text from here.Forum: Fixing WordPress
In reply to: How to Change Footer background and text ColourIn your style.css file, put this code at the end of the file.
footer{
background-color:C6C6C6!important;
}Forum: Fixing WordPress
In reply to: Error establishing a database connection – can't log on eitherThis error occurs due to wrong information in wp-config.php file. Either your host name and password, or your database access information is incorrect.
You may check wp-config.php file via ftp or cpanel access. This file is located inside the root folder of WordPress.