Forum Replies Created

Viewing 30 posts - 60,451 through 60,480 (of 67,534 total)
  • Author
    Posts
  • Hey anton123!

    Can you please give us a screenshot of what you’re trying to do?

    Enfold doesn’t have option for retina display. The technique is to use image with twice the size as needed then resize it in half using css. So for example you have a 100x100px image with selector id “awesome-image”, you can add this on Quick CS or custom.css:

    #awesome-image {
    width: 50px;
    height: 50px;
    }

    The image displayed will have a size of 50x50px but the actual size of the image that is use is 100x100px. The image will still look crisp on retina display. You can also use this plugin: http://wordpress.org/plugins/wp-retina-2x/

    Regards,
    Ismael

    in reply to: Separating groups of posts when using post nav #233822

    Hi!

    Are you planning to have two posts only? Maybe, you can hide the previous navigation. Add this on Quick CSS:

    .avia-post-prev {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: Deutsche Sprache aktivieren #233819

    Hi Piepmatz!

    Can you please give us a link to the website? Please wait for Dude to respond.

    Regards,
    Ismael

    in reply to: Inaccurate bounce rate? #233815

    Hey!

    No, that is not possible. Enfold is using shortcodes to display elements within a SINGLE page. It doesn’t have any resource or function to load two pages at the same time. Please ask the google forum or community about this. They can give you better explanations why the bounce rate decrease on so many levels.

    Regards,
    Ismael

    in reply to: Oupss: i've lost my subheader #233809

    Hey!

    Can you please deactivate the AddThis toolbox plugin? Deactivate all plugins if possible. Check the blog page again. Make sure that the subheader display is enabled.

    Cheers!
    Ismael

    in reply to: Enfold fixed header #233802

    Hi spirit1977!

    Thank you for using the theme. I hope you’re doing great. Use this instead:

    #header_main .container, .logo img, .logo a {
    height: 88px !important;
    line-height: 88px !important;
    max-height: none !important;
    }
    
    .header_color .main_menu ul:first-child > li > a {
    height: 88px !important;
    line-height: 88px !important;
    }

    Regards,
    Ismael

    in reply to: Adding php code to header #233796

    Hi!

    Please edit header.php, find this code on line 123:

    if($phone) echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>";
    

    Below, add this code:

    echo do_shortcode('[google-translator]'); 
    

    Add this on Quick CSS or custom.css:

    #google_language_translator {
    position: absolute;
    right: 250px;
    }
    

    Regards,
    Ismael

    in reply to: Olark Widget Text Boxes #233791

    Hi Jonathan!

    You can just add the code on Quick CSS or custom.css:

    #top textarea { 
    min-height: 30px; 
    line-height: .5em; 
    } 

    Please give us a link to the page with the plugin. A screenshot of the issue will help.

    Cheers!
    Ismael

    in reply to: How to highlight the actual menu page #233785

    Hey!

    Please give us a link to the actual website. Add !important on the css values:

    .main_menu ul:first-child > li a {
    line-height: 40px !important
    height: 40px !important;
    }

    Best regards,
    Ismael

    in reply to: Header with social icons resized but jumps sometimes #233783

    Hi!

    I’m sorry but I don’t see the jump on the header menu. My internet connection is not that fast and I don’t see the “jump” issue on every page. You can improve the loading speed by using cache and minify plugins. Suggested plugins are:

    http://wordpress.org/plugins/w3-total-cache/
    http://wordpress.org/plugins/bwp-minify/

    Cheers!
    Ismael

    in reply to: Forum vs forum. They bring me to different pages. #233772

    Hi!

    I already set the sidebar on Enfold > Sidebar > Sidebar on Single Post Pages to “right sidebar”. This will enable the sidebar for forum pages or technically forum posts.

    Cheers!
    Ismael

    in reply to: Layout Sections Background Colour #233637

    Hi!

    Sorry `bout that. You can add a color section then add a unique id on “For Developers: Section ID” field. Add “awesome-section” for example, use this on Quick CSS or custom.css to apply a white background inside the color section’s container.

    #awesome-section .container  {
    background: white;
    padding: 15px;
    margin-top: 20px;
    }

    In order to achieve the same look as the screenshot, you can insert two 1/2 column layouts inside the color section then insert the Image element on the first one and the text block on the other. Add another text block under the image element for the name, phone number, social icons etc.

    Best regards,
    Ismael

    in reply to: Fullwidth Masonry Gallery: Automatic Placement Problem #233633

    Hey!

    You can use imgur or clipular to post a screenshot here. I tried to resize the browser to increase the browser resolution and the masonry gallery adjust properly.

    Cheers!
    Ismael

    in reply to: Lizenzfrage #233632

    Hi set_carsten!

    I’ll ask Dude to answer this. AFAIK you need to buy a new license for the second website that you’re going to build. Regular license only grants you permission to sell the end product on a single client only.

    Regards,
    Ismael

    in reply to: Portfolio thumbnail #233631

    Hi evgeniac!

    Thank you for the question. I hope all is well with you today.

    Please edit functions.php, find this code on line 97:

    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    

    Replace it with:

    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>210 );						// images for portfolio 4 columns
    

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

    Best regards,
    Ismael

    in reply to: Make my logo larger within a Fixed Header #233630

    Hey Kimberlyjo!

    Please post the login details here. Post a screenshot of how you want it to look like. You can use imgur or clipular. Upload the logo image again then select the large size before you click the “Insert image as logo” button. The current size of the logo on your website is small.

    Regards,
    Ismael

    Hi!

    Please deactivate the plugin then use this filter instead if you want to add google fonts on Enfold > Styling > Heading font or Body font:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Oswald'] = 'Oswald';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Oswald'] = 'Oswald';
    return $fonts;
    }

    There is no redirect code inside the theme for mobile devices. Maybe, a plugin is causing this. We don’t usually support third party plugins , so you might want to hire a freelance developer to configure the plugin.

    Best regards,
    Ismael

    Hi Paul!

    Yes, maybe the icon is on a different section with a diferent id. Maybe, you can try this:

    .home .avia-icon-pos-left {
    margin-left: -5px;
    }

    I want to check the website but it redirects me to the login page. I’ll ask Yigit to check this again.

    Cheers!
    Ismael

    in reply to: Galerie Fehler? #233626

    Hi Sylvio!

    Looks like you’re having a plugin conflict within the theme. Please deactivate all plugins then check it again. Add this on Quick CSS or custom.css:

    .avia_transform .avia-gallery-thumb img {
    opacity: 1;
    }

    Cheers!
    Ismael

    in reply to: How get product images same size? #233624

    Hi!

    In order to have a uniform image size for the shop page, you need to at least resize the images with the same ratio and dimension. WP crops images on top, side or the bottom without regards on how you want it to look like. You’ll see that a very tall human images will have its head cut off or a part of the legs missing unless you tell wp to set the crop to false. If you set the crop parameter to false, you’ll have some images that are out of proportion. So, in order to have the right thumbnails, you need to at least give wp a resized images in order to have a uniform set of product images. To learn more about image thumbnails, you can refer to this link: http://codex.wordpress.org/Function_Reference/add_image_size

    Best regards,
    Ismael

    in reply to: Turn off Vimeo Autoplay in Easyslider? #233623

    Hi jefflovell!

    You can add the ?autoplay=0 option right after the vimeo url. Something like this:

    http://vimeo.com/1084537
    

    Replace it with:

    http://vimeo.com/1084537?autoplay=0
    

    Chrome seems to ignore this option but I’m not sure why. It works fine on Firefox.

    Regards,
    Ismael

    in reply to: Blog Settings #233620

    Hey!

    Please deselect the page blog page on Enfold > Theme Options > Where do you want to display blog? option. Edit the blog page then insert the Blog Posts element, configure the option to show excerpt with read more link.

    Regards,
    Ismael

    in reply to: pinch zoom (I know I know) #233618

    Hi michaelagaudio!

    Please edit header.php, find this code on line 45:

    if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">';
    

    Replace it with:

    if( strpos($responsive, 'responsive') !== false ) echo '<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=yes">';
    

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: Portfolio Image Issue #233616

    Hey!

    I checked the logo page again and they are now aligned properly. Please remove browser cache then reload the page a few times. Make sure that the max and min height are the same.

    Best regards,
    Ismael

    in reply to: Changing a Blog Author or Owner #233612

    Hey leverate_marketing!

    Edit the post then click Screen Options, enable the author metabox. You’ll see an option to select the author. There is no way of adding a new author without creating them on the Users panel.

    Regards,
    Ismael

    in reply to: display problems on different operating systems #233609

    Hey newmesis!

    Have you tried deactivating all the plugins? Please post the login details here and set it as a private reply. Deactivate all plugins then we’ll check it.

    Best regards,
    Ismael

    in reply to: Videos mint working #233607

    Hey sandboxes!

    Looks like you’re having problem with your minify plugin. Please use this plugin instead: http://wordpress.org/plugins/bwp-minify/

    Deactivate the cache plugin then test it again.

    Regards,
    Ismael

    in reply to: Custom CSS Hover on ALB Image Element #233605

    Hey!

    The problem is you’ll get an infinite css animation. You can try this:

    <div class="avia-image-container"><img class="avia_image avia_animated_image avia_animate_when_almost_visible bottom-to-top avia_start_animation" alt="" src="FIRST IMAGE URL HERE" data-hover="http://www.fpcosms.com/fpcnew/wp-content/uploads/2014/03/gather-hover.png"></div>
    

    Cheers!
    Ismael

    in reply to: Images in tab content #233600

    Hey mgould!

    Please edit the tab content. Switch to the text or html editor. Make sure that there are no spaces between the captioned images. They are generating line breaks. The code should be like this:

    <h3><span style="text-decoration: underline;"><a title="Steel Rule Dies" href="http://www.atlassteelruledie.com/steelruledies"><strong><span style="color: #016cb5; text-decoration: underline;">Steel Rule Dies</span></strong></a></span></h3>
    <p style="text-align: left;">Atlas Die offers a wide variety of steel rule dies for every unique application. Aside from the traditional wood die and our Rayform die, our patented Gamma Die provides accuracy and high performance for long-term jobs. Our NeverDie Die™&nbsp;is the most productive die on the market.</p>
    <p></p><div id="attachment_3139" style="width: 136px" class="wp-caption alignleft"><a href="http://www.atlassteelruledie.com/steelruledies#wooddie"><img class="size-full wp-image-3139 " alt="Steel Rule Wood Die" src="http://www.atlassteelruledie.com/wp-content/uploads/2013/12/Wood-Die-126.jpg" width="126" height="126"></a><p class="wp-caption-text">Wood Die</p></div>
    <div id="attachment_3142" style="width: 136px" class="wp-caption alignleft"><a href="http://www.atlassteelruledie.com/steelruledies#rayform"><img class="size-full wp-image-3142 " alt="Rayform Steel Rule Die" src="http://www.atlassteelruledie.com/wp-content/uploads/2013/12/Rayform-126.png" width="126" height="126"></a><p class="wp-caption-text">Rayform Die</p></div>
    <div id="attachment_3140" style="width: 136px" class="wp-caption alignleft"><a href="http://www.atlassteelruledie.com/steelruledies#gamma"><img class="size-full wp-image-3140 " alt="Gamma Steel Rule Die" src="http://www.atlassteelruledie.com/wp-content/uploads/2013/12/Gamma-126.jpg" width="126" height="126"></a><p class="wp-caption-text">Gamma Die</p></div><p></p>
    <div id="attachment_3141" style="width: 136px" class="wp-caption alignleft"><a href="http://www.atlassteelruledie.com/steelruledies#neverdie"><img class="size-full wp-image-3141 " alt="NeverDie Steel Rule Die" src="http://www.atlassteelruledie.com/wp-content/uploads/2013/12/NeverDie-126.png" width="126" height="126"></a><p class="wp-caption-text">NeverDie Die</p></div>

    I removed the br tags. Please copy that and replace the one that you have.

    Cheers!
    Ismael

    in reply to: Fullwidth easyslider Fade in #233598

    Hi!

    You can add this on your custom.css or Quick CSS to remove the fade animation:

    .entry-content-wrapper div li {
        text-indent: 0px;
        opacity: 1 !important;
    }

    Regards,
    Ismael

Viewing 30 posts - 60,451 through 60,480 (of 67,534 total)