Forum Replies Created

Viewing 30 posts - 58,291 through 58,320 (of 67,591 total)
  • Author
    Posts
  • in reply to: Problem in tablet browser #276197

    Hey odmv91!

    Thank you for visiting the support forum!

    Looks like the section on top of the color section with the parallax effect got no background. Not sure if this is going to work but please do try it on Quick CSS or custom.css:

    .avia-android .av-parallax {
    z-index: 0;
    background-size: 100% 100%;
    }
    
    .main_color, .main_color .site-background, .main_color .first-quote, .main_color .related_image_wrap, .main_color .gravatar img .main_color .hr_content, .main_color .news-thumb, .main_color .post-format-icon, .main_color .ajax_controlls a, .main_color .tweet-text.avatar_no, .main_color .toggler, .main_color .toggler.activeTitle:hover, .main_color #js_sort_items, .main_color.inner-entry, .main_color .grid-entry-title, .main_color .related-format-icon, .grid-entry .main_color .avia-arrow, .main_color .avia-gallery-big, .main_color .avia-gallery-big, .main_color .avia-gallery img, .main_color .grid-content, .main_color .av-share-box ul, #top .main_color .av-related-style-full .related-format-icon, .main_color .related_posts.av-related-style-full a:hover {
    background: #f8f8f8;
    }

    Cheers!
    Ismael

    in reply to: Problem with lightbox in woocommerce #276194

    Hey!

    Thank you for the update.

    We’re really not sure why the lightbox is behaving that way but there are script errors on the console. Please try to deactivate all plugins then test it again. Post the login details here and set it as a private reply. Is it ok if we deactivate the plugins while debugging the website?

    Cheers!
    Ismael

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

    Hey!

    Thank you for the update.

    Did you regenerate the thumbnails? Go to Tools > Regen. Thumbs. The suggestion above should prevent the theme from cropping and resizing the gallery images on the ajax portfolio.

    Regards,
    Ismael

    in reply to: Separator/Whitespace problem #276191

    Hi!

    Thank you for the update.

    They look the same because of the default margin around the horizontal rule. You can remove those with this on Quick CSS or custom.css:

    body .container_wrap .hr.avia-builder-el-last, body .container_wrap .hr.avia-builder-el-first {
    margin: 0;
    }

    Regards,
    Ismael

    in reply to: Client Friendly user interface #276190

    Hey KK!

    Thank you for using the support forum!

    Can you please elaborate a little bit? I don’t think there are any plugins available that can simplify the Enfold’s theme options. You need to manually edit the theme code in order to modify the theme options. Unfortunately, this is beyond the scope of support.

    Regards,
    Ismael

    in reply to: Make bolded text black color (instead of theme color) #276188

    Hey!

    That’s alright. If you have any questions, let us know. Note that you can also use the Quick CSS field in order to modify some of the theme’s elements. For example:

    strong {
    color: black;
    }

    Cheers!
    Ismael

    in reply to: Main menu, color background on one item #276187

    Hi Emmanuelppp!

    Thank you for using the theme!

    You can start with this, just change the menu item id:

    li#menu-item-3018 a {
    background: red;
    height: 30px !important;
    line-height: 30px !important;
    color: white;
    margin-top: 30px;
    }
    
    .header-scrolled li#menu-item-3018 a {
    margin-top: 8px;
    }

    Change the 3018 id. You need to play around with the top margin if you set a different header height.

    Best regards,
    Ismael

    in reply to: Changing font sizes and case #276185

    Hey!

    Alright. Please use this:

    .template-page .entry-content-wrapper h2 {
    text-transform: none;
    }

    For h1 tags, this will work:

    .template-page .entry-content-wrapper h1 {
    text-transform: none;
    }

    Regards,
    Ismael

    in reply to: Related posts #276184

    Hey!

    @Emmanuel: Thanks for helping out!


    @boldtranquility
    : Emmanuel is right, you need to add tags on posts if you want the related posts section to show.

    Regards,
    Ismael

    in reply to: Problem With Images #276182

    Hi raveon!

    Thank you for using the theme!

    The Add Media button should be working. Please post the website url here, we would like to check it. Make sure that you’re running Enfold 2.8.1 with WordPress 3.9 or higher. You can right align an image by adding the alignright class or selector attribute. Another thing that you can do is to add column layout, for example, add 3 1/3 column layout. Add the image element on the last or 3rd 1/3 column to position the image or align it to the right.

    Regards,
    Ismael

    in reply to: HTML bug in Customize > Navigation #276181

    Hey Chris!

    Thank you for your visiting the support forum!

    It doesn’t seem to be happening on our end when I check one of our installation with a child theme. Do you have the latest version of Enfold?

    Best regards,
    Ismael

    in reply to: Secondary Menu #276179

    Hey BootsD!

    Thank you for using the theme!

    1.) You can use this to modify the secondary menu:

    .header_color .sub_menu>ul>li>a {
    color: blue;
    }

    2.) The sliders inherit the size of the container. We don’t recommend applying a specific width or height for the sliders because it might break the responsive nature of the theme.

    3.) I tested the site on IE9 and 10 but I don’t see the logo blurring. On what version of IE are you testing this?

    4.) Are you using a third party plugin? Note that we don’t provide support for third party plugins. Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Width of menu #276178

    Hey musklick!

    Thank you for using the theme!

    What is the position of your menu? It’s not a good idea to define a specific width because it might break the responsiveness of the menu section. If you can provide us with a screenshot of what you’re trying to achieve with the menu, that will help a lot.

    Best regards,
    Ismael

    in reply to: Add rel="nofollow" on button links #276177

    Hi JBMKL!

    Thank you for using the theme!

    Edit js > avia.js, find this code on line 7:

    var aviabodyclasses = AviaBrowserDetection('html');
    

    Below, add this code:

    $('a.avia-button').attr('rel', 'nofollow');
    

    Cheers!
    Ismael

    in reply to: Sticky Header on standard android 4.3. browser #276033

    Hi!

    Thank you for the update.

    I’m not sure if this is going to work but please try to add this on Quick CSS or custom.css:

    .html_header_top.html_header_sticky.avia-android #header, .header_color .header_bg {
    background: #ffffff;
    }

    Cheers!
    Ismael

    in reply to: Appearance issues #276030

    Hi!

    Oh I see. Please try to add the following on Quick CSS or custom.css. This is for the logo images right before the footer:

    .avia-msie .slide-entry-excerpt img {
    max-height: 140px;
    height: 140px;
    }

    Try this to fix the layer slider images:

    html * .ls-wp-container .ls-slide > *, body * .ls-wp-container .ls-slide > *, #ls-global * .ls-wp-container .ls-slide > * {
    -ms-interpolation-mode: bicubic; 
    }

    And for the submenu container:

    .avia-msie #top #header .avia_mega_div > .sub-menu {
    display: table;
    min-height: 238px;
    display: block;
    }

    Best regards,
    Ismael

    Hey!

    Thank you for the update.

    Please use add this css to adjust the height of the custom content when you scroll down the page:

    .header-scrolled div.custom_content img {
    height: 79px;
    }

    Best regards,
    Ismael

    in reply to: iPad formatting issue #276025

    Hi!

    Thank you for using the update.

    I checked the website again and the logo is not overlapping the menu on iPad portrait view. It has a left margin. Did you add that? If possible, please post a screenshot of what you’re trying to do. If you simply want to move the logo position to the left, remove the margin-left property that you added for the .logo, .logo a, .logo a img selectors.

    Cheers!
    Ismael

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

    Hi!

    Thank you the screenshot.

    Is it ok if you use the alternative text field in place of the caption? What will happen is, you have to place the caption on the Alternative Text field. Edit loop-index.php then replace Dude’s changes with this:

    $attachments = get_post(get_post_thumbnail_id());
    		$caption = $attachments->post_excerpt;
    		$description = $attachments->post_content;
    
    		$featured_img_desc = $description;
    		if($slider) $slider = '<a data-type="'.$caption.'" class="post-attachment-caption" href="'.$link.'" title="'.$featured_img_desc.'">'.$slider.'</a>';
    

    Cheers!
    Ismael

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

    Hey!

    Thank you for the info.

    I tried to login but I think the credentials are incorrect. Please check.

    Best regards,
    Ismael

    in reply to: tab load delay and accordion slideDown speed #276021

    Hey!

    Thank you for the update.

    I tested Dude’s code on my end and it does slow down the opening speed of the accordion toggles. Make sure that you added the css snippet. Try to set the value to 10000 and you’ll see how slow the toggle will open. If possible, remove browser cache before testing the toggle.

    Best regards,
    Ismael

    in reply to: Promobox Hintergrund semitransparent #276019

    Hey!

    Thank you for the update.

    I’m sorry but we won’t be able you to help unless we can see the site live. Just to make sure, I’ll ask Dude to check the thread. Maybe I didn’t fully understand your inquiry. Please wait for his response.

    Best regards,
    Ismael

    Hi!

    Thank you for the info.

    Looks like we need to wait until Safari got better support for the webkit-transform property or you can disable the effect for Safari with this on Quick CSS or custom.css:

    .safari .avia-fullscreen-slider .avia-slideshow-inner {
    -webkit-transform: translate3d(0px, 0px, 0px) !important;
    }

    Before adding the code above, edit header.php then find this code on line 61:

    <body id="top" <?php body_class($style." ".$avia_config['font_stack']." ".$blank); avia_markup_helper(array('context' => 'body')); ?>>
    

    Replace it with:

    <body id="top" <?php $browser = avia_get_browser(); body_class($style." ".$avia_config['font_stack']." ".$blank.$browser); avia_markup_helper(array('context' => 'body'));?>>
    

    Regards,
    Ismael

    Hey!

    Thank you for the info.

    The social plugin buttons are inside the one third flex column, maybe you added it manually on the page. Please check the page then remove the columns. Try to remove the default horizontal margin with this on Quick CSS:

    body .container_wrap .hr.avia-builder-el-last, body .container_wrap .hr.avia-builder-el-first {
    margin: 0;
    }

    Cheers!
    Ismael

    in reply to: Menu width #276014

    Hey!

    Thank you for the update.

    Please use this on Quick CSS or custom.css to move the top position of the main menu. If possible, please create a test page of our suggestion regarding the sidebar.

    .html_header_top.html_bottom_nav_header .main_menu {
    position: relative;
    top: 20px;
    }

    Cheers!
    Ismael

    in reply to: Logo in smartphones #276013

    Hey!

    Thank you for the update.

    Please add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    margin: 0 auto;
    max-width: 90%;
    height: 75px !important;
    max-height: 75px !important;
    }
    
    .responsive.html_header_top #header_main .social_bookmarks {
    margin-top: 0;
    display: block;
    position: relative;
    width: 100%;
    clear: both;
    right: 0;
    }
    
    #advanced_menu_toggle, #advanced_menu_hide {
    top: 35%;
    }
    }

    Best regards,
    Ismael

    in reply to: easy slider title caption caption text to the right #276011

    Hi smorrone!

    Thank you for using the theme.

    You can add this code on the Quick CSS field or custom.css file to move the caption to the right of the slider:

    .avia-caption {
    bottom: 17px;
    right: 17px;
    }

    The slider inherits the size of the container. This is what makes the slider responsive, so we wouldn’t recommend adding a specific width and height to it. If you really need to change the size, please use this css code:

    .avia-slideshow {
    width: 50%;
    }

    Cheers!
    Ismael

    Hi!

    Glad we could help. Let us know if you need anything else.

    Regards,
    Ismael

    in reply to: Columns not collapsing #275655

    Hey!

    Thank you for the update.

    Did you modify anything on the theme files? Please try to add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
    div .av_one_fourth {
    margin-left: 1%;
    width: 48.5%;
    }
    }

    Cheers!
    Ismael

    in reply to: Enfold Showcase #275649
Viewing 30 posts - 58,291 through 58,320 (of 67,591 total)