Forum Replies Created

Viewing 30 posts - 57,931 through 57,960 (of 67,191 total)
  • Author
    Posts
  • in reply to: updates / edits are ignored #275459

    Hi!

    Thank you for the access.

    I created a test page and added a bunch of text blocks. I even added the media player code that you place on a text block. Updated the page a few times and it’s working. http://mara-events.de/cms/test-page/

    Please try to test it on another browser and computer. If I am not mistaken, you’re having problem with the audio player. Please use an audio or playlist plugin instead of copying the whole code on a text block. Remove the inline styling to fix the audio player issue.

    Cheers!
    Ismael

    in reply to: Problem with portfolio #275456

    Hey datacom!

    Thank you for the info.

    Please remove the custom css that you added. Edit the portfolio grid element then look for the Portfolio Grid Image Size, choose the second option to manually select the thumbnail size. Select the “No Scaling” thumbnail size.

    Regards,
    Ismael

    in reply to: White opacity transition layerslider #275453

    Hi egraphique!

    Thank you for using the theme!

    Please try this on Quick CSS or custom.css.

    .survolslide {
    transition: opacity 0.5s ease;
    opacity: 0;
    }
    
    .survolslide: hover {
    opacity: 0.7;
    }

    Best regards,
    Ismael

    in reply to: menu images #275450

    Hi eyal!

    Thank you for visiting the support forum!

    You can add html codes on the menu label. Go to Appearance > Menus panel then edit a menu. Look for the Navigation Label, add something like this:

    <img src="IMAGE URL HERE">MENU ITEM LABEL
    

    Best regards,
    Ismael

    in reply to: Diverse Fragen zum Theme Enfold #275449

    Hey Tetratus4!

    Thank you for visiting the support forum!

    Looks like the first two issues has to do with the theme not being the latest version. If you don’t mind, please post the website url here so that we can inspect it. Make sure that you’re running Enfold 2.8.1 on WordPress 3.9 or higher. Regarding the contact form, yes, that is possible. Please create a page then insert the contact form element under the content element panel. If you want a more extensive forms, you can try the contact form 7 and Gravity Forms plugins.

    4.) You can’t switch between the Default Editor and the Advance Layout Builder. If you want to see the actual shortcode below the advance layout builder, edit functions.php and find this code on line 16:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will be able to see the actual shortcode below the builder. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Best regards,
    Ismael

    in reply to: *ger* Beschreibung eines Bildes unter der Lightbox #275447

    Hey kultblendecom!

    First of all, thank you for using the theme!

    If you don’t mind, we would like to see an actual page with the image. If I am not mistaken, you want to remove the description below the lightbox image? I’m sorry if that is not the case because I’m only using google translate to read your language. If you want to remove the description, just add this on Quick CSS or custom.css:

    p.pp_description {
    display: none !important;
    }

    Regards,
    Ismael

    Hey cfrushour!

    Thank you for using the theme!

    First of all, please make sure that you’re running WP 3.9 plus the latest version of the theme 2.8.1. Post the website url here so that we can inspect it. Please try the fix on .htaccess provided on this link: http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems

    If you’re using CDN, please ask your CDN provider to exclude the fontello fonts suffixes .eot,.woff, .ttf and .svg file type from cache.

    Best regards,
    Ismael

    Hey!

    Alright. We’ll keep this thread open. Let us know if using the migrate plugin works.

    Best regards,
    Ismael

    in reply to: How to get Vertical Gallery for portfolio Items #275444

    Hi Eve!

    Thank you for using the theme!

    Before doing this, please test it on a dummy site. First, edit functions.php, find this code on line 98:

    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    

    Replace it with:

    $avia_config['imgSize']['gallery'] 		 		= array('width'=>9999, 'height'=>9999, 'crop'=>false );						// images for portfolio entries (2,3 column)
    

    This will make sure that the theme will not crop the images and accept all proportions. After that, add this on Quick CSS or custom.css:

    #top .portfolio-preview-image .avia-gallery img {
    float: none;
    padding: 7px !important;
    width: auto;
    display: inline-block;
    }
    
    #top .portfolio-preview-image .avia-gallery .avia-gallery-big-inner {
    text-align: center;
    }

    Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    Hey roemer!

    Thank you for using the theme.

    I checked the website and the sidebar images but they are all linked on http://www.hil-gmbh.at, the homepage, so I’m not really sure if clicking on it the first time is working or not. Do you mind creating a test page with the same sidebar image widgets but different links? What I noticed is that the overlay effect is not working the first time you hover over the images. Just to be sure, please download the latest version 2.8.1 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Ismael

    Hi jengraph!

    Thank you for visiting the support forum!

    The header layout that you’re trying to achieve is a bit complicated and is really not responsive friendly. You might want to consider removing the header background on mobile devices specially on iPhone. The text at the bottom will be stretched beyond recognition when viewing on small screens. Please try to add this on Quick CSS or custom.css to resize the background image on smaller screens:

    @media (min-width: 640px) and (max-width: 980px) {
    body .header_color .header_bg {
    height: 116px;
    margin-top: 140px !important;
    background-size: 100% 100% !important;
    }
    }
    
    @media (max-width: 639px) {
    body .header_color .header_bg {
    height: 80px;
    margin-top: 128px !important;
    background-size: 100% 100% !important;
    }
    }

    If you want to remove the header background on smaller screens, please use this:

    @media (max-width: 768px) {
    .header_color .header_bg, .header_color {
    background: #ffffff;
    background-color: #ffffff;
    }
    }

    Cheers!
    Ismael

    in reply to: Enfold Showcase #275437

    Hey!


    @loyalzoo
    : Nice app combined with an awesome website. Mind sharing the snippet to pause the video while scrolling? :)

    Regards,
    Ismael

    Hi!

    Thank you for the update.

    I don’t know if this is going to help but the two pages Privacy Matters and Security Matters is not set up with the same layout. The title or text block “Privacy Matters” is inside the a column layout while the title “Security Matters” is not. There is also an inline style on both title but they’re not the same. This is for the Privacy Matters page:

    <p style="text-align: left; font-size: 50px; color: #adadad; font-weight: 600;">Privacy Matters</p>
    

    This is for the Security Matters page:

    <p style="text-align: left; font-size: 50px; color: #adadad; font-weight: 600; line-height: 120%;">Security Matters</p>
    

    The difference is the line-height property. My point here is, there’s nothing wrong with the hr element but the way you set up the page.

    Regards,
    Ismael

    Hey!

    Thank you for the update.

    If you’re using a child theme, copy the sidebar.php on the child theme folder then do the modifications there.

    Regards,
    Ismael

    in reply to: General tweaks #275432

    Hi!

    Thank you for the update.

    Yes, I can see it now. I’ve the changed the second slide’s link to http://79.170.44.148/phoenixperformancecentre.co.uk/group-training/. Please check: http://79.170.44.148/phoenixperformancecentre.co.uk

    Regards,
    Ismael

    in reply to: Widget Navigation im Footerbereich #275431

    Hey opareklov!

    Thank you for using the theme!

    First, please set the footer column on Enfold > Footer Layout to 1 or 2. Add this on Quick CSS or custom.css to position the widget menu side by side.

    #top .widget_nav_menu li {
    clear: none !important;
    display: inline-block;
    float: none;
    width: auto;
    padding: 0 10px;
    margin: 0;
    left: 0;
    }

    Regards,
    Ismael

    in reply to: WMPL Multilanguage – Flags and switcher #275426

    Hi dalboslampen!

    Thank you for visiting the support forum!

    Please add this on Quick CSS or custom.css if you want to remove the default language flags:

    li.language_nb.avia_current_lang, li.language_nb.avia_current_lang + li {
    display: none;
    }

    Best regards,
    Ismael

    in reply to: Enfold mobile display logo and secondary menu issues #275424

    Hey!

    Thank you for the update. Please refrain from bumping the thread. It will only move the post below the queue.

    First, please try my suggestion and remove Yigit’s and Dude’s code. If that doesn’t work, remove my code then add Dude’s. The suggestion should center align the secondary menu then move the phone number below.

    Regards,
    Ismael

    in reply to: Menu width #275422

    Hey!

    Thank you for the update.

    The code is working on our end. What is the Menu and Logo Position of your current site? I can’t see it because the website is on maintenance mode. If possible, please post a screenshot of what you’re trying to do. Regarding the color section, the element is meant to be always full width. What you can do is to set the page’s layout to No Sidebar then add 3/4 and 1/4 column layout on top of the color section. Add the content on the 3/4 column and the Widget Area element on the 1/4 column to act as sidebar.

    Regards,
    Ismael

    Hey!

    Thank you for the update.

    I think adding a color section on the header will break the layout of the site. Please try to edit helper-main-menu.php, find this code on line 141:

    <!-- end container_wrap-->
    

    At the bottom, add this:

    <div class="header_bottom">Draw Outside The Lines</div>
    

    Edit Quick CSS then add this css code:

    div.header_bottom {
    background: #dc2d68;
    display: block;
    width: 100%;
    height: 30px;
    z-index: 1000;
    position: relative;
    text-align: center;
    padding-top: 5px;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    }

    Regards,
    Ismael

    in reply to: Promobox Hintergrund semitransparent #275418

    Hi hermelina!

    Thank you for using the theme!

    If you don’t mind, we would like to see the actual page with the promobox. We’ll provide you with the css snippet once we have taken a look at the page.

    Regards,
    Ismael

    in reply to: Social Header Special Email Popup #274968

    Hey lovetyh!

    Thank you for visiting the support forum!

    You can try to utilize the prettyPhoto lightbox’s inline content feature or find a plugin on the wordpress plugin directory . Please refer to this link for more info: http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/

    Regards,
    Ismael

    in reply to: LayerSlider First Image is Black (Not Showing) #274967

    Hey thehijinx!

    Thank you for using the theme!

    I checked the website and the layer slider is working properly. First slide is “Our Products and Services” with the huge truck as background, is that correct?

    Best regards,
    Ismael

    in reply to: Icon Box Fixed Height #274965

    Hey lovetyh!

    As always, thank you for using the theme!

    You can use the body page id to modify elements on a specific page. In order to find the current page id, you can use firebug or google chrome’s inspect element. Look for the body class id. It looks something like this:

    On the example above, the page id is page-id-734. Use that along with the object’s selector that you’re trying to modify. Something like this:

    .page-id-734 .iconbox_top .iconbox_content { min-height: 220px; }
    

    I hope this helps.

    Cheers!
    Ismael

    in reply to: Color sections aren't displaying full-width #274961

    Hi!

    Thank you for the info.

    We’re really not sure why the color section on the pagehttp://amusementux.com/color-section-test-all/ doesn’t render properly like the ones on http://amusementux.com/color-section-test-nested/ and http://amusementux.com/color-section-test/. Did you modify anything on the theme files? If possible, please post the ftp details here and set it as a private reply. I’ll ask Kriesi and Dude to check the thread.

    You can vote or post the ALB feature on the Feature Requests page.

    Cheers!
    Ismael

    in reply to: Help with Breadcrumbs to show 3rd dropdown menu #274954

    Hey blizzmarketing!

    Thank you for visiting the support forum!

    First of all, you’re using a very old version of the theme, 2.4.5. The fix provided might not work. Please download the latest version 2.8.1 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

    Hey!

    Thank you for the access.

    Regretfully, the login details are incorrect. Please check. The do_shortcode function is not working because you’re using apostrophe instead of quotation marks. Please use this:

    echo do_shortcode("[av_section color='main_color' custom_bg='#dc2d68' src='' attachment='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' min_height='' padding='no-padding' shadow='no-border-styling' id=''][/av_section]");
    

    Regards,
    Ismael

    Hi!

    Thank you for the link.

    Please add this on Quick CSS or custom.css to move the phone number below the flags:

    @media only screen and (max-width: 767px) {
    .responsive .phone-info {
    margin-top: 30px;
    }
    }

    Regards,
    Ismael

    in reply to: Lightbox images not expanding to full size #274948

    Hi envapk2!

    Thank you for using the theme!

    Please try to change the thumbnail size settings on Settings > Media > Large size. Set the width and height to 9999 then regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: Rookie needs help #274946

    Hi!

    Thank you for the update.

    Please post a link to the actual page with the layer slider. Refer to this link for more info about the layer slider: http://www.youtube.com/playlist?list=PLOwPTOEVVjq746keXleor1YOsB6LYQi7r

    Cheers!
    Ismael

Viewing 30 posts - 57,931 through 57,960 (of 67,191 total)