CMSHelpLive
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] [Theme: Customizr] Remove, Hide or Style Blog TitleI tried removing it using the code: .page-id-28 .breadcrumbs, {display: none;} but this has no effect.Use !important with display property. like:
.page-id-28 .breadcrumbs, {display: none!important;}
When I use Firebug Inspect Element it tells me that the news heading is <h1 class="entry-title format-icon tc-hide-icon">News</h1> but I'm not sure what to do with that information..entry-title{
margin-bottom:30px; // to give space between Page title and post title
color:give your desired color here; // to change the color of the title
}Forum: Themes and Templates
In reply to: [Fluxipress] Change text colorCan you please post the link of your website so that we can help you out.
Forum: Fixing WordPress
In reply to: Main Side Bar WidgetsTo increase the sidebar width, you can add th following code in stylesheet file:
.col-300 {
width: 31.914893617021%;
}increase the as much width as you want, but respectively you have to decrease the width of content area or vice-versa.
2. To center the sidebar, add the following code in stylesheet:
.widget-wrapper{ text-align:center; }3. To make the calender in center, add the following code in stylesheet:
#calendar_1{ margin:0 auto; }4. If you want to change the font type and size, apply that font on that particular class or id whose font type you want to change.
Forum: Fixing WordPress
In reply to: Lines Through Contact & About PageHere each class has comma (,) in between that means that this background property will apply wherever you have used any of these classes.
.site-main > .hentry means that hentry class is the child class of .site-main class.
!important is used to forcefully apply this background property.
Forum: Themes and Templates
In reply to: Widen the left sidebarSorry for late reply.In your css file look for th following code:
body { background: #FFF url(images/body-bg.png) center top repeat-y; }Here you have used the body-bg.png image. This image have only this width which is currently showing on the site. Increase its width 🙂
Forum: Everything else WordPress
In reply to: If I migrate from Blogger, do I lose my facebook comments?Yes, you will see the old facebook comments that you have now on your blogger blog, as the comments are saved in facebook not in your blogger blog.
Forum: Themes and Templates
In reply to: [Twenty Twelve] How do I add an image?Create an child theme of the twenty twelve theme, upload an logo image or header image and use float property of css to make it to the right side.
Forum: Themes and Templates
In reply to: Widen the left sidebarTo increase the width of sidebar, add the following code in custom stylesheet:
#sidebar-left{ width:250px; } #first.widget-area{ width:220px; }If you want to increase the gap between sidebar and content area, then add the following code in css file:
body #primary{ margin-left:190px; }In wp_options table in Database have you changed the home and siteurl?
Because changing the name of database is not a problem as long as you update the database name in the wp-config.php file.
Forum: Fixing WordPress
In reply to: Lines Through Contact & About PageAdd the following code in the stylesheet file of you theme(at the end):
.author-info, .site-main > .hentry, .search .wpc2-post, .blog .hentry, .archive .hentry{ background-image:none!important; }Let us know if you still get this problem 🙂
Forum: Fixing WordPress
In reply to: How can I change the background color?Can you please post link of your website so that we can help you.
Forum: Fixing WordPress
In reply to: I can not login into my websiteInstead of using http://www.smeinfo.com.ng/wp-login, try http://www.smeinfo.com.ng/wp-login.php or http://www.smeinfo.com.ng/wp-admin
Let us know if you still get this problem.Forum: Fixing WordPress
In reply to: Can I have one theme active while customizing another theme?Yes you have to do that.
Forum: Fixing WordPress
In reply to: background color changeAdd the following code in theme’s style.min.css file. You can locate it in the path wp-content->Themes->stargazer->style.min.css
.custom-background #container>.wrap{ background: #E8E8E8; }Forum: Fixing WordPress
In reply to: Menu line is duplicatedCan you please post the link of your website?