Forum Replies Created

Viewing 30 posts - 59,521 through 59,550 (of 67,572 total)
  • Author
    Posts
  • in reply to: Gallery single image to display additional author field #249546

    Hey motylanogha!

    Thank you for using the theme!

    Unfortunately, this is beyond the scope of support as stated on support policy and is not a theme related issue. You might need to investigate the feature yourself, find a plugin or hire a freelance developer to add the feature for you. Please do visit Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Regards,
    Ismael

    Hi xyzb!

    Thank you for using support forum!

    In my opinion this is not really a big deal as long as you can see the content on mobile devices with 320px screen width. Please try to add this on Quick CSS or custom.css:

    @media all screen and (max-width: 380px) {
      .responsive .container {
        width: 300px;
        margin: 0 auto;
      }
    }

    This will force the container to resize to 300px on devices with 380px screen width or less.

    Regards,
    Ismael

    in reply to: Add featured image to search results #249161

    Hey!

    Thank you for using the theme!

    Please edit includes > loop-search.php, find this code on line 33:

    echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";
    

    Replace it with:

    $searchthumb = get_the_post_thumbnail( $the_id, 'large' );
                    echo "<span class='search-result-counter {$counterclass}'>{$searchthumb}</span>";
    

    Add this on Quick CSS or custom.css:

    .search-result-counter {
        padding: 0;
    }
    
    .search-result-counter img {
    	width: 100%;
    	height: 100%;
    	border-radius: 100px;
    }

    This will add the featured image on the search counter. You can change the style using the selectors above.

    Cheers!
    Ismael

    in reply to: Change order of sort buttons in sortable masonry #249154

    Hey Adenadoume!

    Thank you for using the theme!

    Please try this plugin: http://wordpress.org/plugins/taxonomy-terms-order/

    I hope that helps.

    Best regards,
    Ismael

    in reply to: Issue with WPML #249152

    Hi IsaJourdain!

    Thank you for using the support forum!

    What do you mean by the “English page comes into French”? Do you mind posting screenshot of the issue or list the steps that you did on translating the page. Note that you need to set the theme options for both language when using the WPML for Enfold.

    Regards,
    Ismael

    in reply to: Menu Bug after Update ! #249143

    Hi!


    @Heathcliffe
    : I think the issue is about something else but it’s always good to help out. Thank you so much.


    @Martin
    : Unfortunately, we really need to see the actual website with the issue live. I think the problem is that the base.css hasn’t been fully updated when you update the theme. Please update the theme then we’ll check it.

    Cheers!
    Ismael

    in reply to: Change transparency level #249141

    Hey glozemedia!

    Thank you for using the theme and the link.

    You can add something like this on Quick CSS or custom.css:

    #top .av_header_transparency .header_bg {
    background-color: rgba(255,255,255,.3);
    }

    Change the color value. .3 is the transparency or opacity.

    Regards,
    Ismael

    in reply to: Menu problem iPad landscape #249140

    Hey!

    Thank you for using the theme!

    Please go to Enfold > Header > Mobile Menu > Header Mobile Menu activation. Select the Activate for Smartphones and Tablets (browser width bellow 990px) option. This will force the mobile menu to show on iPad landscape mode.

    If you added a css code that looks like this on custom.css or Quick CSS, please remove it:

    @media only screen and (max-width: 990px) {
    .responsive #header .main_menu ul {
    display: none;
    }
    }
    
    @media only screen and (max-width: 990px) {
    .mobile_active #advanced_menu_toggle {
    display: block;
    }
    }

    Best regards,
    Ismael

    in reply to: change excerpt length of blog #249137

    Hi!

    Thank you for using the theme!

    You can add this on functions.php, at the bottom:

    add_filter('avf_masonry_excerpt_length','avia_change_masonry_excerpt_length', 10, 1);
    function avia_change_masonry_excerpt_length($length)
    {
       $length = 100;
       return $length;
    }

    Change the $length value to something else. Default is 60. You also use the <!–more–> tag or specify the excerpt on Screen Options > Excerpt metabox.

    Regards,
    Ismael

    in reply to: Masonry grid Hides Sidebar #249096

    Hey johnwasneverhere!

    I’m sorry but you’re not using an Enfold theme. Are you sure that this is the correct link? :)

    Cheers!
    Ismael

    in reply to: Blog Layout Issues #249091

    Hey benjjamieson!

    Thank you for using the support forum.

    I’m sorry but at this moment, I’m not entirely certain of the issue based on the information you have given in your post. The pages look ok when I visit the link you provided. If you wouldn’t mind providing us with a little more clarification about the issue (a screenshot perhaps), we’ll be happy to provide you with a response once we have a better understanding of the problem.

    Note that you can change the single post style on Enfold > Single Post Style. You can also override the settings for title, sidebar, footer and transparency on each posts.

    Regards,
    Ismael

    in reply to: Icon colours #249087

    Hi!

    Thank you for using the theme!

    I’m not sure why Yigit said that, maybe he got a better idea. I’ll ask him. Please wait for his response. You can do the ones suggested above if you want to start immediately. The custom css class can help you separate each iconbox and apply different backgrounds.

    Best regards,
    Ismael

    in reply to: woocommerce title bar: change "Shop" #249085

    Hey!

    Glad we could help. If you have any questions, let us know. :)

    Regards,
    Ismael

    in reply to: Masonry Portfolio => less then full width #249081

    Hi hookedonweb!

    Thank you for using the theme!

    You’re doing the right thing just remove the css code for the .av-masonry-entry selector. Look for the boxed width on css > grid.css. Locate any instance of .boxed#top under each media queries then apply the same width on the .av-masonry-container selector.

    I hope that helps.

    Best regards,
    Ismael

    in reply to: logo issues #249076

    Hey Diggetydog!

    Thank you for using the support forum!

    Please change the option on Enfold > Header > Mobile > Menu > Header Mobile Menu Activation, set it to Activate for Smartphones and Tablets (browser width bellow 990px). If you don’t mind, we would like to ask for a screenshot of what you’re seeing on your end when viewing on mobile device. We will be happy to provide you with a response after.

    Regards,
    Ismael

    Hey jtree5757!

    Thank you for using the support forum!

    The video background has been disabled on mobile devices. You should add a fallback image for every video background. You can remove the play button that you added on mobile device with this:

    @media only screen and (max-width: 767px) {
    #av_section_1 > div.container > main > div > div > span.av_font_icon.avia_animate_when_visible.av-icon-style-.avia-icon-pos-center.avia_start_animation.avia_start_delayed_animation {
    display: none !important;
    opacity: 0 !important;
    }
    }

    I’m sorry but what you’re asking is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. Please do visit Werkpress for further customization or vote for the feature on our Feature Requests page.

    If you have any further questions about the theme, we are more than happy to help.

    Regards,
    Ismael

    in reply to: Custom Width Question for one page only #249064

    Hey noelb55!

    Thank you for using the support forum!

    The width of the color section will depend on the browser width so instead of using the color section, you should probably add the an image element on top of the content. You can increase the width of the container but unfortunately, this is beyond the scope of support and is not a theme related issue. Please do visit Werkpress for further customization. You can start by changing the container width on Quick CSS or custom.css:

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

    After that you’ll need to edit the grid units width on css > grid.css.

    Regards,
    Ismael

    in reply to: Error 404 – page not found #249057

    Hi memodemo!

    Thank you for using the support forum!

    You can edit the 404 page on includes > error404.php file. I hope that helps.

    Best regards,
    Ismael

    in reply to: Feature Images showing. #249053

    Hi dsharpe!

    Thank you for using the support forum!

    You can remove the featured image on an article by using this on Quick CSS or custom.css:

    .single .big-preview.single-big {
    display: none !important;
    opacity: 0 !important;
    }

    Regards,
    Ismael

    in reply to: Remove title showing when mouse over #249046

    Hey!

    Thank you for the screenshot.

    If you don’t mind, we would like to check the actual page where you want to remove the title hover. Please post it here as a private reply. We will provide you with a response once we have a better understanding of the issue.

    Cheers!
    Ismael

    in reply to: Google map disappears #249043

    Hey designing!

    Thank you for using the support forum.

    I’m sorry but at this moment, I’m not entirely certain of the issue based on the information you have given in your post. If you wouldn’t mind providing us a link to the website and a little more clarification about the issue (a screenshot perhaps), we’ll be happy to provide you with a response once we have a better understanding of the problem.

    Cheers!
    Ismael

    in reply to: Iconfont Not Working #249040

    Hey LecheLMP!

    Thank you for using the support forum!

    I checked the website on Chrome Windows 8 and I can see the font icons. If this is happening on Firefox and IE, please refer to this link: http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems

    Best regards,
    Ismael

    in reply to: Portfolio image height #249035

    Hi!

    Thank you for using the support forum!

    Edit the code on functions.php:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    

    Replace it with:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>400, 'crop' => false);		                 // big images for blog and page entries
    

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

    Let us know if it works. If not, please give us a link to the actual portfolio item where you test it.

    Best regards,
    Ismael

    in reply to: Issues with Blogroll on a client site #249030

    Hi!

    Thank you for using the support forum!

    Please add this on Quick CSS or custom.css:

    .post {
    clear: both;
    float: none;
    }

    I hope that helps.

    Cheers!
    Ismael

    in reply to: Stop movement of the title #249029

    Hi eymata!

    Thank you for using the support forum.

    I’m sorry but at this moment, I’m not entirely certain of the issue based on the information you have given in your post. Which title are you trying to stop from moving? If you wouldn’t mind providing us with a little more clarification about the issue (a screenshot perhaps), we’ll be happy to provide you with a response once we have a better understanding of the problem.

    Regards,
    Ismael

    in reply to: Centered logo and navigation #249028

    Hey nnn666nnn!

    Thank you for using the support forum!

    Please go to Enfold > Header > Header Layout > Menu and Logo Position. Select the Logo Center, Menu below option. I hope that helps.

    Best regards,
    Ismael

    in reply to: Logo cut off and mobile menu #249026

    Hi!

    The codes above should fix the issue on mobile. Please try this:

    @media all and (max-width: 767px) {
    .responsive .logo {
    height: 50px;
    }
    }
    

    This is the screenshot after the css modification.

    Regards,
    Ismael

    in reply to: Issues with Updating Sliders #249023

    Hi!

    Thank you for the login details.

    Which type of slider are you using? I created a test page then added the Easy Slider which works fine when I updated it. If you can give us a little more clarification of the issue, we’ll be happy to provide you with a response. This is the test page that I created: http://sppaone.com/?page_id=2990#next

    Regards,
    Ismael

    in reply to: Make layer on LayerSlider, responsive to full width. #249021

    Hey themeforesttony!

    Thank you for using the support forum and the kinds words.

    Edit the layer with the image then go to the Styles panel. On Layouts & Position > Width option set it to 100% to make it fullwidth.

    Best regards,
    Ismael

    in reply to: forums border not displaying as shown in demo #249018

    Hey lasry02!

    Thank for using the support forum!

    That is a custom style Kriesi created for the demo page. You can add something like this on Quick CSS or custom.css:

    .avia_transform .bbp-replies .bbp-reply-author::before, .avia_transform .forum-search .bbp-reply-author::before, .avia_transform .forum-search .bbp-topic-author::before {
    width: 14px;
    height: 14px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 25px;
    z-index: 100;
    content: "";
    left: 98px;
    border-left-style: solid;
    border-bottom-style: solid;
    border-left-width: 1px;
    border-bottom-width: 1px;
    }
    
    div.bbp-reply-content {
    min-height: 68px;
    text-align: left;
    overflow: hidden;
    border-radius: 2px;
    padding: 7px 20px;
    border-style: solid;
    border-width: 1px;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    }

    I hope that helps.

    Best regards,
    Ismael

Viewing 30 posts - 59,521 through 59,550 (of 67,572 total)