Viewing 30 results - 220,351 through 220,380 (of 243,737 total)
  • Author
    Search Results
  • #267355

    Custom CSS:
    /wp-content/themes/enfold/css/custom.css

    Quick CSS should be written at the end of:
    /wp-content/uploads/dynamic_avia/enfold.css

    You can either use the Quick CSS that you can access through your theme options, or you’re using the custom.css file to write your CSS.

    So if you want to use the quick css, enfold needs the permission for the enfold.css

    #267343

    In reply to: footer problem

    Hey e-conomy!

    Please download a fresh Enfold theme from ThemeForest and replace Footer.php file in Appearance > Editor

    Best regards,
    Yigit

    #267334

    Hi Checkmarc,

    I think Flikk may have misunderstood but, like me, he’s a participant so we can be “forgiven” :-)

    My contribution is simply to say that, having built many many complex or lengthy forms myself, you really might want to check out the Mach Forms plugin for this and other forms.

    In my experience, a long blank for can be intimidating for a candidate and if the form does not look “super professional” then potential applicants may see this as an adverse reflection on what you are going to do with the info.

    Mach Forms allows you to use conditional logic as well as split the form into pages. Infinitely and easily customisable, if data collection is key to your business it may be the best $39 you’ll ever spend (other than the Enfold theme of course) :-)

    I hope this helps,

    regards

    AndrewJ

    • This reply was modified 11 years, 7 months ago by AndrewJ.
    #267323

    Hi webpress!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .main_color .grid-content { background-color: transparent; }

    If that does not work, please post the link to your website

    Regards,
    Yigit

    Muju Naeem
    Participant

    I am developing a website using your awesome Enfold theme. Everything is working fine and the theme is really something special.

    But I am having a problem with the “Visual” selection in the Avisa Layout Builder text block. Its all white and there is nothing there. When I highlight the empty white space, it shows that there is text. I have tried everything I know to fix the problem. I have turned off all plugins and tried without success. I have deleted the theme and uploaded again without success. I have in fact deleted my full WordPress and uploaded again without success.

    I see that this issue was already raised in another thread (which is now closed);

    https://kriesi.at/support/topic/text-block-in-avia-layout-builder-and-visual-in-default-editor-not-working/

    It would be very helpful if you can help me out here.

    Cheers.

    • This topic was modified 11 years, 7 months ago by Muju Naeem.
    #267318

    Topic: footer problem

    in forum Enfold
    e-conomy
    Participant

    Hi,

    I get an error in my footer. http://www.e-conomy.nl
    I think I removed something wrong.

    How can I restore this?

    The footer.php code is now:

    <?php
    global $avia_config;
    $blank = isset($avia_config[‘template’]) ? $avia_config[‘template’] : “”;

    //reset wordpress query in case we modified it
    wp_reset_query();

    //get footer display settings
    $the_id = avia_get_the_id(); //use avia get the id instead of default get id. prevents notice on 404 pages
    $footer = get_post_meta($the_id, ‘footer’, true);
    $footer_widget_setting = !empty($footer) ? $footer : avia_get_option(‘display_widgets_socket’);

    //check if we should display a footer
    if(!$blank && $footer_widget_setting != ‘nofooterarea’ )
    {
    if( $footer_widget_setting != ‘nofooterwidgets’ )
    {
    //get columns
    $columns = avia_get_option(‘footer_columns’);
    ?>
    <div class=’container_wrap footer_color’ id=’footer’>

    <div class=’container’>

    <?php
    do_action(‘avia_before_footer_columns’);

    //create the footer columns by iterating

    switch($columns)
    {
    case 1: $class = ”; break;
    case 2: $class = ‘av_one_half’; break;
    case 3: $class = ‘av_one_third’; break;
    case 4: $class = ‘av_one_fourth’; break;
    case 5: $class = ‘av_one_fifth’; break;
    case 6: $class = ‘av_one_sixth’; break;
    }

    $firstCol = “first el_before_{$class}”;

    //display the footer widget that was defined at appearenace->widgets in the wordpress backend
    //if no widget is defined display a dummy widget, located at the bottom of includes/register-widget-area.php
    for ($i = 1; $i <= $columns; $i++)
    {
    if($i != 1) $class .= ” el_after_{$class} el_before_{$class}”;
    echo “<div class=’flex_column {$class} {$firstCol}’>”;
    if (function_exists(‘dynamic_sidebar’) && dynamic_sidebar(‘Footer – column’.$i) ) : else : avia_dummy_widget($i); endif;
    echo “</div>”;
    $firstCol = “”;
    }

    do_action(‘avia_after_footer_columns’);

    ?>

    </div>

    <!– ####### END FOOTER CONTAINER ####### –>
    </div>

    <?php } //endif nofooterwidgets ?>

    <!– end main –>
    </div>

    <?php

    //copyright
    $copyright = do_shortcode( avia_get_option(‘copyright’, “© “.__(‘Copyright’,’avia_framework’).” – “.get_bloginfo(‘name’).”“) );

    // you can filter and remove the backlink with an add_filter function
    // from your themes (or child themes) functions.php file if you dont want to edit this file
    // you can also just keep that link. I really do appreciate it ;)
    $kriesi_at_backlink = apply_filters(“kriesi_backlink”, ” – Enfold Theme by Kriesi“);

    //you can also remove the kriesi.at backlink by adding [nolink] to your custom copyright field in the admin area
    if($copyright && strpos($copyright, ‘[nolink]’) !== false)
    {
    $kriesi_at_backlink = “”;
    $copyright = str_replace(“[nolink]”,””,$copyright);
    }

    if( $footer_widget_setting != ‘nosocket’ )
    {

    ?>

    <footer class=’container_wrap socket_color’ id=’socket’ <?php avia_markup_helper(array(‘context’ => ‘footer’)); ?>>
    <div class=’container’>

    <span class=’copyright’><?php echo $copyright . $kriesi_at_backlink; ?></span>

    <?php
    echo “<nav class=’sub_menu_socket’ “.avia_markup_helper(array(‘context’ => ‘nav’, ‘echo’ => false)).”>”;
    $avia_theme_location = ‘avia3’;
    $avia_menu_class = $avia_theme_location . ‘-menu’;

    $args = array(
    ‘theme_location’=>$avia_theme_location,
    ‘menu_id’ =>$avia_menu_class,
    ‘container_class’ =>$avia_menu_class,
    ‘fallback_cb’ => ”,
    ‘depth’=>1
    );

    wp_nav_menu($args);
    echo “</nav>”;
    ?>

    </div>

    <!– ####### END SOCKET CONTAINER ####### –>
    </footer>

    <?php
    } //end nosocket check

    }
    else
    {
    echo “<!– end main –></div>”;
    } //end blank & nofooterarea check

    //display link to previeous and next portfolio entry
    echo avia_post_nav();

    echo “<!– end wrap_all –></div>”;

    if(isset($avia_config[‘fullscreen_image’]))
    { ?>
    <!–[if lte IE 8]>
    <style type=”text/css”>
    .bg_container {
    -ms-filter:”progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config[‘fullscreen_image’]; ?>’, sizingMethod=’scale’)”;
    filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config[‘fullscreen_image’]; ?>’, sizingMethod=’scale’);
    }
    </style>
    <![endif]–>
    <?php
    echo “<div class=’bg_container’ style=’background-image:url(“.$avia_config[‘fullscreen_image’].”);’></div>”;
    }
    ?>

    <?php

    /* Always have wp_footer() just before the closing </body>
    * tag of your theme, or you will break many plugins, which
    * generally use this hook to reference JavaScript files.
    */

    wp_footer();

    ?>
    ‘ id=’scroll-top-link’ <?php echo av_icon_string( ‘scrolltop’ ); ?>><span class=”avia_hidden_link_text”><?php _e(‘Scroll to top’,’avia_framework’); ?></span>
    <div id=”fb-root”></div>
    </body>
    </html>

    Thanks!

    • This topic was modified 11 years, 7 months ago by e-conomy. Reason: forgot website
    #267316

    Hey!

    I just checked your website on my iphone 4 and slider works fine on my end. Please see screenshot here – http://i.imgur.com/gOBhYgH.png
    For logo overlapping issue, please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 480px) {
    #header_main .container .logo {
    right: auto; 
    left: 0; }
    div.header_bruderhausdiakonie_label { 
    padding-top: 35px; }}

    Cheers!
    Yigit

    #267301

    In reply to: Mobile menu icon

    Hi clientflo!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    max-width: 90%;
    height: auto !important;
    margin-top: 10px!important;
    }}

    and post the link to your website if that does not work :)

    Regards,
    Yigit

    #267297

    In reply to: Sidebar Customisation

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    @media only screen and (min-width: 1140px) {
    .responsive .container .nine.units {
    width: 830px;
    }}

    Cheers!
    Yigit

    #267274
    victoriaeducacion
    Participant

    Hi everybody:

    I tried to update to 2.7.1 like other times: download from themeforest, unzip and upload to my hosting with filezilla.

    But I was not able to because I was blocked by my hosting provider’s protection system. They blocked my IP. After I get in touch with them, they explain to me that a file was doing the issue.

    I reproduce the full text (sorry for the spanish):

    Estimado cliente:

    Nos ponemos en contacto con usted en referencia al bloqueo de IP que nos ha reportado.

    Tras llevar a cabo un análisis de su caso, nuestros técnicos han comprobado que la IP desde la que está accediendo, ha sido bloqueada por las medidas de seguridad implementadas en la plataforma, debido a que ha tratado de subir el siguiente fichero:

    /public_html/wp-content/themes/enfold/config-layerslider/LayerSlider/static/codemirror/mode/clike/index.html

    Este fichero es un .c, es decir, código fuente en lenguaje c sin compilar, que no puede ser ejecutado. Este tipo de ficheros no tiene razón de ser en su alojamiento, ya que no solo no podrá compilarlos, sino que además son potencialmente peligrosos para la seguridad de su cuenta

    Por tanto, este sistema de seguridad ha bloqueado la IP desde la que se ha subido este fichero, para evitar nuevos accesos potencialmente peligrosos. Por favor, evite que este fichero se suba de nuevo a través de FTP, ya que en caso contrario su IP se bloqueará de nuevo

    In a few lines, they explain there is a not compiled file that comprises the security /public_html/wp-content/themes/enfold/config-layerslider/LayerSlider/static/codemirror/mode/clike/index.html

    They says that if I retry to upload, the protection system will block me again.

    I search in this forum and I haven’t found anything with the same problem. What could we do for solving this?

    Thank you very much,

    Best regards!

    #267268

    Hey blueunderground!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    #top .no_margin.av_one_fourth { width: 30%; }

    Regards,
    Yigit

    #267264

    Hey Emil!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .av-masonry-entry { width: 30%; }

    Best regards,
    Yigit

    #267262

    Now I’m really confused. I didn’t link to any site. My website is using the Enfold theme. My question was about how to style form input fields, but in the meantime I did figure out how to do it by adding .input_right to the form.css file. Worked perfectly.

    #267259

    In reply to: html font links

    Hi adrien19!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    div .products .product a, div .products .product a img { border-bottom: none !important; }

    Cheers!
    Yigit

    #267258

    In reply to: jQuery no conflict

    Hey Helchar!

    Enfold already uses the jQuery noconflict mode. You don’t need to modify the theme files. The main problem is though that you can’t easily use two different jquery versions on the same website. Our theme relies on the standard wordpress jquery version which is 1.11.x and it definitely won’t work with the (very outdated) 1.3.2 version. You can try to initialize your old jquery script first and to store it into a variable (i. e. like http://stackoverflow.com/a/17407562 ) but then you also need to modify your calendar script to use the right jquery variable which contains the outdated jquery code, etc. If you’re not sure how to do this please hire a developer who can dig into the code and modify it for you.

    Cheers!
    Peter

    #267257

    In reply to: Diverse Probleme

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    div div.ppt { display: none!important; }

    Best regards,
    Yigit

    #267253

    In reply to: Issue with the slider

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .csstransitions .av_slideshow_full .avia-caption-content, .csstransitions .av_slideshow_full .avia-caption-title, .csstransitions .av_fullscreen .avia-caption-content, .csstransitions .av_fullscreen .avia-caption-title, .csstransitions .avia-slideshow-button {
    -webkit-transform: none!important;
    -moz-transform: none!important;
    transform: none!important;
    visibility: visible!important;
    }

    Cheers!
    Yigit

    #267250

    In reply to: Error when installing

    Hi!

    Great! You can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    and find video tutorials here – http://vimeo.com/channels/aviathemes
    If you have any questions or issues, feel free to post them here on the forum :)
    Have a nice day!

    Cheers!
    Yigit

    #267233

    In reply to: Two questions

    Hey wtl0715!

    1- Please see – http://kriesi.at/documentation/enfold/add-your-own-favicon/
    2- You can add Image element under Media Elements in Avia Layout Builder and change “Image Fade in Animation”

    Best regards,
    Yigit

    Hey!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (min-width: 1340px) {
    .av-main-nav > li > a { padding: 0 40px; }}
    @media only screen and (min-width: 1140px) {
    .av-main-nav > li > a { padding: 0 29px; }}
    @media only screen and (min-width: 990px) {
    .av-main-nav > li > a { padding: 0 20px; }}
    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .main_menu ul:first-child > li > a { padding: 0 4px; }}

    Best regards,
    Yigit

    #267227
    B
    Participant

    Hello,

    I am running Enfold with WPML. I have an English and a Korean site. Is it possible to change the font for the Korean site? I don’t see any Korean fonts listed in the Enfold options

    #267226

    In reply to: Dual sidebars

    Hey!

    You are welcome Jan! Please have a look at Enfold documentation here for more awesome features – http://kriesi.at/documentation/enfold/ :)

    Regards,
    Yigit

    Hi!

    Can you post the link to your Enfold website so we can inspect elements on it to provide you more accurate custom CSS code?

    Best regards,
    Yigit

    #267215

    In reply to: Mega Menu Help

    Hey Micheal0424!

    Please see – http://vimeo.com/channels/aviathemes/92503669
    1 & 2- Please go to Appearance > Menus and add your menu item as a new link with # for URL so it will not be clickable http://i.imgur.com/9I3QF9j.jpg
    3- Please add following code to Quick CSS in Enfold theme options under General Styling tab

    li#menu-item-329, li#menu-item-327, li#menu-item-362 { font-weight: bold; }

    4- Do you mind creating a temporary admin login and posting it here privately so we can take a look?

    Regards,
    Yigit

    #267214

    Topic: Viewport

    in forum Enfold
    designchimp
    Participant

    Hi, I am using the enfold theme and its fantastic but how can i fix this?

    The page content is 480 CSS pixels wide, but the viewport is only 320 CSS pixels wide. The following elements fall outside the viewport:
    • The element <span class=”avia-menu-text”>Home</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Services & Pricing</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Web Design</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>eCommerce</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Graphic Design</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Print Design</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>SEO – Search E…e Optimization</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Google Adwords</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Blog</span> falls outside the viewport.
    • The element <span class=”avia-menu-text”>Contact</span> falls outside the viewport.

    #267212

    In reply to: Secondary Menu

    Hi!

    You can use Blank page template. You can see examples on demo site below
    http://kriesi.at/themes/enfold/pages/blank/
    http://kriesi.at/themes/enfold/pages/blank/maintenance-mode/
    http://kriesi.at/themes/enfold/pages/blank/coming-soon/

    Cheers!
    Yigit

    #267206

    Topic: Error when installing

    in forum Enfold
    vehgro
    Participant

    Hi there,

    I’ve tried installing Enfold on my website, but it doesn’t seem to work.
    I uploaded the zipped file (wordpress installation only), but when it’s almost finished I get an error message, saying:
    WordPress failure, are you sure you want to try again?

    Other themes I own do work and I already tried downloading it again from my Themeforest account.
    What’s wrong?

    Sanne

    basilefanon
    Participant

    Hi everybody, and thanks for this amazing theme!

    I would like to ask you two questions about menu & portfolio item.

    1) For my menu, i would like to put some space between menu items.

    More explicit

    Menu image

    2) For my portfolio :

    portfolio

    Thanks for your help!

    Regards

    #267187
    engelmanmarko
    Participant

    hi!

    I have one more problem when using enfold.

    So situation is…

    I have a page with Page navigation sidebar turn ON. Everything is fine. It is located on TOP right corner. Than I added gallery and some text, everything still fine.

    But after I added some color section to the page, Page navigation bar drops to the BOTTOM right corner?

    https://dl.dropboxusercontent.com/u/8024704/Screen%20Shot%202014-05-20%20at%2010.29.05.png

    https://dl.dropboxusercontent.com/u/8024704/Screen%20Shot%202014-05-20%20at%2010.29.32.jpg

    #267184

    Hello,

    sorry but I have the same Problem between “Team-Mitglied” and “Reiter”. In the left row I have a “Team-Mitglied” an in the right row a “Reiter”.

    Please give a solution

    https://dl.dropboxusercontent.com/s/m76dzfy7xjc5udf/Bildschirmfoto%202014-05-20%20um%2010.22.12.png
    https://dl.dropboxusercontent.com/s/6a0ewuv1tqeh3om/Bildschirmfoto%202014-05-20%20um%2010.23.01.png

    Enfold is great!!!!!

    Thanks

Viewing 30 results - 220,351 through 220,380 (of 243,737 total)