Forum Replies Created

Viewing 30 posts - 64,201 through 64,230 (of 66,017 total)
  • Author
    Posts
  • in reply to: Multiple font embedding #132555

    Hi,

    To clear things up, is this the font you’re trying to use?

    http://www.google.com/fonts#UsePlace:use/Collection:Allura

    Did you this bit of code on your header.php?

    <link href='http://fonts.googleapis.com/css?family=Allura' rel='stylesheet' type='text/css'>

    You should probably use:

    h6.script_header {
    font-family: 'Allura', cursive;
    font-size:3.5em;
    font-weight: 200 !important;
    }

    Regards,

    Ismael

    in reply to: How can i Cusomized your theme? #132362

    Hi,

    Please add this on your custom.css or Quick CSS

    .main-title {
    display: none;
    }

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

    Regards,

    Ismael

    in reply to: Logo & nav in socket #132551

    Hey,

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

    #footer-logo {
    float: left;
    }

    Regards,

    Ismael

    in reply to: Some help with a new install [formatting] #130889

    Hi,

    It looks fine when I resize the browser. Can you give us a screenshot of what you’re seeing on your phone?

    Regards,

    Ismael

    in reply to: Contact From Not Scrolling To Top #2 #132618

    Hi,

    It does scroll to top. I tested it on Windows 7 machine using Google Chrome. Let me tag the rest of the support team.

    Regards,

    Ismael

    in reply to: side menu order #132243

    Hey,

    Yes, I’m sure it is ok.

    Cheers,

    Ismael

    in reply to: Header not rendering correctly in responsive view #132612

    Hi,

    This will fix the header a bit. Add this on your custom.css or Quick CSS

    @media only screen and (max-width: 767px) {
    .responsive #header .social_bookmarks {
    width: 100px;
    float: left;
    }

    .responsive.social_header .phone-info {
    text-align: right;
    padding-top: 10px;
    }

    .responsive #header .sub_menu, .responsive #header_meta .sub_menu>ul {
    float: right;
    text-align: right;
    margin: 0 auto;
    position: static;
    display: block;
    width: 150px;
    }
    }

    Regards,

    Ismael

    in reply to: 404 issue #132607

    Hi,

    Please refer to this link: https://kriesi.at/support/topic/some-problems-404-permalink-and-wpml

    Add the flush_rewrite_rules( false ); on functions.php.

    Regards,

    Ismael

    in reply to: slider 2D distortation in browser #132270

    Hey,

    Glad you figured it out. Please share the solutions you made here, it might help other users with the same issue.

    Regards,

    Ismael

    in reply to: how to turn off the lightbox on all photos #132609

    Hi,

    Open js > avia.js, find this code

    //activates the prettyphoto lightbox
    if($.fn.avia_activate_lightbox)
    $(container).avia_activate_lightbox();

    Replace it with

    //activates the prettyphoto lightbox
    //if($.fn.avia_activate_lightbox)
    //$(container).avia_activate_lightbox();

    Regards,

    Ismael

    Hi,

    Please try to add this on your custom.css or Quick CSS

    img:hover, a img {
    display: block !important;
    }

    Can you give us a link to the website?

    Regards,

    Ismael

    in reply to: Calendar option in Contact Form #132451

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    in reply to: Easy Slider Slideshow Image Size not Working #132593

    Hi,

    It does work but you still need to constrain them on a column element to resize the Easy Slider.

    Regards,

    Ismael

    in reply to: Logo ontop of all layers? #132342

    Hi,

    Please use this:

    .header-scrolled .logo a img {
    width: 100px;
    height: 100px;
    }

    Regards,

    Ismael

    Hi,

    You can switch off the gallery’s gray out feature while loading the images. Please refer to this link:

    https://kriesi.at/support/topic/scrolling-to-bottom-before-gallery-loads

    Add the old fix again:

    #top #wrap_all .avia-gallery-1 .avia-gallery-thumb a {
    width: 25%;
    max-height: 147px;
    height: 147px;
    }
    #top div .avia-gallery img {
    height: 100%;
    max-height: 100%;
    }

    We can fix the gallery with Media Queries, I guess the stretching of the images comes out on less than 800px screen width. It stretches again once more on 400px width screens.

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    #top div .avia-gallery img {
    max-height: 100%;
    height: 100px;
    }
    }

    @media only screen and (min-width: 320px) and (max-width: 520px) {
    #top div .avia-gallery img {
    max-height: 100%;
    height: 70px;
    }
    }

    Regards,

    Ismael

    in reply to: Slider fade speed #132629

    Hi,

    Open js > shortcodes.js, find this codes:

    $.AviaSlider.defaults  = {

    //interval between autorotation switches
    interval:5,

    //autorotation active or not
    autoplay:false,

    //fade or slide animation
    animation:'slide',

    //transition speed when switching slide
    transitionSpeed:900,

    //easing method for the transition
    easing:'easeInOutQuart',

    Adjust the transition speed and play around with easing methods.

    Regards,

    Ismael

    in reply to: Google Chrome Font Rendering Problems #132048

    Hi,

    First, I don’t see any problem with the font rendering on Chrome or IE. It is using the default font family which is Helvetica, “HelveticaNeue”, “Helvetica Neue”, Arial, Verdana, sans-serif. The site is having some heading color issue on IE. You can add this on your custom.css or Quick CSS

    .main_color h1, h2, h3, h4, h5, h6 {
    color: #f2c301;
    }

    Also, the icon list needs some fixing:

    .alternate_color .avia-icon-list .iconlist_icon {
    background: white !important;
    color: #f2c301 !important;
    border: 3px solid #f2c301 !important;
    }

    The socket is missing on IE. Try this:

    #socket .container {
    height: 51px;
    min-height: 51px;
    display: block;
    }

    Regards,

    Ismael

    Hi,

    1.) Please replace the code with this:

    add_filter('avf_title_tag','new_avf_title_tag');
    function new_avf_title_tag($title)
    {
    if ( is_home() ) {
    $title = get_bloginfo('name').'';
    return $title;
    } else {
    $title = get_bloginfo('name').' | ';
    $title .= (is_front_page()) ? get_bloginfo('description') : wp_title('', false);
    $title = apply_filters('avf_title_tag', $title, wp_title('', false));

    return $title;
    }
    }

    2.) You can use wordpress social media plugins like addthis and sharethis.

    Regards,

    Ismael

    in reply to: Layer Slider #132405

    Hi,

    Recommended image is 1500x450px.

    Regards,

    Ismael

    in reply to: Template Builder: where? #132509

    Hi,

    Edit a page or portfolio item, look for the Advance Layout Editor on top of the editor. If you can’t find it, click Screen Options > check the Avia Layout Editor. That is the new template builder for the Enfold theme. Learn more about the theme here: https://vimeo.com/channels/aviathemes

    Regards,

    Ismael

    in reply to: Favicon #127766

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    in reply to: Some help with a new install [formatting] #130886

    Hi,

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

    div .logo {
    left: 45%;
    }

    Regards,

    Ismael

    in reply to: menu overlapping logo when resizing browser window #132501

    Hi,

    Please add this on your custom.css or Quick CSS to decrease the padding and the font size of the menu on iPad view:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .main_menu ul:first-child > li > a {
    padding: 0 5px;
    font-size: 11px;
    }

    .logo img {
    padding: 30px 0;
    width: 150px;
    height: auto;
    }
    }

    Regards,

    Ismael

    in reply to: White Overlay on Picture Links #132498

    Hi,

    Please add this on your custom.css or Quick CSS

    .image-overlay.overlay-type-extern {
    display: none !important;
    }

    Nice website. :)

    Regards,

    Ismael

    in reply to: LayerSlider – New layers won't show on page #132096

    Hi,

    Please increase php memory limit to 256M:

    http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,

    Ismael

    in reply to: News thumbnail squishes featured image #132213

    Hi,

    Change the thumbnail size settings to 36×36 then regenerate thumbnails. Actually, it has nothing to do with that because the code for the thumbnail on latest news widget is located on functions.php:

    $avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news

    The latest news widgets look fine on my end:

    Regards,

    Ismael

    Hi,

    I suggest you use Gravity Forms because the theme comes with the plugin’s config modification.

    Regards,
    Ismael

    in reply to: changing color of social icons in top header #132456

    Hi,

    1.) To change the social icons color:

    #top .social_bookmarks li a {
    color: white;
    }

    2.) Icon list color, you can use this

    .avia-icon-list .iconlist_icon {
    background-color: red;
    }

    3.) Can you give us a screenshot of what you want to do?

    Regards,

    Ismael

    in reply to: menu text opacity #132035

    Hi,

    Footer widget title:

    #footer .widgettitle {
    color: white;
    }

    Current Menu item color:

    #top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a {
    color: white;
    }

    Regards,

    Ismael

    in reply to: Space between subnavigation too large #132469

    Hi,

    You can adjust the padding:

    #top .main_menu .menu li ul a {
    padding: 4px 15px;
    }

    Adjust the 4px.

    Regards,

    Ismael

Viewing 30 posts - 64,201 through 64,230 (of 66,017 total)