Forum Replies Created

Viewing 30 posts - 62,491 through 62,520 (of 66,027 total)
  • Author
    Posts
  • in reply to: Fatal Error when updating to version 2.3.1 #172828

    Hello!

    Please give us a link to your website. Deactivate all your plugins then try again. Remove browser then reload the page a few times. What did you do prior to this issue? Did you modify any files?

    Regards,
    Ismael

    in reply to: Changing iPad Layout #172826

    Hi RevolutionGroup!

    I don’t see any difference except for bigger white space on iPad view. You need to modify the Media Queries on css > layout.css if you want to change the layout on iPad. Please hire a freelance developer to modify the theme for you.

    Best regards,
    Ismael

    Hey lukielukas!

    Please give us a link to the website with the grid layout. We can define a max-height for the featured images. I don’t think there is anything we can do about the logo and text slider switching upside down on IE8. Did you use the rotate option on the layer slider? IE8 doesn’t recognize the css rotate or transform properties. The only solution is to remove the rotation effect.

    Cheers!
    Ismael

    in reply to: Enfold Showcase #172812

    Hello!


    @HammerbyGB
    : Good job! Thank you for using the theme. :)

    Cheers!
    Ismael

    in reply to: color section is not working on iphone / ipad #172804

    Hi oliviad!

    I checked your website here: http://responsinator.com/?url=http%3A%2F%2Fourlittlecompany.com.sg%2FBo%2F2535-2%2F

    This page has two color sections, right? They both work on iPad view.

    Regards,
    Ismael

    in reply to: Image Hover Text and Spaces in Text #171482

    Hello!

    The trick is to switch to Visual Mode on the editor when editing the paragraphs. WordPress will then create blank paragraph line:

    TEST TEST TEST TEST
    
    & nbsp;
    
    & nbsp;
    
    TEST TEST TEST TEST

    Cheers!
    Ismael

    in reply to: incorrect currency symbol displayed #171477

    Hey!

    Please remove browser cache then reload the page a few times. I tested this on Chrome and Firefox using Windows 7 64bit. As you can see on the screenshot above, the Chinese Yuan shows up.

    Cheers!
    Ismael

    in reply to: Customize Accordion Sortable "All" Tag #171476

    Hi Michae1!

    The filter on thread is for the portfolio sort. You can change the “All” text for the accordion element by editing config-templatebuilder > avia-shortcodes.php > toggles.php. Find this code on line 233:

    $tag_string = "{".__('All','avia_framework' )."} ";

    Best regards,
    Ismael

    in reply to: Ipad issues #171474

    Hey!

    Do you know the screen resolution of your iPad? Please use this instead:

    @media only screen and (min-width: 400px) and (max-width: 1024px) {
    .responsive .template-blog .blog-meta,
    		.responsive .post_author_timeline,
    		.responsive #top #main .sidebar {display: block; }
    }

    For the header, add a top margin:

    @media only screen and (max-width: 1024px) {
    .responsive #top #header {
    position: fixed;
    margin-top: 100px;
    }
    }

    Adjust the top margin if necessary. Remove browser cache then reload the page a few times.

    Cheers!
    Ismael

    in reply to: how to use character map in v2.3 #171473

    Hi!

    My bad! I tested it on Enfold 2.2 and it does work but not on Enfold 2.3. I’m not sure why it is not working on the latest version of Enfold. I tried but the icon font is not rendering properly. Let’s wait for Kriesi’s response.

    Regards,
    Ismael

    in reply to: IE8 Issues + others? #171472

    Hey!

    I’m sorry! My bad! Edit the Color Sections where you want to add shadow1.jpg as image as background then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “section-shadow1″.

    .section-shadow1 {
    background-repeat: no-repeat;
    background-image: url(https://www.kimberfire.com/wp-content/uploads/2013/04/shadow1.jpg);
    background-attachment: scroll;
    background-position: top center;
    background-color: #ffffff;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader( src='http://www.kimberfire.com/wp-content/uploads/2013/04/shadow1.jpg', sizingMethod='scale');
       -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='http://www.kimberfire.com/wp-content/uploads/2013/04/shadow1.jpg', sizingMethod='scale')";
    }

    Best regards,
    Ismael

    in reply to: Whitespace Above Image #171468

    Hey!

    The Advance Layout Builder add unique selectors to each avia elements. The selectors maybe duplicated on other pages. Can you give me a link to the other thread where you want to add a white space on a section? A link to your site will help.

    Cheers!
    Ismael

    in reply to: ENFOLD: WPML switcher in toolbar or top banner #171453

    Hello!


    @lemedia
    : Yes, it is possible. Just add this on your custom.css or Quick CSS:

    .language_flag img {
    display: none !important;
    }
    
    .language_code {
    display: block !important;
    text-transform: uppercase;
    }

    Best regards,
    Ismael

    in reply to: font icon links not working in Safari #171450

    Hi!

    Looks like you have the same issue on this thread: https://kriesi.at/support/topic/iconfonts-links-not-working-in-safari-on-mac/#post-171449

    I will close this one. Please watch out for a probable solution on the link above.

    Regards,
    Ismael

    in reply to: Iconfonts links not working in Safari on Mac #171449

    Hi!

    I’m really not sure why the link don’t work on Safari. Let’s wait for Dude’s and Kriesi’s response.

    Regards,
    Ismael

    in reply to: top button no icon #171448

    Hello!

    According to Devin “Make sure to clear you *browsers* cache and not just the sites. The browser may have the old font files and be serving them up locally.” Also, test the site on different browsers. I visited the site again and the fonts and arrow are working fine.

    Cheers!
    Ismael

    Hi!

    I’m sorry but I don’t think it is a browser issue. I’m not sure why it doesn’t show on your end but I checked the demo site using Firefox 24.0, Windows 7 64bit. This is what I see.

    The gravatar images are showing properly.

    Cheers!
    Ismael

    Hello rhn215!

    You can’t switch back to the Default Editor if you start using the Advance Layout Builder (ALB) and vice versa. You need to choose which editor you want to use. The good thing is, you can set the ALB to debug mode.

    Edit function.php, find this code:

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

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will be able to see the actual shortcode below the builder.

    Regards,
    Ismael

    in reply to: Title Attributes to Navigation and Buttons #171443

    Hey beat-factory!

    1.) Go to Appearance > Menus, edit each menu item to add a Title Attribute.

    2.) Go to Settings > General > Site Title. The text you input on the field will be use as the logo title attribute.

    3.) Edit config-templatebuilder > avia-shortcodes > button.php, find this code starting on line 225:

     $output  = "";
    				$output .= "<a href='{$link}' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";
    				$output .= "<span class='avia_button_icon' {$display_char}></span>";
    				$output .= "<span class='avia_iconbox_title' >".$atts['label']."</span>";
    				$output .= "</a>";

    Replace it with:

     $output  = "";
    				$output .= "<a title='".$atts['label']."' href='{$link}' class='avia-button ".$this->class_by_arguments('icon_select, color, size, position' , $atts, true)."' {$blank} {$style} >";
    				$output .= "<span class='avia_button_icon' {$display_char}></span>";
    				$output .= "<span class='avia_iconbox_title' >".$atts['label']."</span>";
    				$output .= "</a>";

    The button’s “button label” will be use as the title attribute for the button element.

    Regards,
    Ismael

    • This reply was modified 11 years, 9 months ago by Ismael.
    in reply to: Header disappears under section with high z-index #171437

    Hi Alex!

    I’m not sure why you need this. Is the content overlapping the menu or the header?

    .main_menu {
    z-index: 9999;
    }
    
    .fixed_header #header {
    z-index: 9999;
    }

    Best regards,
    Ismael

    in reply to: Order of content displayed on Mobile & Tablets #171431

    Hello!

    If you want to show the sidebar on mobile view, you can add this on your custom.css or Quick CSS:

    @media only screen and (max-width: 767px) {
    .responsive .template-blog .blog-meta,
    		.responsive .post_author_timeline,
    		.responsive #top #main .sidebar {display:block; }
    }

    To increase the main menu and drop menu font, use this:

    .bottom_nav_header.social_header .main_menu ul:first-child>li a {
    font-size: 14px;
    }
    
    #top .main_menu .menu li ul a {
    font-size: 14px;
    }

    Cheers!
    Ismael

    in reply to: Changed rollover icon but doesn't look correct #171430

    Hey!

    Sorry, my bad! You need to add the changes on your custom.css or Quick CSS:

    .image-overlay .image-overlay-inside:before{content:"\E869"; font-family: 'entypo-fontello'; font-size: 40px; font-weight: normal; }
    .image-overlay.overlay-type-extern .image-overlay-inside:before{content:"\2295";}
    .image-overlay.overlay-type-video .image-overlay-inside:before{content:"\2295";}

    Looks like the border around the cross symbol can’t be change. I tried to find it on the css properties, it’s not there.

    Cheers!
    Ismael

    in reply to: Many errors after updtate to 2.3 #171426

    Hey!

    The icons are there but the css transition is not working. Please deactivate all your plugins. Did you use a minifying plugin? If you have a cache plugin, please flush the settings then reload the page.

    Best regards,
    Ismael

    in reply to: Video disappears in LayerSlider #171422

    Hey!

    The video disappears when you hover over the thumbnail. Can you please send in the login details?

    You can email it to //…

    Include the word “Kriesi” on the subject. Add the link of this thread on your email.

    Regards,
    Ismael

    in reply to: Yoast is still breaking my site #171421

    Hello!


    @ranfirefly
    : I visited the website then I went to the “Why Us” page where the issue exist. The sidebar looks ok. It is not at the bottom of the entry content. What browser and OS are you testing this with? This is the screenshot of what it looks like in my end:

    Cheers!
    Ismael

    in reply to: Post-Type Icons centered on Frontpage #171420

    Hey!

    Please use this instead:

    .fallback-post-type-icon {
    position: relative;
    margin: 0 0 0 -20px;
    height: 60px;
    width: 60px;
    line-height: 59px;
    font-size: 25px;
    text-align: center;
    border-radius: 100px;
    display: block;
    left: 20px;
    top: 60px;
    }
    
    .avia-content-slider-inner .slide-content {
    padding-left: 80px;
    }
    
    .avia-content-slider-inner .slide-entry.flex_column {
    margin-top: -40px;
    }

    Best regards,
    Ismael

    in reply to: Woocommerce fonts and paging Issue #171419

    Hi hardeep_singh04!

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

    To change the product price font size:

    .single-product .price del span, .single-product .price ins span {
    font-size: 20px !important;
    }

    This is for the pagination.

    .pagination span.current, .pagination a {
    font-size: 15px;
    }

    Best regards,
    Ismael

    in reply to: Changed rollover icon but doesn't look correct #171091

    Hey!

    Looks like you change it back to an arrow. Please apply the changes above then we will inspect it again.

    Best regards,
    Ismael

    in reply to: Image Hover Text and Spaces in Text #171087

    Hi coms77!

    Do you have the latest version Enfold 2.3? Please upgrade to WordPress 3.6. Deactivate all plugins then test it again. A link to your site will help. The image you posted is incorrect.

    Regards,
    Ismael

    in reply to: IE8 Issues + others? #171085

    Hi!

    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 that you want to the shadow1 image as background then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “section-shadow1”.

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

    .section-shadow1 {
    background-repeat: no-repeat;
    background-image: url(https://www.kimberfire.com/wp-content/uploads/2013/04/shadow1.jpg);
    background-attachment: scroll;
    background-position: top center;
    background-color: #ffffff;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader( src='http://www.kimberfire.com/wp-content/uploads/2013/04/shadow1.jpg', sizingMethod='scale');
       -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='http://www.kimberfire.com/wp-content/uploads/2013/04/shadow1.jpg', sizingMethod='scale')";
    }
    

    Only those section with the class section-shadow1 will have the background.

    Best regards,
    Ismael

Viewing 30 posts - 62,491 through 62,520 (of 66,027 total)