Grace Themes
Forum Replies Created
-
AuthorPosts
-
Grace ThemesMember
Hi
To reduce the slider image height
Go to Appreance -> Theme Options -> Basic Setting
and paste the below code in Custom CSS box and click on Save Options button.
.slider-main { min-height:300px !important;}
.nivoSlider img { height:300px !important;}set the min-height and height as per your requirement.
Regards
Grace ThemesGrace ThemesMemberHi,
Please send the menu/submenu list and WordPress admin login details of your site so we can check the site and solve your problem.
Regards
Grace ThemesGrace ThemesMemberHi,
Please send the website URL so we can check the site and solve your problem.
Regards
Grace ThemesGrace ThemesMemberHi
Create a page for blog and assign Blog – Right sidebar template
http://gracethemes.com/documentation/bizgrowth/#page-templatesand link it in the main menu
gracethemes.com/documentation/bizgrowth/#page-templatesRegards
Grace ThemesGrace ThemesMemberHi,
Its is a standard way also possible in ZeroError Lite version.
Regards
Grace ThemesGrace ThemesMemberHi,
To create submenu
Got to Appearance -> Menus and add pages under the main menuPlease see the documentation, it will surely help you to create submenus
http://gracethemes.com/documentation/zeroerror/#navigationRegards
Grace ThemesGrace ThemesMemberHi,
I have included the option for fax number in theme’s file.
Please check your email.After replacing the files
Got to Appearance -> Theme Options-> Footer Tab
Find a option to add fax numberRegards
Grace ThemesGrace ThemesMemberHi Simone,
To show the default home page with all sections as in demo theme
http://gracethemes.com/demo/zeroerror/First activate the ZeroError PRO theme
Go to Appearance -> Themes and activate the ZeroError themeGo to Settings -> Reading -> Front page displays
click on radio button of Your latest postsPlease see the documentation, it will surely help you to install and customize the theme.
http://gracethemes.com/documentation/zeroerror/Regards
Grace ThemesGrace ThemesMemberHi,
Please send the WordPress admin login details of your site at [email protected] so we can check the site and solve your problem.
Regards
Grace ThemesGrace ThemesMemberHi,
Logo can be either image logo or textual logo(Site Title). If you want to put logo image with site title you will have to design logo image with textual content. You can also send your logo image at [email protected] so we can redesign new logo with your site title.
Regards
Grace ThemesGrace ThemesMemberHi,
Go to Settings -> Reading -> Front page displays
click on radio button of Your latest postsTo display post and pages in site
Go to Appearance -> Theme Options and click on Restore Defaults in bottom sideTo customize the theme
Go to Appearance -> Theme OptionsPlease see the documentation, it will surely help you to customize the theme.
http://gracethemes.com/documentation/zeroerror/Regards
Grace ThemesGrace ThemesMemberHi,
Can you please send the website URL and WordPress admin login details of your site at [email protected] so we can test your website and solve the problem.
Regards
Grace ThemesGrace ThemesMemberHi,
To show the default home page with all sections as in demo theme
http://gracethemes.com/demo/zeroerror/First activate the pro theme
Go to Appearance -> Themes and activate the ZeroError theme
Go to Settings -> Reading -> Front page displays
click on radio button of Your latest postsThen Go to Appearance -> Theme Options and click on Restore Defaults in bottom side
Please see the documentation, it will surely help you to install and customize the theme.
http://gracethemes.com/documentation/zeroerror/Regards
Grace ThemesGrace ThemesMemberHi,
To solve the issue of Footer Back to Top Button, replace the code from line no. 150 in custom.js file of js folder with the below code
jQuery(document).ready(function(){
// hide #back-top first
jQuery(“#back-top”).hide();
// fade in #back-top
jQuery(function () {
jQuery(window).scroll(function () {
if (jQuery(this).scrollTop() > 500) {
jQuery(‘#back-top’).fadeIn();
} else {
jQuery(‘#back-top’).fadeOut();
}
});
// scroll body to 0px on click
jQuery(‘#back-top’).click(function () {
jQuery(‘body,html’).animate({
scrollTop: 0
}, 500);
return false;
});
});});
jQuery(document).ready(function() {
jQuery(‘.cols-4 h5’).each(function(index, element) {
var heading = jQuery(element);
var word_array, last_word, first_part;word_array = heading.html().split(/\s+/); // split on spaces
last_word = word_array.pop(); // pop the last word
first_part = word_array.join(‘ ‘); // rejoin the first words togetherheading.html([first_part, ‘ ‘, last_word, ‘‘].join(”));
});
});Regards
Grace ThemesGrace ThemesMemberHi,
From the above email message, it seems that the double quote in contact form shortcode is not allowing email address to send as a parameter to email function.
We have tested contact form in other server and is working fine with double quote.
If the shortcode is working without double quote, you can use it and its’ not a server problem.
Regards
Grace Themes -
AuthorPosts