Forum Replies Created

Viewing 30 posts - 31 through 60 (of 465 total)
  • Author
    Posts
  • in reply to: Full width logo image and size issue #346415

    Hi!

    The best way to do add a fullwidth logo would be to select the “Logo Centre, Menu below” option in Enfold Theme Options > Header > Header Layout > Menu Logo and Position

    The logo width is automatically resized depending on the screen size. Therefore I would suggest a high resolution (1000px wide + ) so that it doesn’t lose quality but to be honest, it does depend a lot on the logo.

    Best regards,
    Arvish

    in reply to: Add button to slider #346413

    Hey Micheal0424!

    #av_section_1 is the default ID that gets allocated to the first color section within a layout.

    You need to override this ID by entering a new ID(without the #) in the ID settings for the color section:

    Use this ID instead of the default #av_section_1 in the custom CSS e.g

    This code:

    #av_section_1 .av-special-heading {
    background-color: #3892CE;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 10px;
    }

    becomes

    #THE_ID_YOU_ENTERED_IN_ID_SETTING .av-special-heading {
    background-color: #3892CE;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 10px;
    }

    Cheers!
    Arvish

    in reply to: Logo Padding at the Top #346250

    Hey slui!

    In Enfold Theme Options > Header > Header Behaviour

    Uncheck “Shrinking Header” option.

    Cheers!
    Arvish

    in reply to: LayerSlider is not responsive #346232

    Hi!

    Assuming that the image is a white rounded and bordered rectangle, please add the following code to Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      p.ls-preloaded{
      border: none !important;
    }
    
    }

    Regards,
    Arvish

    in reply to: Mobile version missing elements on LG VS980 android phone #346224

    Hi!

    Redirects to catalystconsultinggroup.com. Is this the expected behaviour?

    Works fine on LG Android 4.0 and Sony Android 4.1.

    Best regards,
    Arvish

    in reply to: Enfold theme incomplete? #346201

    Hey!

    All downloads of Enfold are managed and hosted by Themeforest and we therefore have no control it.

    The issue you have reported has not been reported by users and therefore we cannot assume anything wrong with the downloads.

    This is why I have asked you upload the files you have received to your server so we can verify from our end that nothing is missing.

    In case you wish to continue with the install, please make sure that both enfold and enfold-child folder are present in your theme directory. For a child theme to work, the parent theme, in this case enfold, must be present in the theme directory.

    Cheers!
    Arvish

    in reply to: adding some code to the bottom of the post loop #346196

    Hi!

    I would go with Ismael’s recommendation. It is cleaner and allows for more efficient theme updates if you’re using a child theme.

    Add this at the bottom your theme’s functions.php

     add_filter( 'the_content', 'add_after_content' ); 
     
     function add_after_content( $content ) { 
        if (is_singular('post')) {
            $code = "put your code here";
    
            $content = $content.$code;
    		
    		}
    
        return $content;
    }

    Best regards,
    Arvish

    in reply to: Advertising Area Widget #346174

    Hey c911box!

    Please forward us a link to your page you need to customise. Additionally, for us to have a better understanding of your requirements, please forward us a mock up or screenshot of the type of modification you wish to achieve.

    Best regards,
    Arvish

    Hi Julie!

    Please forward us a link to your page you need to customise for us to have a closer look and a better understanding of the mechanism that will allow us to devise a solution.

    Cheers!
    Arvish

    in reply to: Embed Vimeo video won't play in layerslider #346165

    Hi futemarketing!

    Please forward us a link alongside administrative credentials to your site for us to have a closer look.

    If the video was working before the transfer, there is little to suggest that it is a wordpress limitation. Have you tried adding the video directly to a page to see if it works.

    It may happen that codes may get corrupted during transfers and you might have to recreate the slide.

    Regards,
    Arvish

    in reply to: Accordian #346161

    Hi Dogmut!

    The accordion is working as it should. The issue is it does not look great with the fullscreen background.

    In my professional opinion, I believe you should try lifting the text and accordion layer off the fullscreen.

    Try adding this to your Quick CSS or custom.css:

    #av_section_1 main{
    position: absolute !important;
    top: 100px !important;
    }

    Regards,
    Arvish

    in reply to: Page keeps breaking… #346155

    Hi!

    For us to have a better understanding of your requirements, please forward us a mock up or screenshot of the type of modification you wish to achieve.

    Best regards,
    Arvish

    in reply to: Editor issue #346149

    Hey SLHetcie!

    Add the following to a php.ini file and upload it via FTP to your wp-admin folder

    max_execution_time = 500
    max_input_time = 500
    memory_limit = 128M
    max_input_vars = 3000

    To create a php.ini file, open a text editor, save as all files and name it php.ini, .ini being the file extension.

    Best regards,
    Arvish

    in reply to: Masonry Portfolio #346141

    Hey tocal!

    Just checked your page and the end result seems to be working fine.

    Could you please let us know what you like to achieve and what methods you are not able to replicate so that we can better assist.

    Best regards,
    Arvish

    in reply to: Alternate "small" logo #346129

    Hi!


    @redfirestudio
    :

    Please replace the CSS you have entered with the following:

    .header-scrolled .logo a img {
    display: none;
    }
    
    .header-scrolled strong.logo a {
    width: 100px;
    background: url(https://new.pttrucks.com/wp-content/uploads/2014/11/icon_only.png) no-repeat;
    }
    
    .header-scrolled strong.logo{
     padding-top: 10px;
    }

    Cheers!
    Arvish

    in reply to: Alternate "small" logo #346123

    Hey!


    @mariken
    : I would advise opening a separate thread for your issue.

    Regards,
    Arvish

    in reply to: Export Color Sections #346121

    Hey pixallus!

    It is not exactly direct. You can try either of these two ways.

    1. If it is within the same wordpress install, you can save a page as a template and reuse it in another page.

    Click templates on the top right hand side of ALB and click save entry as template.

    2. Add the following code to functions.php.

    /**
     *	Enable Avia Layout Builder Debug
     *	@link http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
     */
    
    	
    	add_action('avia_builder_mode', "builder_set_debug");
    	function builder_set_debug() {
    		return "debug";
    	}

    This adds a debug text area to your page in which you can copy your generated shortcode for your color section anywhere you want.

    Regards,
    Arvish

    in reply to: Problems with Layer Slider #345849

    Hey!

    Just checked and there were no styles applied in the back.

    Did the £100 styling and tested. All working fine.

    Please check and let us know.

    Best regards,
    Arvish

    in reply to: Enfold Showcase #345846

    Hey!


    @jansthh
    : Mate, that’s very inspiring! Thanks for sharing.

    Best regards,
    Arvish

    in reply to: Theme options broken #345845

    Hi Jakub!

    Add the following to a php.ini file and upload it to your wp-admin folder

    max_execution_time = 500
    max_input_time = 500
    memory_limit = 128M
    max_input_vars = 3000

    Cheers!
    Arvish

    in reply to: Placeholder in default contact form #345844

    Hey!

    Unfortunately @sandieann is right here. The default contact form does not allow for placeholder text.

    You might want to try https://wordpress.org/plugins/contact-form-7/ or http://www.gravityforms.com/ instead.

    I would, though, invite you to vote for or post a feature request on our feature request page https://kriesi.at/support/enfold-feature-requests/.

    Cheers!
    Arvish

    in reply to: Beam in footer #345841

    Hey Tim!

    Add this code to Quick CSS or custom.css:

    #footer .current-menu-item{
        background-color: transparent;
        box-shadow: none;
    }

    Regards,
    Arvish

    Hey evabo!

    Open functions-enfold.php then find this code

    function avia_post_nav($same_category = false)

    Replace it with

    function avia_post_nav($same_category = true)

    Remove browser cache the reload the page.

    Best regards,
    Arvish

    in reply to: Problems receiving the emails via Contact form #345838

    Hey!

    You will need to verify wether your mail settings are correctly defined.

    Try installing https://wordpress.org/plugins/wp-mail-smtp and test send an email.

    Veify the SMTP settings from your web host as well to make sure you are using the correct ports.

    Regards,
    Arvish

    in reply to: Add Custom Text to Header Area right #345837

    Hi royaltask!

    Please forward us a link to your page you need to customise. Additionally, for us to have a better understanding of your requirements, please forward us a mock up or screenshot of the type of modification you wish to achieve.

    Cheers!
    Arvish

    in reply to: Anchor to a tab #345836

    Hi!

    Tested with the scrolling on Windows 8.1 and 7 Enterprise on all latest major browsers.

    Even the scrolling works.

    I strongly suggest the following steps:

    1. Disable all third-party plugins to see if the issue gets fixed. 90% of the time, issues are caused by conflicting code from third party plugins. Disabling these plugins one by one and checking if this helps sort the issue helps pin-point the exact source of the issue.

    2. Restore the original tabs.php.

    If disabling any third party plugins does not help, please forward us administrative credentials to your site for us to have a closer look.

    Please check the “Set as private reply (Only you and moderators will see the content of this post)” option before posting any sensitive information.

    Regards,
    Arvish

    in reply to: Javascript problem #345833

    Hey!

    I ‘m glad you found the source of the issue. Could we consider this as resolved?

    Best regards,
    Arvish

    Hey jb84!

    You cantry https://wordpress.org/plugins/uk-cookie-consent/

    But to be honest, plugins crash most of the time due to interference from other plugins or javascript.

    Since the development of plugins is independant of our own theme development, we unfortunately have no control on the plugin’s code.

    That said, I would welcome you to vote for or post a feature request on our feature request page https://kriesi.at/support/enfold-feature-requests/

    Regards,
    Arvish

    in reply to: Wrong image article when i share to social #345830

    Hi HIO2014!

    You need to make sure your featured image in your Post is the image you would like to set as the facebook shared image.

    If such is the case, please forward us administrative credentials to your site for us to have a closer look.

    Cheers!
    Arvish

Viewing 30 posts - 31 through 60 (of 465 total)