Forum Replies Created

Viewing 30 posts - 60,811 through 60,840 (of 66,075 total)
  • Author
    Posts
  • in reply to: adding a social icon #204963

    Hey!

    Please try to use this instead:

    .page-id-1195 .av_font_icon.avia-icon-pos-left {
    position: relative;
    left: 40%;
    margin-right: 10px;
    }

    Adjust the right margin. :)

    Regards,
    Ismael

    in reply to: Change lenght border bottom #204942

    Hey!

    Did you try the solution above?

    Cheers!
    Ismael

    in reply to: Change lenght border bottom #204935

    Hey Ben!

    Can you please give us a link to the website? I’m not sure what part of the header the screenshot is pointing to because of the modifications that you did with the theme. Anyway, you can change the border width using this on Quick CSS:

    #header_main {
    border: none;
    }
    
    #header_main .container {
    border-bottom: 1px solid #e1e1e1;
    }

    This will remove the #header_main border then add a bottom border on #header_main container.

    Best regards,
    Ismael

    Hey!

    I’ll ask Dude for a solution. Please wait for his response.

    Best regards,
    Ismael

    Hey!

    My bad! Glad it worked. :)

    Cheers!
    Ismael

    in reply to: AddThis Facebook icon doesn't grab proper text or photo. #204923

    Hi jgdoyle1!

    Please try to edit header.php, find this code:

    <meta charset="<?php bloginfo( 'charset' ); ?>" />

    Below, add this code:

    <meta name="description" content="<?php echo get_the_excerpt(); ?>" />
    <link rel="image_src" href="<?php echo avia_image_by_id(get_post_thumbnail_id(), 'large', 'url'); ?>" />

    Make sure that you set a featured image on every post or page. Modify the excerpt using the Excerpt metabox. Enable it on Screen Options then tick the Excerpt.

    Regards,
    Ismael

    Hi!

    You can replace the code on slideshow.php, line 484:

    if(trim($title) != "") $title = "<h2 class='avia-caption-title' $markup_name>".trim(apply_filters('avf_slideshow_title', $title))."</h2>";

    Replace it with:

    if(trim($title) != "") $title = trim(apply_filters('avf_slideshow_title', $title));

    Edit each images on the Easy Slider element then manually add the h1 or h2 tag as the caption title. Include the “avia-caption-title” selector to retain the styling.

    <h1 class="avia-caption-title">This is a title.</h1>

    If you want it to be h2. Just add a caption title like this:

    <h2 class="avia-caption-title">This is a title.</h2>

    Cheers!
    Ismael

    in reply to: Adding new templates for custom post type additions #204917

    Hey!

    Please try to add this on the child theme’s functions.php:

    add_filter('avf_title_args', 'alter_single_post_title', 10, 2);
    function alter_single_post_title($args,$id)
    {
    if (is_single())
    {
    $args['title'] = ucfirst(get_post_type($id));
    $args['link'] = get_permalink($id);
    }
    
    return $args;
    }

    Best regards,
    Ismael

    in reply to: Blog Image Sizes #204916

    Hi Scott!

    Please add this on your custom.css or Quick CSS:

    .small-preview img {
    width: 100%;
    height: 100%;
    }

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

    Regards,
    Ismael

    in reply to: dummy data & wpml problems #204915

    Hey!

    Please download the latest version of the theme, Enfold 2.4.4. Update the theme via FTP. Please watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750

    On wp-config.php file, please add this code at the very bottom:

    define('WP_MEMORY_LIMIT', '256M');

    Please post the login details here as a private reply. We would like to inspect it.

    Best regards,
    Ismael

    in reply to: Color Section Bug… #204914

    Hi pc37075!

    1.) Can you please post a screenshot of Color Section bug? Please elaborate the issue.

    2.) Use this on your custom.css or Quick CSS to adjust the height of the social icons:

    #text-10 .size-full {
    width: 40px;
    }

    Cheers!
    Ismael

    in reply to: Mobile #204913

    Hi JMH_International!

    It should be visible for all pages. Can you please give us a link to the page without the scroll to top button? Please add this on your custom.css or Quick CSS to enable the button on mobile devices:

    @media only screen and (min-width: 480px) and (max-width: 767px) {
    .responsive #scroll-top-link{display: block;} /*iphones etc scroll better by tapping the status bar at the top of the screen*/
    }

    Regards,
    Ismael

    Hi!

    1.) Let’s start again. To make the header transparent, please add this code:

    .header_color .header_bg {
    background: rgba(0,0,0,.5);
    }

    Move the slider or the main div towards the top using this:

    .fixed_header .home #main {
    padding-top: 0;
    }

    Edit js > avia.js file to remove the gap below the fullscreen slider. Find this code on line 687:

    slide_height = Math.ceil( (viewport / 100) * this.options.height );

    Replace it with:

    slide_height = Math.ceil( (viewport / 100 ) * this.options.height ) + 88;

    2.) You can’t move the border because it is the content border. There is a javascript where you can force or copy the height of a certain div then apply it on another. You can then use this Quick CSS:

    #top #main .sidebar {
    right: -50px;
    border-left-style: solid;
    border-left-width: 1px;
    }
    
    .content {
    border: none;
    }

    Please hire a freelance developer to help you create a script like that.

    Cheers!
    Ismael

    in reply to: Edit global settings on the Layer Slider issue #204911

    Hey!

    I can’t check this on iOS device but have you tried removing the browser cache? I’ll ask Devin and Josue to check this out on their MAC system.

    Cheers!
    Ismael

    in reply to: Contact & cart icons #204900

    Hi!

    Can you please give us a link to the website? The social icons should be on top of the logo on mobile view. What do you mean by “contact call”?

    Best regards,
    Ismael

    in reply to: Blog Author Gravitars #204894

    Hi!

    Please download the latest version of Enfold which 2.4.4. Update the theme via FTP. If you have a cache plugin, please flush the settings. Remove browser cache then reload the page.

    Cheers!
    Ismael

    Hi!

    1.) Please add this on your custom.css or Quick CSS:

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

    2.) You can move the sidebar to the right using this:

    #top #main .sidebar {
    right: -50px;
    border: none;
    }

    Cheers!
    Ismael

    Hi!

    Do you have a cache plugin? Please deactivate it along with other plugins. Please give us a link to the page.

    Cheers!
    Ismael

    in reply to: Updating 2.4.2 to 2.4.4 #204861

    Hi!

    The login credentials are not working. Please check all pages with the Content Slider element. Recreate them from scratch.

    Cheers!
    Ismael

    Hi tck!

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

    .avia-content-slider .slide-entry {
    background: gray;
    padding: 10px;
    }

    Best regards,
    Ismael

    in reply to: Avia Search as a Shortcode or Widget #204851

    Hi!

    I’m not sure but I think it is a browser feature. Please try it on firefox and you won’t encounter any predictive search.

    Best regards,
    Ismael

    in reply to: Unable to enbed own video url #204847

    Hi!

    This is included as a side note with the Video element:

    Attention when using self hosted HTML 5 Videos:
    Different Browsers support different file types (mp4, ogv, webm). If you embed a example.mp4 video the video player will automatically check if a example.ogv and example.webm video is available and display those versions in case its possible and necessary.

    What is the format of the video?

    Regards,
    Ismael

    in reply to: Blank text blocks and unexpected cloning #204844

    Hi!

    Did you add any div tags? Please check the html markup if there are any unclosed tags. Kriesi tested a website once and he found out there are multiple tags that are not closed properly.

    Regards,
    Ismael

    in reply to: Off-centered Menu IPAD #204843

    Hi!

    You can add this on your Quick CSS or custom.css to position the socket or footer at the bottom:

    #socket {
    position: fixed;
    width: 100%;
    bottom: 0;
    }
    
    #socket .container {
    margin: 0 auto;
    }

    Regards,
    Ismael

    in reply to: How to get the magnifying feature off of pics? #204838

    Hi!

    Please hire a freelance developer to edit the file for you. Please refer to this link for more info about FTP and accessing files through cpanel.

    http://www.siteground.com/tutorials/ftp/
    http://www.siteground.com/tutorials/cpanel/file_manager.htm

    Regards,
    Ismael

    in reply to: adding a social icon #204829

    Hey MUNFORD!

    Add the two social icons align them to the left then add this on your Quick CSS to move to the center.

    .av_font_icon {
    position: relative;
    left: 40%;
    }

    Adjust the left position. If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.

    .page-id-2251 .av_font_icon {
    position: relative;
    left: 40%;
    }

    Best regards,
    Ismael

    in reply to: Blog Author Gravitars #204825

    Hi!

    Please check Settings > Discussion > Avatar Display, make sure that the “Show Avatars” option is ticked.

    Regards,
    Ismael

    in reply to: Can't add images to the easy slider #204413

    Hey!

    Glad it is working now. Maybe a cache issue. :)

    Cheers!
    Ismael

    in reply to: Image resize problem in IE and FF, Chrome looks fine #204410

    Hey!

    Glad it is fixed. :)

    Best regards,
    Ismael

    in reply to: How to put two elements side by side in a column #204409

    Hi!

    You can’t insert a column inside a column. It is possible if you use the Default Editor and the shortcode wand. You can insert column shortcodes inside a columns shortcode. Something like this:

    [av_two_third first]
    
    [av_one_half first]Add Content here[/av_one_half]
    
    [av_one_half]Add Content here[/av_one_half]
    
    [/av_two_third]
    
    [av_one_third]
    
    [av_one_half first]Add Content here[/av_one_half]
    
    [av_one_half]Add Content here[/av_one_half]
    
    [/av_one_third]

    Regards,
    Ismael

Viewing 30 posts - 60,811 through 60,840 (of 66,075 total)