CMSHelpLive
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: how can i add a theme to free wp?Just select the theme from WordPress official site: https://wordpress.org/themes/
and download it. Goto your Dashboard->Appearance->Themes. Then click on Add New and upload the selected theme’s zip folder.
Forum: Installing WordPress
In reply to: Facebook blog title movecan you post the link of your site?? And are you using any plugin for facebook blog title?
Forum: Themes and Templates
In reply to: Widen the left sidebarGreat!! Congratulations 🙂
Forum: Fixing WordPress
In reply to: Main Side Bar WidgetsI checked it. Your css for widget-title is applied on that class. But th problem is title is under <h3> tag. So the correct should be:
.widget-title h3{ font-size:8px; }Note: Don’t use dot(.) with h3 like widget-title because h3 is an HTML tag.
For thermometer image:#text-2 .textwidget img{ margin:0 auto; }Forum: Fixing WordPress
In reply to: Main Side Bar WidgetsHey, sorry about that i misunderstood your question.
1. You can go to this path only when you have cpanel or ftp credentials.
2. If you don’t have these credentials then, in your Dashboard go to appearance->Theme Options.Here you will see many tabs like: Theme Eleements, Logo Uplaod. You can find here the CSS styles tab also. Click on that and you can add your stylesheet here.
Forum: Fixing WordPress
In reply to: how to remove space between logo image and top menuLook for stylesheet in the path wp-content->Themes->mystile->Style.css, in line number 583 you will find the following code:
#header { padding: 3.618em 0 0 0 !important; margin-bottom: 0 !important; border-bottom: 4px double #e8e4e3; clear: both; position: relative; }Change it to the following:
#header { padding: 0px !important; margin-bottom: 0 !important; border-bottom: 4px double #e8e4e3; clear: both; position: relative; }Forum: Fixing WordPress
In reply to: Even spacing on pagesCan you share your site’s link so that we can see what exactly causing this problem.
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] News not showing on PageTheme which i am using is paid. Where can i send you the index.php file or dashboard details? Can you provide me the link?
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] News not showing on PageAny suggestion what should i do now?
Forum: Fixing WordPress
In reply to: Main Side Bar WidgetsThere is not separate stylesheet for sidebar. There is only one stylesheet which is in the path:
wp-content->Themes->responsive->core->css->style.css
Just add the code given below at the rnd of style.css file:.widget-wrapper{ text-align:center; } #calendar_1{ margin:0 auto; }Forum: Installing WordPress
In reply to: Migrating from Nucleus CMS to WordPressI found 1 plugin for you that can help you in migration:
http://sourceforge.net/projects/nuc2wp/
Read this also:
http://www.dreamincode.net/forums/topic/299328-nucleus-to-wordpress-content-transfer/
Forum: Fixing WordPress
In reply to: Main Side Bar Widgets1. You can find stylesheet file in your theme directory in the path: wp-content->Themes->responsive->core->css
2. If you want to change the title of sidebar, then use firebug to check that which class or id is used. Like if you want to change the title, class used for sidebar widget title is widget-title. Then the css code will be:
.widget-title{
font-size:14px;
}3. Can you please elaborate what exactly you want to ask. Sorry i couldn’t get it.
Forum: Themes and Templates
In reply to: [Customizr] [Theme: Customizr] Remove, Hide or Style Blog TitleThis breadcrumbs code is for blog page that is your NEWS page at the moment.
If it can be removed with the 2nd one, then no need to edit your stylesheet. You can go with it.
!important is used to forcefully apply the css property. If it works fine without !important. Then no need to use it.Forum: Themes and Templates
In reply to: [Customizr] [Theme: Customizr] Remove, Hide or Style Blog TitleNo, comma doesn’t suppose to be there, i am sorry for that.
Try with the following code, i hope it will work:).blog .breadcrumbs { display: none!important; }Forum: Themes and Templates
In reply to: [Fluxipress] Change text colorTo change the color of the post title, add the following code in the custom syylesheet:
#post h1{ color:#give your desired color code here; }To change the color of post content, add the following code in the custom stylesheet:
.post-content{ color:#give your desired color code here; }