Forum Replies Created

Viewing 15 posts - 7,201 through 7,215 (of 8,657 total)
  • Author
    Posts
  • in reply to: Font Color #23560
    wensolutions
    Keymaster

    Hello,

    To apply the color to the text used in the button of the slider, you can replace the CSS provided in the thread above with the new Custom CSS provided below :

    #feature-slider .entry-container a.read-more {
    
    color: #ed7f00; 
    
    }

    Hope this Helps,

    Best Regards !!

    in reply to: Font Color #23512
    wensolutions
    Keymaster

    Hello,

    You can use some Custom CSS to change the color for the slider title.

    Please go to your Admin Dashboard > Appearance > Customize > Theme Options > Custom CSS Options and paste in the following custom CSS

    #feature-slider .entry-container .entry-header .entry-title a {
    
    color:#ed7f00;
    
    }

    You can replace the color Hex code with the color code of your choice.

    If you need reference on color hex codes, please see the link here : http://www.w3schools.com/colors/colors_picker.asp

    Hope this Helps,

    Best Regards !!

    in reply to: Header Image not appearing and grainy images #23511
    wensolutions
    Keymaster

    Hello @jjambeck,

    Please go to your Admin Dashboard > Appearance > Customize > Header Image > Enable Featured Header Image on and check the option selected in the select menu.

    Also, it would also be great if we could get your site URL so that we could further inspect the issue.

    Best Regards !!

    in reply to: License Issue #23509
    wensolutions
    Keymaster

    @raghunas, please email your site login details to info[at]themepalace.com so that we could inspect your license settings and status.

    Thank you for patience!.

    in reply to: Menus and Sub Menus #23469
    wensolutions
    Keymaster

    Hello,

    To properly address your needs regarding the primary menu, you will need to make some customization through Child Theme approach in your website.

    To learn about child theme creation see the link here : https://codex.wordpress.org/Child_Themes. You can also automate the process of child theme creation with the help of Child Theme Generator Plugin.

    After you have successfully created and activated your child theme, go to your child theme’s functions.php file and paste in the following Code there :

    <?php
    /**
     *Recommended way to include parent theme styles.
     *(Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
     */  
    
      add_action( 'wp_enqueue_scripts', 'flat_commerce_pro_child_style' );
      function flat_commerce_pro_child_style() {
    	
    	wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    	
    	wp_enqueue_style( 'child-style',get_stylesheet_directory_uri() . '/style.css',array('parent-style'));
    
    	wp_enqueue_script( 'flat-commerce-child-custom-js', get_stylesheet_directory_uri() . '/flat-commerce-custom.js', true );
    	
    }

    If you have used the plugin to create child theme, your functions.php will be automatically populated by the function, meaning you will only need to add following block inside the function :
    wp_enqueue_script( 'flat-commerce-child-custom-js', get_stylesheet_directory_uri() . '/flat-commerce-custom.js', true );

    You will then need to create “flat-commerce-custom.js” file in the child theme directory and paste in the following js code in the file :

    jQuery(document).ready(function($) {
    var menu = $('ul#menu-primary > li');
    menu.each( function( i ){
    
    	if( $( this ).hasClass( 'menu-item-has-children' ) ) {
    		$( this ).children('a').attr( 'href', 'javascript:void(0)' );
    	}
    } );
    	
    });

    This will help you resolve the issue and provide a stable fix to the issue.

    As the process is lengthy and you do not feel confident on code handling, you would also choose to Hire a Customizer to do the task for you. To Hire a professional customizer for the task, please follow this link : http://themepalace.com/hire-a-customizer/

    Hope this Helps,

    Best Regards !!

    in reply to: Donate now / front activity #23467
    wensolutions
    Keymaster

    Hello @bradmccall,

    Please find below the responses regarding your queries on features of pro version of the Charitize theme :

    1) Can the ‘donate now’ button be removed? : Being a charity focused theme, the “Donate Now” button is set in the header also in the Pro version of the theme. You can however change the button text, color and link easily in the Pro version of the theme. Also, if you want to completely remove the button from the header you can achieve it with some simple Custom CSS.

    2) Home Front main slider – Can I have more than 3 sliders? : Yes, You can have an option to choose up to 6 Slides in the front page slider along with the option to choose the slides from either page or category.

    3) Home Front Activity section – how do you change the activity images so they are not all the same? : Your query is a bit unclear about the Home Front Activity section. The section takes featured images from the pages you have selected to display in the section. So, each activity should have its image taken from the featured image of that page. In the pro version of the theme, it is also possible to populate the section with category selection.

    For more details on the features of Charitize Pro theme, please see the link here : http://themepalace.com/downloads/charitize-pro/

    Hope this resolves your queries,

    Best Regards !!

    in reply to: Images #23466
    wensolutions
    Keymaster

    Glad to know your issue has been resolved !!

    If you have any further queries / Future Issues please feel free to post them here.

    Best Regards !!

    in reply to: Background color not changing #23464
    wensolutions
    Keymaster

    Hello,

    Education Hub theme already provides you with the option to change the background color of your website without having to use Custom CSS.

    Please go to your Admin Dashboard > Appearance > Customize > Colors > Background Color and choose your desired color there. Save and publish your changes and the color should apply to your site background.

    Hope this Helps,

    Best Regards.

    in reply to: Image Selection.. #23444
    wensolutions
    Keymaster

    Hello,

    You can use your desired Font Awesome icon from the list of available icons in the buttons.

    For all the list of icons available, with the fa class for individual icons, please see the link here : http://fontawesome.io/icons/

    Hope this Helps,

    Best Regards.

    in reply to: Menus and Sub Menus #23416
    wensolutions
    Keymaster

    Hello @erniepope,

    To disable the parent menu item to link to your inner pages, please paste in the following Custom CSS in your Admin Dashboard > Appearance > Customize > Theme Options > Custom CSS Options :

    @media (min-width: 768px) {
    
    ul#menu-top-menu > li.menu-item-has-children > a {
        pointer-events: none;
    }
    
    }

    Hope this Helps,

    Best Regards !!

    in reply to: Images #23408
    wensolutions
    Keymaster

    Hello,

    We have checked your website and it seems like your “Site Address” is still not changed.

    Please share with us the screenshot of your Dashboard -> Settings -> General so that we can check the value set in the setting and provide you further assistance accordingly.

    Best Regards !!

    in reply to: Menus and Sub Menus #23407
    wensolutions
    Keymaster

    Hello @erniepope,

    We have tested the theme locally and could not precisely recreate your issue on our side.

    Please provide us your site URL so that we can inspect your website for the issues and provide you with a precise fix.

    Best Regards !!

    in reply to: Landing Page #23400
    wensolutions
    Keymaster

    Hello @Jenn_0014,

    If you want to display a custom page as your landing page you can do it with child theme creation.

    You have mentioned that you tried creating child theme and setting up “landingpage.php”, the method wont work as the page wont be recognized as the landing page template by default by WordPress.

    To be able to use the template you will need to put in the code below in the top of your page template to define it as a page template in WordPress :

    <?php
    /**
     * Template Name: Landing Page
     *
     */
    ?>

    You can now choose your defined page template for your Current Home page under page edit screen > Page Attributes > Template.

    For further reference on using page templates see the link here : https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/

    Hope this Helps,

    Best Regards !!

    in reply to: Accordion feature not working #23399
    wensolutions
    Keymaster

    Glad we could help !!

    Please feel free to post in your queries here if you have any problems in the future.

    We would also really appreciate it if you could take an extra effort to rate our Plugin here : https://wordpress.org/support/plugin/wp-easy-faqs/reviews/

    Best Regards !!

    in reply to: Captions #23363
    wensolutions
    Keymaster

    Hello @karhu,

    The image you are referring to seems to have implemented by hard-coding the image URL wrapped inside the “image-right” div.

    Bizlight Pro theme handles and displays the image caption entered via WordPress default media uploader properly.

    To resolve the issue, please add the image by clicking the “Add Media” button in Page editor and provide the caption inside the textarea marked in the screen-shot below :

    Click on “Insert into Page” and save your changes. The caption should now be displayed in the page below the uploaded image.

    Hope this helps,

    Best Regards !!

Viewing 15 posts - 7,201 through 7,215 (of 8,657 total)