Viewing 30 results - 228,031 through 228,060 (of 243,835 total)
  • Author
    Search Results
  • #225334

    Hi Brad!

    Please try Peter’s fix here https://kriesi.at/support/topic/enfold-portfolio-not-working-after-wordpress-3-8-update/

    Best regards,
    Josue

    #225330

    In reply to: Socket Social media

    Download the theme here, unzip it and put the folder in your wp-content/themes folder.

    Best regards,
    Josue

    #225324

    In reply to: Shortcodes in Submenu?

    Hey Bruno!

    You can use this code, add it to your functions.php file:

    add_filter( 'wp_nav_menu_items', 'my_custom_menu_item', 10, 2 );
    
    function my_custom_menu_item ( $items, $args )
    {	
        $items .= '<li class="menu-item custom-menu-item"><a href="#" rel="nofollow">Asd</a><ul class="sub-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page">'.do_shortcode("[_PUT_YOUR_SHORTCODE_HERE]").'</li></ul></li>';
        return $items;
    }

    If you want it to appear before the search icon, you’d need to add it before line 58 in functions-enfold.php instead.

    Best regards,
    Josue

    This reply has been marked as private.
    #225310
    greenmarimo
    Participant

    Hi guys,

    Sorry if someone has already posted this problem but I couldnt find it.

    I would like to change the background image for a specific page.
    I set the background image via the enfold>styling>general tab.
    For this page “job offers”, I would like to hide it.(I just want a white background)

    I think I have to edit the quick css area but dont know how to.
    Could anyone tell me how to fix it?

    thanks in advance

    #225303

    Make the Team Member PHOTO linkable to a page or post …….

    • This reply was modified 11 years, 10 months ago by Courtney.
    #225280

    In reply to: Custom CSS Ideas

    Hi All,

    I’ve been debating this a lot over the past few months and ultimately I can’t see a really good reason for it. With dev tools or even firebug you can identify any element on your site and then customize it with css which is specific to your needs.

    By giving out chunks of css which you can copy+paste I feel like its enabling everyone to not understand what it is they are doing which in turn can cause more harm than good. Some things are definitely available for a quick adjustment which is what I’ve been adding (slowly) here: http://kriesi.at/documentation/enfold/category/css-snippets/ . But it doesn’t get into cross browser support and just barely is able to touch the surface on mobile adjustments.

    It also doesn’t cover proper css syntax which means a user could end up with a bloated custom.css or Quick CSS files.

    Learning the basics of css and how to use dev tools to identify css classes would however be a far better solution for anyone looking to dig deeper into customization than a topic with snippets to try and piece together to get a result.

    Ultimately I’ll leave it up to Kriesi but we would start a new topic with a short blurb about us not supporting anything in the topic and make it a sticky as opposed to a user started one either way so for now I’ll close this one.

    Cheers!
    Devin

    #225273
    milatch
    Participant

    Hello,

    since I’ve updated to the last versions of Enfold, Woocommerce & German Market, I’ve got still a few problems, that havent been there before:

    1. How can I disable the price function “from – to”, in products with variations. It’s supposed to appear one main “start price” only.

    2. It seems there is a space problem. Product rating overlaps the button shipping costs.

    3. How can I remove the last sentence (I guess from German Market). Hasnt been there in the past.

    Thank you very much!!

    #225268

    In reply to: Contact Form CSS Style

    Hey GilbertoDav!

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

    .avia_ajax_form label { margin-bottom: 3px; }

    Cheers!
    Yigit

    #225261

    Hi courtney_martin!

    Can you post the link to team page so we can take a look?
    There is still no way of doing it, but you can request it here https://kriesi.at/support/topic/enfold-feature-requests/
    Or you can link Team members name as shown here http://i.imgur.com/KjQYnqQ.jpg

    Best regards,
    Yigit

    #225259

    Hey Jasmer!

    Please go to Appearance > Editor and open Functions-enfold.php file and find

    'close'			=> array( 'font' =>'entypo-fontello', 'icon' => 'ue814'),

    and change it to

    'close'			=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8a5'),

    Regards,
    Yigit

    #225254

    Hey!

    You are welcome, glad we could help and glad you like Enfold :) Let us know if you have any other questions or issues

    Regards,
    Yigit

    #225251

    Thanks! It works perfectly.

    Let me tell you that Enfold theme is amazing! Especially the CMS and all the features you included with no coding effort.

    Great work.

    #225250

    Hi!

    You can try adding the code to Custom.css file inside Enfold/Css folder. I think that would be better

    Regards,
    Yigit

    #225241

    Hey pecheney!

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

    .main_color .av-masonry {
    background-color: white;
    }

    Cheers!
    Yigit

    #225240
    This reply has been marked as private.
    #225235

    In reply to: Header Grey Line

    Hey pecheney!

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

    #header_meta { box-shadow: none; }

    Best regards,
    Yigit

    #225234

    Hey evtilsley!

    Please go to wp-content\themes\enfold\config-templatebuilder\avia-shortcodes folder and open Testimonials.php file and find

    if($src)	$avatar  = "<div class='avia-testimonial-image' $markup>".wp_get_attachment_image( $src , $avatar_size , false, array('alt'=>esc_attr(strip_tags($name))))."</div>";

    and change it to

    if($src)	$avatar  = "<div class='avia-testimonial-image' $markup>". wp_get_attachment_link( $src ). "".wp_get_attachment_image( $src , $avatar_size , false, array('alt'=>esc_attr(strip_tags($name))))."</div>";

    You can request such feature here https://kriesi.at/support/topic/enfold-feature-requests/

    Cheers!
    Yigit

    #225221

    Hi!

    It seems like code is not being applied. Can you try adding the same code to Custom.css file inside Enfold/css folder?

    Cheers!
    Yigit

    #225209

    Hey Paul!

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

    #after_section_2 .content {
    padding-top: 0;
    padding-bottom: 0;
    }

    It will only effect the color section element with ID #after_section_2

    Regards,
    Yigit

    #225196

    In reply to: Style toggle titles

    Hey meridianwest!

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

    .main_color .toggler { color: #197b8c ; font-size: 15px; }

    Cheers!
    Yigit

    #225195

    Hey FeDiNo82!

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

    .fixed_header.social_header #main {
    padding-top: 119px;
    }

    Best regards,
    Yigit

    #225193
    evtilsley
    Participant

    On your page:
    http://kriesi.at/themes/enfold/shortcodes/testimonials/
    I’d like the thumbnail associated with each testimonial to link to the fillsize JPG.
    Is this possible for a future feature?

    #225190

    Hi aleicook!

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

    #top .main_color select { background-color: white; border-color: #f68b1f; }

    Best regards,
    Yigit

    #225186

    Hey!

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

    .mlp_language_box {
    float: right;
    margin-right: 7%;
    }

    Cheers!
    Yigit

    #225168

    Hi!

    That plugin is not needed with the theme. The color sections already allow for fixed background images as well as the Fullscreen slider element. You can see examples here:
    http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/
    http://kriesi.at/themes/enfold/homepage/home-v9-videos-and-parallax/

    Also just an FYI bumping pushes topics to the back of our queue and not the front since so it causes a full cycle of a delay on when we’ll see the topic.

    Best regards,
    Devin

    #225162

    Hey Dennis!

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

    p.ls-s-1 { margin-left: 30px!important; float: left!important; }

    LayerSlider is a fullwidth element and rest of the site is in a container, that is why it would require so many lines of custom CSS code to always keep the text aligned with logo on all screen sizes which we cannot provide.

    Regards,
    Yigit

    #225139

    Hallo Peter

    Danke!
    Kannst du mir noch sagen, wie ich beim ‘shopping_cart .button.checkout’ den Text ‘Bezahlvorgang/Zahlungsweisen’ in ‘Zur Kasse gehen’ abändern kann?

    Grosses Kompliment für euer Enfold-Theme. Es ist einfach genial.

    Beste Grüsse
    Stefan

    #225133

    Hey Yigit,

    Fully understood – I noticed that other Enfold customers had run into the same problem so thought it might be a simple fix that someone would know.

    I’m currently developing locally so can send you a link. I’ll keep on searching… thanks anyway!

    Stuart

Viewing 30 results - 228,031 through 228,060 (of 243,835 total)