pankaj064
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ColorWay] Website not loading correctly on tablet or mobileHi YvonneTaylor
The theme has been updated with an improvement in layout.
Please download latest version of the theme, it may resolve your issue.Forum: Themes and Templates
In reply to: [ColorWay] Adjust padding, borders and space between elements?Hi CVBeagle
To reduce spacing from top of the logo, add the code below to your Custom CSS
Dashboard >> Appearance >> Theme Options >> Styling Option >> Custom CSS
.logo { margin-top: 10px; }
To reduce the space between top menu and slider following code will work for you. Paste it in Custom CSS
.slider-container { margin-top: 5px; margin-bottom: 5px; padding-bottom: 10px; }
Hi Santoshbchaskar
To change the footer color place the following CSS to Custom CSS which can be found in Theme Option
Dashboard >> Appearance >> Theme Options >> Styling Option >> Custom CSS
.footer-container { background: #B19D35; }
To change color of menu following CSS will work.
#menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover, #menu li.current_page_item a, #menu li.sfHover, #menu li.sfHover a { color: #fff; background: #B19D35; } #menu .sf-menu li li a.selected, #menu .sf-menu li li a:hover { color: #FFFFFF; background: #B73AC2; } #menu .sf-menu li li { background-color: #A22083; }
Change the color code of your interest.
Forum: Themes and Templates
In reply to: [ColorWay] Mobile NavigationHi PW EDEN
I have checked your site. Your menu is hiding in the top section.
Paste the following CSS code to your Custom CSS option.
Go to Dashboard >> Appearance >> Theme Options >> Styling Options >> Custom CSS@media only screen and (max-width: 767px) { .mean-container .mean-bar { margin-top: -55px; } }
Forum: Themes and Templates
In reply to: [ColorWay] LogoHi Annthom,
Write this code to your Custom CSS box. The option can be found in:
Dashboard >> Appearance >> Theme Options >> Styling Options >> Custom CSS.logo img { max-width: 100%; height: auto; }
Forum: Plugins
In reply to: [Woopra Analytics Plugin] Woopra plugin stops Lightbox from workingI am having same issue. I think the author doesn’t care about is.
Forum: Themes and Templates
In reply to: [Start Point] Characters in 3-Column Feature areaReason: This problem arises because of stripslashes — Un-quotes a quoted string.
If magic_quotes_sybase is on (it was on by default before PHP 5.4), no backslashes are stripped off but two apostrophes are replaced by one instead. Read here for more: https://in1.php.net/stripslashes
Solution: Place the following code in your function.php file. or in your child theme’s function.php.//stripslashes issue if ( get_magic_quotes_gpc() ) { $_POST = array_map( 'stripslashes_deep', $_POST ); $_GET = array_map( 'stripslashes_deep', $_GET ); $_COOKIE = array_map( 'stripslashes_deep', $_COOKIE ); $_REQUEST = array_map( 'stripslashes_deep', $_REQUEST ); }
Forum: Themes and Templates
In reply to: [One Page] Recent BlogsHello 6sigmea
To remove the recent blog section from your home page you need to remove some codes from front-page.php. It is better to make a child theme and perform all the editing in that. You can learn how to make a child theme here.
Now copy and paste the front-page.php file to your child theme root folder. Remove the lines from 389 to 492. These can be found below the comments
<!-- *************Recent Blogs************* -->
Here you go. After you remove the recent blogs section divs you also need to hide the recent blog menu on home page. To remove the recent blog menu just go to line no. 121 and find and remove the following code<?php if (onepage_get_option('onepage_recent_blog_heading') != '') { ?> <li class="page_item"><a class='scrollSmint' id="blogs" href="#"><?php echo onepage_get_option('onepage_recent_blog_heading'); ?> <?php } else { ?><li class="page_item"><a class='scrollSmint' id="blogs" href="#"><?php _e('Recent Blogs','onepage'); ?></a></li><?php } ?></a></li>
Either you can also change the href if you want to send users to your blog page.
Forum: Themes and Templates
In reply to: [One Page] Page Template – Full screenHello ambhu
To remove sidebar from page template you need to remove the sidebar div. It is better to make a new template called fullwidth in your child theme. You can learn how to make a child theme here.
Now in your child theme root folder create a file fullwidth.php
Copy and paste all those codes from page.php to fullwidth.php. Then change the template name to Fullwidth, to do this just replace the commented header with this:/** * Template Name: Fullwidth * */
Then find and remove these lines from fullwidth.php
<!--Sidebar--> <div class="grid_8 omega"> <!--Start Sidebar--> <?php get_sidebar(); ?> <!--End Sidebar-->
Your fullwidth page template is ready now. It will show when you add a new page on the right side under >> Page Attributes >> Template. Select Fullwidth while creating a page. ??
Forum: Themes and Templates
In reply to: [One Page] Current page item / active menu issueThis feature is not available in “One Page Theme” the WordPress version of BusinessGrow theme.
Forum: Themes and Templates
In reply to: [One Page] Sit title does not showNow I understand your problem. There is a tag
<html <?php language_attributes(); ?>
in line no 2 of front-page.php and header.php in which the author missed closing tag “>”
You can do it mannually in you child theme header.php and front-page.php by replacing with this code
<html <?php language_attributes(); ?>>
You will get the site title shown in your browser’s windows.
To learn how to create a child theme visit this link.Forum: Themes and Templates
In reply to: [ButterBelly] Slider HelpHello vipbiz
You can find both the features in its premium version which you can purchase by following this link.
However if you still want to add a slider in this free version you may have to edit its front-page.php in its child theme. You can add any slider like flexslider or nivo slider. But for this customization you need to have good knowledge of CSS and HTML. If you want to know how to create a Child Theme follow this link.Forum: Themes and Templates
In reply to: [ButterBelly] Getting me started?Hello ALI
You can customize you theme and change your default images by going to
Dashboard > Appearance > Theme Options
Here you can find several option to customize you theme for example to change the header image just click on Top Feature Setting and upload an image to Top Feature Image.
In this section you can also change text, links which appears at the bottom of the image on homepage.
In general setting you can find some basic customization like logo,favicon.Forum: Themes and Templates
In reply to: [One Page] no posts are shown on "Recent Blogs" sectionAs i can see in your website your recent posts are already shown. I think the last update might have fixed your problem.
Forum: Themes and Templates
In reply to: [One Page] Unable to customize One Page themeTo change the Call us on text you need to open front-page.php by going to Appearance > Editor > front-page.php and search for this text, you can find it on line 46. You can also look in the theme’s root folder for front-page.php file.
<?php _e('Call us on','onepage'); ?>??<?php echo onepage_get_option('onepage_contact_number'); ?>
replace the Call us on text with your desired text or if you want to delete the Call us on text then replace above code with this one
<?php echo onepage_get_option('onepage_contact_number'); ?>