CMSHelpLive
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] Separate widgets in siderbar with style linesHi,
Yes ,you can add lines to seperate widgets.
Use <hr> tag for inserting lines.
Forum: Fixing WordPress
In reply to: Customizing navigation menuHi,
Guess, that might not be best methodology to create the menus.
Instead I will highly recommend to follow these steps:
1- Create some sample pages (for instance- home, About us and Contact).
2- Appearance ->Menus ->Create New Menu ->Save Menu.
3- Now on the left sidebar you will get all the pages you have created. Select the check boxes of those pages which you want to include in your “Menu” and click on “Add to Menu”.
4- You will see all your pages on right hand side under “Menu” structure.
5- Now scroll down your page and perform the last step.
6- Under menu setting, select the check box according to your requirement. And save menu.Forum: Fixing WordPress
In reply to: How to Edit the FooterHi,
When you start working on WordPress, the first step is to install it. After installation you can locate wp-content under htdocs or www -> your WordPress folder
Forum: Fixing WordPress
In reply to: Font TypesHi,
1. You can use Google API google.com/fonts .
2. Open this link, select the font style as per your requirement.
3. Click on quick use -> @import ->copy the code and paste it to your css file and save changes.
4. You will get this kind of code :
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
5. Next step is to open that page where you want to change content .Open div tag and use the font family.NOTE: font family imported should be the same as that which have been added in CSS file.
Eg: <div style=”font-family: Open Sans”>
Forum: Fixing WordPress
In reply to: Windows Document into WordPressHi,
Please follow the instructions
Dashboard ->Add Page ->Add Media ->Upload file ->Select file(select your word document) ->Insert ->Publish that page.
Forum: Fixing WordPress
In reply to: Widget drag and drop not workingHi,
It might be due to some javascript error which is creating loading problem on your widget page.
Try using WordPress plugins which provides you javascript libraries.
I recommend Use Google Library plugin for this.Forum: Installing WordPress
In reply to: Can't login to my siteHi,
Just add <?php ob_start(); ?> on the top of display-text.php page.
Forum: Fixing WordPress
In reply to: Custom front-page and custom blog page and widget logicHi,
is_home()-
This method is used to show the latest 10 posts. This page is the area where all the recent posts resides.is_front_page()-
-Under Settings ->Reading ->Front page Displays ->We can select static page or latest posts. This method shows only the selected elements. For example, it will display posts or static pages based on the selection we made.Forum: Fixing WordPress
In reply to: How to Edit the FooterHI,
If you are not getting footer.php page from Dashboard then you can find this page in –
wp-content -> themes -> your theme folder -> here you will get footer.php file.
Open it and do changes over here.
Forum: Fixing WordPress
In reply to: How Can I Show A Blog Post on Front Page With Full Text?Hi,
You may use Custom Post Limits plugin.
Install it and Activate.
Open Settings ->Set limit 1 if you want to display single post.
Save Changes and check the output.
Forum: Fixing WordPress
In reply to: How to use my php file as a pageHi,
1. Create your php page and save it under wp-content ->themes ->your theme folder.
2. Next step is to make that page a template. For creating a template just add below mentioned code on the top of your php page:
3. <?php
/*
Template Name : Asd
*/
Your code……..
?>
This is the format for creating template. Note that it should be in comments and inside php tags as demonstrated above.
4. Now Open dashboard -> Create new page -> Give title (for instance “Register”).
5. On the right sidebar, below publish button, there is an option for selecting template.
Click on the dropdown and select your template. In this example, the template name is Asd, containing my php code. So select that template, and publish.
5. Now open your localhost and click on “Register” page. Here you will find your php code
Forum: Fixing WordPress
In reply to: child themeHi,
Yes, you can do changes by logging to your server.
Download your css file and then make the required modifications to it.
Upload it back to the server post the changes have been done.
Forum: Installing WordPress
In reply to: Header and LogoHi,
Write this css in your style.css file.Set height and width according to your requirement.
#header {
height:50px;
}
#header #logo{
width:100px!important;
height:100px!important;
margin-top: -30px;
}Forum: Installing WordPress
In reply to: how to create a site map?Hi,
There are so many plugins for creating site map.
Install any plugin.
Activate that plugin.
Visit plugin site to know how to use that plugin.
Eg: You can use sitemap plugin.Forum: Installing WordPress
In reply to: Sample page 'home' when typing in URLHave you written any content on that page? If not , then it might be post content showing on that page. In this case.
1. Create one page and name it Home.
2. Write /Add content in that page.
3. Now from Appearance -> Customize -> Static Front Page ->Select Home page.
4. Save changes.
Try this, if it doesn’t work, please write back.