Forum Replies Created

Viewing 30 posts - 61,801 through 61,830 (of 67,582 total)
  • Author
    Posts
  • in reply to: Entypo showing images not color font #212555

    Hey elbnetz!

    What do you mean by entypo codes? Can you please give us a link to a test page with the icons? A screenshot will help.

    Regards,
    Ismael

    in reply to: Blog Template #212553

    Hi!

    You can edit includes > loop-index.php. Please use the Blog Posts element using the Advance Layout Builder to have more control over the Blog page.

    Regards,
    Ismael

    in reply to: Changing Image When Hovering Over Images #212552

    Hi Lead!

    Edit css > base.css, find this code on line 363:

    .image-overlay .image-overlay-inside:before{content:"\E869"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }

    Replace the content value “\E860” with a different fontello icon.You can refer to this link for more icon codes: http://www.entypo.com/characters/

    Regards,
    Ismael

    Hey tdgano!

    You can edit header.php, find this code on line 178:

    wp_nav_menu($args);

    Below, you can add the search form code:

    echo "<div class='s2'>";
    get_search_form();
    echo "</div>";

    Add this on Quick CSS to position the searchform:

    .s2 {
    position: absolute;
    right: -0;
    }

    Best regards,
    Ismael

    in reply to: Top-level Mobile Menu items undefined #212541

    Hey HankInTheForest!

    Please edit the menu item on Appearance > Menus then put a hashtag(#) sign on URL field.

    Regards,
    Ismael

    Hey spatton!

    You can add this on Quick CSS:

    .post-meta-infos span {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Stand Alone Icons – Pop-up Box Position #212530

    Hey TFT!

    That is not possible at the moment. You can only adjust the width of the tooltip. Use this on Quick CSS:

    #top .avia-icon-tooltip {
    width: 500px;
    font-size: 15px;
    line-height: 1.6em;
    }

    Best regards,
    Ismael

    in reply to: Theme styling not loading on Safari, etc. #212524

    Hi!

    Glad it worked. You can use BWP Minify plugin.

    Regards,
    Ismael

    in reply to: Header navigation menu and spacing on blogpage/post #212517

    Hi!

    Please use this instead:

    .top-tel {
    position: relative;
    z-index: 999 !important;
    }

    Regards,
    Ismael

    in reply to: Special Heading (H3) Rule So Faint It's Invisible #212513

    Hey ubercool!

    You can add this on Quick CSS:

    .meta-heading .special-heading-inner-border {
    opacity: 0.9;
    filter: alpha(opacity=90);
    }

    Regards,
    Ismael

    in reply to: Leave a reply error message #212503

    Hey!

    This is not a theme feature. Please hire a freelance developer to add an ajax or pop up error feature for the default wp comment section. You can visit Werkpress/.

    Regards,
    Ismael

    in reply to: Fullwidth Masonry Gallery centering #212501

    Hi hyperstream!

    You should probably add another item or use this on Quick CSS to move the items to the right:

    .av-masonry-entry.av-masonry-item-loaded {
    margin-left: 10%;
    }

    Use media queries to target different screen sizes.

    Regards,
    Ismael

    in reply to: Dummy Content #212500

    Hi dmarzean!

    Please give us a link to the website. Do you have the latest version 2.4.5 of Enfold? Try to increase the php memory limit: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,
    Ismael

    in reply to: SEO Issue – Multiple H1 Tags in posts #212499

    Hey!

    Can you please give us a link to the website? Do you have a cache plugin? Please flush the settings after you change the styling. Deactivate all existing plugins, see if the issue persist. If you have an access to the cpanel, please go to wp-content/uploads/dynamic_avia folder then change the file permission of enfold.css to 755.

    Best regards,
    Ismael

    in reply to: Theme styling not loading on Safari, etc. #212498

    Hey designguy2006!

    Please try to deactivate the minify plugin then flush the cache settings again.

    Cheers!
    Ismael

    in reply to: Adding Menus to Footer 4 column widget areas #212496

    Hi!

    Glad you figured it out. Thank you for the detailed instruction. :)

    Regards,
    Ismael

    in reply to: Social Icons in same line that secondary menu #212369

    Hey CloudChoice!

    You can add this on Quick CSS:

    @media only screen and (max-width: 767px) {
    .responsive #header .social_bookmarks {
    position: absolute;
    left: 0;
    }
    
    .responsive #header .sub_menu.sub_menu>ul {
    position: relative;
    right: 0;
    }
    }

    Regards,
    Ismael

    in reply to: How do you embed youtube video into layer slider? #212368

    Hey pako69!

    Can you please give us a link to the website? Please insert the video inside a 1/1 column to make it full width.

    Regards,
    Ismael

    in reply to: Custom Hover Effects #212367

    Hi!

    I’m not sure if that easy to do. I’ll ask Dude for this. You can hire someone here: http://werkpress.com/

    Cheers!
    Ismael

    in reply to: how to customize lines #212366

    Hey David!

    Use the “Short Separator” then add this on Quick CSS or custom.css:

    .hr-inner {
    width: 100%;
    position: absolute;
    height: 1px;
    left: 0;
    top: 50%;
    width: 100%;
    margin-top: -1px;
    border-top-width: 1px;
    border-top-style: solid;
    }
    
    .hr-short .hr-inner-style {
    border-radius: 20px;
    height: 34px;
    width: 34px;
    border-width: 2px;
    border-style: solid;
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -17px;
    margin-top: -17px;
    line-height: 33px;
    text-align: center;
    border: none;
    }
    
    .alternate_color .hr-short .hr-inner-style:before {
    color: #42a0bd;
    }
    
    div .hr-short .hr-inner-style:before {
    content: '\E808';
    font-family: 'entypo-fontello';
    }
    
    .hr-short .hr-inner-style:before {
    font-size: 13px;
    color: rgb(66, 160, 189);
    }

    Regards,
    Ismael

    in reply to: Highlighting each post in grid layout for blog. #212358

    Hi hbjcapital!

    1.) You can add this on Quick CSS:

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

    2.) This is beyond the support scope. Please hire a freelance developer to fix the “customer-login” functionality for you.

    3.) You’re using a plugin for the related posts? Please contact the author plugin to remove the featured post or add tags on posts to show related posts.

    Best regards,
    Ismael

    in reply to: @media only screen and (min-width… NOT WORKING #212357

    Hi rfrbase!

    You forget to close it. :)

    @media only screen and (min-width: 74.5em) {
    .hide_desk {
    display: none;
    }
    }

    Best regards,
    Ismael

    in reply to: IE breaks columns & icons #212355

    Hey!


    @LiamKenyon
    : Thank you for hopping in. I hope it helps @hetveer.


    @hetveer
    : We really need to see the actual website because the demo renders properly.

    Regards,
    Ismael

    in reply to: Vertically align icon box next to easy slider #212351

    Hey!

    We really need to inspect the actual website to give you a proper css solution. You can post the login details here as a private reply.

    Regards,
    Ismael

    in reply to: Internet Explorer compatibility #212347

    Hi!

    You should probably update the theme to 2.4.5. Watch this video by Devin: https://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Ismael

    Hi martinbose!

    You can add a unique selector for each Avia Elements. Edit functions.php, find this code:

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

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');

    Edit the Color Sections then add a unique custom css like “hide-section”. You can use media query to hide all sections with the “hide-section” selector. Add something like this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
      .hide-section {
    display: none;
    }
    }

    Best regards,
    Ismael

    in reply to: Blog Template #212342

    Hey Matt!

    You can use the <!–more–> tag to display the excerpt or look for Screen Options then enable the Excerpt box. If you’re using the Blog Posts element, set the “Blog Content length” to excerpt.

    Best regards,
    Ismael

    in reply to: Full Width Search Page #212341

    Hey!

    Add this on Quick CSS:

    .author-extra-border {
    width: 100%;
    }
    
    .search .content.template-search {
    border: none;
    }

    Best regards,
    Ismael

    in reply to: Partner/Logo Element title under elements #212241

    Hey!

    If I am not mistaken, you can replace the code above with this:

    $output .= !empty($link) ? "<a href='{$link}' data-rel='slide-".avia_partner_logo::$slider."' class='slide-image' title='{$linktitle}' {$blank} >{$img}</a>" : $img;
    					$output .= "<a href='{$link}' title='{$linktitle}' {$blank}><div class='logo-title'>".$hover."</div></a>";
                        $output .= "</div>";

    Cheers!
    Ismael

    in reply to: layer slider shift #212238

    Hi MUNFORD!

    I think you forgot to close the anchor tag on the text block with the “CFC Short and Doc” logo. Edit the text block, find this code:

    <h3 style="text-align: center;"><a title="SHORT & DOC" href="http://www.copenhagenfilmcompany.dk/2014/short-doc_en/"><img class="wp-image-3617 aligncenter" style="margin-top: 0px; margin-bottom: 0px;" alt="SHORT & DOC" src="http://www.copenhagenfilmcompany.dk/2014/wp-content/uploads/2014/01/SHORTDOX1-300x220.png" width="211" height="155"></a>CINEMATIC STORYTELLING</h3>

    Replace it with:

    <a title="SHORT & DOC" href="http://www.copenhagenfilmcompany.dk/2014/short-doc_en/"><h3 style="text-align: center;"><img class="wp-image-3617 aligncenter" style="margin-top: 0px; margin-bottom: 0px;" alt="SHORT & DOC" src="http://www.copenhagenfilmcompany.dk/2014/wp-content/uploads/2014/01/SHORTDOX1-300x220.png" width="211" height="155">CINEMATIC STORYTELLING</h3></a>

    Cheers!
    Ismael

Viewing 30 posts - 61,801 through 61,830 (of 67,582 total)