Viewing 30 results - 135,841 through 135,870 (of 142,935 total)
  • Author
    Search Results
  • #203720

    In reply to: sharing buttons

    Hey eliuserman!

    You can try using this plugin http://wordpress.org/plugins/socialize/
    You can find recommended plugins list here https://kriesi.at/support/topic/recommended-plugins-last-update-04-09-2013/

    Regards,
    Yigit

    #203718

    Hi rodarialtda!

    You can add following code to Quick CSS in Enfold theme options under Styling tab to change the color of speacial heading elements

    .main_color .meta-heading>* { color: black; }

    and please use following code to align your logo

    .logo { margin-top: 30px; }
    .header-scrolled .logo { margin-top: 0; }

    Best regards,
    Yigit

    #203714

    In reply to: layerslider 5 update ?

    Hi stevemulisa!

    Thanks :)
    Please refer to Ismael’s post here https://kriesi.at/support/topic/disable-layerslider-failed/#post-203464

    Cheers!
    Yigit

    #203697

    ok – I’ll stay in english mode ;-)

    It would be cool, if you also have any information for me in the third thread I’ve posted this morning regarding the button css … That would help me a lot !!!

    Thanks
    Tom

    #203694

    Hey!

    Yes, it’s ok for me. However note that I’m the only member of the support staff who speaks German and the response time may increase (i.e. if I don’t work one day you need to wait more than 24h for an answer…).

    Regards,
    Peter

    #203692

    Hi Peter !

    Thanks a lot – as you can imagine your tip works like a charm … :-)

    I always wonder how you can fix every problem in seconds – it seems you live inside your code :-)

    Thanks
    Tom

    BTW: is it ok to post here in german ?

    #203689

    Hi!

    Great, you probably just need to update the child theme footer.php with this line

    
    <a href='#top' title='<?php _e('Scroll to top','avia_framework'); ?>' id='scroll-top-link' <?php echo av_icon_string( 'scrolltop' ); ?>></a>
    

    Best regards,
    Peter

    #203688

    Hi Yigit !

    The css changed nothing – still no icon …
    That made me curious and like always the error is in front of the screen :-/

    I had an old footer.php in the child folder – removing this showed the icon immediately again …

    Sorry … but like always big thanks for the helping !!!

    Best regards
    Tom

    #203686
    karbonato
    Participant

    Hi, I wrote about some 404 problems here in another post which is already closed to new replies.

    Finally I found what cause my website to crash on 404 errors.

    As soon as I change de “General Settings” within the ENFOLD Menu and I save the changes, suddenly all the pages located on the Top Menu stop working resolving a 404 error. Also the Column title page of a MegaMenu I have, does not load so a 404 error appears instead. Only the subpages inside the only column with subpages are working.

    The only way I found to resolve this issue was deactivating 10 plugins at once and then reactivating them again and then all the pages works smoothly. I tried deactivating the WPML plugin only and activating with no success so I’m not pretty sure where the problem is located.

    It seems that the ENFOLD menu write in some part of the website structure not properly and then when reactivating the plugins wordpress fix the issue.

    With my coding skills I cannot find out what’s going on and how to solve this issue and not be worried anymore about changing any ENFOLD setting.

    Thank you in advance and have a happy new year!

    Oriol

    #203684

    Hi!

    Please try adding following code

     $avia_config['font_icons'] = apply_filters('avf_default_icons', array(
    	'scrolltop' 	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue876'),
    ));

    You can also check Footer.php file in Appearance > Editor and make sure 168th line is the same as in screenshot, It should be at the very bottom of the file http://i.imgur.com/M3XOqYo.jpg

    Cheers!
    Yigit

    #203682

    Hi Peter!

    Ich arbeite mit einem Child Theme und ersetze immer den kompletten Enfold Ordner !
    Und ich habe bereits 2.4.4 online !

    Im Child Theme Ordner ist zwar auch eine functions.php, aber komplett leer:

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */

    Fällt Dir spontan noch was ein ??? :-)

    LG
    Tom

    #203676

    Hi!

    Ich glaube das “scrolltotop” icon hat den falschen Icon Code. Bitte versuche die enfold/functions.php Datei per ftp zu aktualisieren und mit der neuen Datei der v2.4.4 Theme Version zu überschreiben.

    Cheers!
    Peter

    #203662
    This reply has been marked as private.
    #203661
    ideenstart
    Participant

    Hi !

    Bei einem der letzten Updates ging bei mir irgendwie die nach oben zeigende Pfeilspitze auf dem “to top”-button verloren!
    Ich habe nur noch eine funktionierende, aber leere Box !?

    Any ideas ???

    LG
    Tom

    #203629

    In reply to: sidebar/widget issues

    Hi kls1138!

    1) The order is determined by the code in enfold/sidebar.php. If you want to display the “Displayed Everywhere” widget area on top of the “Sidebar Blog” widget area open up sidebar.php and delete following code

    
            //global sidebar
            if (dynamic_sidebar('Displayed Everywhere')) : $default_sidebar = false; endif;
    
    

    Then replace

    
    
            if($custom_sidebar)
            {
                dynamic_sidebar($custom_sidebar);
                $default_sidebar = false;
            }
    

    with

    
            //global sidebar
            if (dynamic_sidebar('Displayed Everywhere')) : $default_sidebar = false; endif;
    
            if($custom_sidebar)
            {
                dynamic_sidebar($custom_sidebar);
                $default_sidebar = false;
            }
    
    

    2) I’m not familiar with the Adrotate plugin code and I don’t know how you can fix this. Please contact the plugin author – maybe he can provide support for the plugin.

    Regards,
    Peter

    #203623

    Hey!

    It seems like you have figured it out. I checked your website on the latest versions of Chrome, Firefox and IE and this how it looks on my end http://i.imgur.com/KusgXmJ.jpg
    ( from top to bottom: Firefox, Chrome, IE )

    Best regards,
    Yigit

    #203622

    Hey HadjiMagic!

    Which font family would you like to use? You can add following code to Quick CSS in Enfold theme options under Styling tab to force all heading elements in LayerSlider to use open sans font family

    #top .avia-layerslider .ls-wp-container .ls-layer h1, #top .avia-layerslider .ls-wp-container .ls-layer h2, #top .avia-layerslider .ls-wp-container .ls-layer h3, #top .avia-layerslider .ls-wp-container .ls-layer h4, #top .avia-layerslider .ls-wp-container .ls-layer h5, #top .avia-layerslider .ls-wp-container .ls-layer h6 { font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif!important; }

    Cheers!
    Yigit

    #203620

    Hey!

    Color Section element and integrated Layer Slider only works fullwidth on Enfold. However, you can choose not to display sidebar on your page and add Widget Area element to display your widgets.
    On which slider would like to increase margin? If LayerSlider, please add following code to Quick CSS in Enfold theme options under Styling tab

    .avia-layerslider { margin-top: 10px; margin-bottom: 10px; }

    Regards,
    Yigit

    #203612

    Hey!

    The next update (see https://kriesi.at/support/topic/linking-the-iconbox/ ) will enable you to create an icon list (or icon box) with clickable tiles and icons. You can then use this elements to create a list of pdf links which will open in the same or new windows.

    Regards,
    Peter

    #203594

    In reply to: Post Slider Issue

    Hey!

    You can use it as following

    @media only screen and (min-width: 767px) and (max-width: 989px) {
    .avia-promocontent { margin-right: 0px; }
    .av_promobox .avia-button { right: 59px; top: 75%; }
    }

    Best regards,
    Yigit

    #203576

    Hi!

    I just noticed you already updated Enfold to verion 2.4.4. Since Enfold 2.4.4 you should be able to change the portfolio permalinks settings on the Settings > Permalink page. You don’t need to use the code I posted here ( https://kriesi.at/support/topic/wp-3-8-with-wpml-3-0-1-creates-404-errors/ ). If you want to translate the slugs with WPML you can use the “String Translation Management” extension for the slug translation.

    If the permalink rules don’t work try to delete the theme folder, then re-upload all themes files (v2.4.4), go to Theme Options and save the theme settings, then go to Settings > Permalinks and save the permalink options.

    Best regards,
    Peter

    #203561

    In reply to: full width lost

    Yes, the strange thing is as follows.
    Any type of styling I bring (color, font, footer, top menu above the header, etc..) causes the loss of the full with of the layout, namely the full with of the slider.
    The only thing i have found to correct the problem, for now is to reset all the functions to start status. But is is no really a good thing to have to rebuild the whole personnalisation

    #203538

    In reply to: Breadcrumb problem

    This reply has been marked as private.
    #203530

    Many thanks Ismael. I’m afraid this is double dutch to me and I’m really wary of getting it wrong!

    Is it really not possible to be able to change the order of the portfolio entries in the admin panel as this seems to determine the order they appear?

    I’m considering using a dynamic header at the top of each page is it possible to have the breadcrumbs added via a text panel and if so what code do I use?

    Cheers
    Rupert

    #203515

    Hi Ismael,

    Thank you for your input! I have used your advice..

    The DIV position i used was absolute, coud it be that therefore the css is not influencing the position?

    Also the the video is not responsive and stays relatively large..

    This is the DIV:

    <div style=”position: absolute; top: 70px; left: 200px; width: 410px; height: 234px; background-color: yellow;”><iframe src=”//player.vimeo.com/video/81766071?badge=0&color=fff” width=”410″ height=”234″ frameborder=”0″ webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe></div>

    I realie that this is more HTML, CSS and responsiveness tuition I am asking here and not so much helpdesk related..
    Would you please be so kind to help me out here?

    Thanx!

    Ben

    Hey!

    Edit config-layerslider > LayerSlider > skins > fullwidth > skin.png, adjust the size of the play button:

    Adjust the width and height of the button using this on your Quick CSS:

    .ls-fullwidth .ls-playvideo {
    width: 100px;
    height: 100px;
    margin-left: -25px;
    margin-top: -25px;
    }

    Best regards,
    Ismael

    Hi discover_peppermint!

    Please check if the top menu item has the “Use as mega menu” option ticked. Unchecked the mega menu option.

    Regards,
    Ismael

    This reply has been marked as private.
    #203465

    Topic: sidebar/widget issues

    in forum Enfold
    kls1138
    Participant

    Hello,

    I’m having trouble getting widgets to display in the sidebar the way I’d like. There are two issues:

    1) Ordering: There are widgets that I want to display on every page so I use the “Displayed Everywhere” widget option. I also want to display different widgets on the single post pages so I use the “Sidebar Blog” widget option. The problem is that I have no control over the order in which the widgets are displayed. It appears that by default, the “Sidebar Blog” widgets are posted on top of the “Displayed Everywhere” widgets. How can I control the order in which these are displayed?

    2) I’m using the Adrotate plugin to manage my advertisements. The plugin has features that allow you to determine which categories particular ads will be displayed in. Unfortunately, this feature isn’t working with the enfold theme and my advertisements are displaying in every category and on every single post. Is there some way to fix this?

    Thanks!

    #203455

    Good evening, I would like to know too, how can I get a space in the “Slider” I wish I had a margin at the top and bottom

Viewing 30 results - 135,841 through 135,870 (of 142,935 total)