Forum Replies Created

Viewing 30 posts - 63,211 through 63,240 (of 67,023 total)
  • Author
    Posts
  • in reply to: upgrade to version 2.3.2 #178223

    Hey yukanl!

    There are lots of changes on the theme files and I doubt if Kriesi will have the time to pin point each files that is changed. Please create a “Change Log” to list all of the modifications that you created or you can use a child theme to preserve them.

    Best regards,
    Ismael

    in reply to: Layerslider not saving #178221

    Hi Marssolutions!

    Did you add a plugin prior to the issue? Please deactivate them. Can you please post a link to the website?

    Best regards,
    Ismael

    in reply to: Top Menu & Side Navigation Issues #178219

    Hi!

    Please post a screenshot of what you’re trying to do. The code above shifted the sidebar to the right essentially removing some space.

    Best regards,
    Ismael

    in reply to: Line Break Issue in Visual / Text Editing #178218

    Hey esotEric!

    I think this has been fix on the latest update of Enfold. Do you have Enfold 2.3.2? Please download it on your themeforest account.

    Best regards,
    Ismael

    in reply to: Portfolio Images All Mysteriously Gone #178214

    Hey!

    Have you installed a plugin prior to the issue? Please use this plugin to regenerate the thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Ismael

    in reply to: Header menu button #178210

    Hey!

    What OS are you testing this with? The screenshot above is taken from Chrome Windows 7 64bit. Even if I resize the browser, the login doesn’t get out of alignment.

    Regards,
    Ismael

    in reply to: Images in Icon Boxes Distorted In IE8 #178208

    Hi PPCHound!

    What do you mean by distorted? IE8 doesn’t support border radius and the round icons on icon boxes will display as square.

    Best regards,
    Ismael

    Hi!

    You are using a plugin call WP User Frontend and it is creating a wpuf attachments or thumbnail. Please add this on your custom.css or Quick CSS:

    .wpuf-attachments {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Partner/Logo element is a mess on IE10 #178206

    Hi!

    Let us know if it fix the issue. Please give us a link to your website so that we can inspect it.

    Regards,
    Ismael

    in reply to: Imaged not centered on certains devices in layerslider #178205

    Hi chryseis!

    Please check your website here: http://responsinator.com/?url=http%3A%2F%2Fwww.calliframe.com%2F

    All layer slider elements are centered on mobile view. Your settings are correct. The Layers Container will create a new container and constrain all slider elements inside. This new container will always be aligned at the middle or center of the Layer Slider.

    Best regards,
    Ismael

    in reply to: Button in Header #178204

    Hey franktw!

    You can refer to this link: http://codex.wordpress.org/Function_Reference/wp_register

    Edit header.php then add the code after the wp_nav:

    <a href="http://www.example.com/wp-login.php?action=register">Register</a>

    Replace http://www.example.com with your domain name.

    Best regards,
    Ismael

    in reply to: How to add a new icon sub-top-navigation for phone? #177851

    Hey!

    Follow Dude’s Instruction:

    1) Please edit /wp-content/themes/enfold/includes/admin/register-admin-options.php and search for

    
    								"subtype" => array(
    
    									'500px' 	=> 'five_100_px',
    									'Behance' 	=> 'behance',
    									'Dribbble' 	=> 'dribbble',
    									'Facebook' 	=> 'facebook',
    									'Flickr' 	=> 'flickr',
    									'Google Plus' => 'gplus',
    									'Instagram'  => 'instagram',
    									'LinkedIn' 	=> 'linkedin',
    									'Pinterest' 	=> 'pinterest',
    									'Skype' 	=> 'skype',
    									'Soundcloud'=> 'soundcloud',
    									'Tumblr' 	=> 'tumblr',
    									'Twitter' 	=> 'twitter',
    									'Vimeo' 	=> 'vimeo',
    									'Xing' 		=> 'xing',
    									'Youtube'   => 'youtube',
    									'Special: RSS (add RSS URL, leave blank if you want to use default WordPress RSS feed)' => 'rss',
    									'Special: Email Icon (add URL to a contact form)' => 'mail',
    
    								)),
    

    You can add your social media icon to the array. The first value represents the caption in the dropdown, the second value will be used to show embed the icon (icon/character code). We’ll include a filter in the next update which helps you to add a social icon without modifying the theme files.

    Then add following code to functions.php

    
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['behance']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue915');
    return $icons;
    }
    

    and instead of “behance” insert the option value of your social icon (replace it with the same value you used for the “icon/character code” in step 1). You also need to replace ue915 with the character code of your icon – if you don’t know it you can use fontello.com to look up the default values (click on the social icon and select “Customize Codes”).

    Cheers!
    Peter

    in reply to: Where to change the "double" h1 tag in blog posts? #177849

    Hi!

    Please try to copy the whole avia_title function on the child theme’s functions.php.

    Cheers!
    Ismael

    in reply to: Square top images only for portfolio entries? #177847

    Hey!

    Glad it worked. :)

    Cheers!
    Ismael

    Hi!

    Please post your login details here. Set it as a private reply so you and only moderators can see it.

    Best regards,
    Ismael

    in reply to: Menu Bugs[Table & Desktop] #177774

    Hi!

    The link you provided is broken: http://sandbox.hipcure.com/philsouth

    I tried the http://sandbox.hipcure.com but it is broken too or doesn’t exist. Are you sure this is the correct link ?

    Cheers!
    Ismael

    in reply to: Narrower content slider…? #177773

    Hey!

    Please insert the Content Slider after the Layer Slider or any other element.Remove the title on each slide and save changes. Add this on your custom.css or Quick CSS:

    .content, .sidebar {
    padding-top: 5px;
    }
    
    #top .avia-smallarrow-slider-heading {
    display: none;
    }

    Best regards,
    Ismael

    in reply to: Navigation menu for long single page website with Enfold #177772

    Hey!

    It works on my end. Please move the jQuery code on avia.js below this code:

    $(document).ready(function()
        {
    

    Cheers!
    Ismael

    in reply to: Digg digg won't work properly on blog posts #177767

    Hi!

    I checked the site and the Digg plugin looks ok:

    Is that how you see it on your end? What browser and OS are you testing this with?

    Best regards,
    Ismael

    Hi sdaly18!

    What Blog Style are you currently using? Please check on Enfold > General Settings > Blog Style. Please give us a link to the Blog page.

    Cheers!
    Ismael

    Hey Michae1!

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

    .main_color .taglist a {
    text-transform: none !important;
    }

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider – Resize Issue #177760

    Hi Gstar72!

    You can use Media Queries to resize the font of the caption when viewing on mobile device:

    @media only screen and (max-width: 767px) {
    .avia-fullwidth-slider div .slideshow_caption h2 span, .avia-fullwidth-slider div .slideshow_caption .avia-caption-title em span {
    font-size: 12px;
    }
    }

    Remove browser cache then reload the page.

    Best regards,
    Ismael

    in reply to: menu not working #177757

    Hey!

    Thanks for explaining but we really need to see the website. You provided the login details but the username is missing. Please post it here as a private reply.

    Cheers!
    Ismael

    in reply to: Website banner /slider is been cut by certain browsers #177756

    Hi!

    Please use the Color Section. Upload the logo image as Custom Background Image then set the Background Repeat to Stretch to fit. On the For Developers: Section ID, place a unique section id called “logo-section”. You can then go to Quick CSS field to specify the height of the section.

    #logo-section {
    height: 300px;
    }`

    Adjust the height if necessary.

    Best regards,
    Ismael

    in reply to: Header menu button #177754

    Hi!

    It looks ok on my end. Please edit Yigits code to something like this:

    li#menu-item-3512 a {
    padding: 5px 10px;
    background-color: blue!important;
    color: white!important;
    height: 30px!important;
    line-height: 20px!important;
    margin-top: 43px;
    border-radius: 10px;
    }

    This is the screenshot:

    Regards,
    Ismael

    in reply to: Little request with accordion… #177751

    Hey!

    I’m a bit lost on what you want to do. Dude instructed to remove a line of code so that the “All” sort text will be remove. It should work. Can you please post a screenshot of what you’re trying to do?

    Regards,
    Ismael

    in reply to: The google Maps API server rejected your request #177749

    Hey!

    Can you please post the code for your google map? You can add the sensor parameter at the end of the map url, something like this &sensor=true. If that doesn’t work please edit, framework > php > class-framework-widgets.php, find this code:

    wp_register_script( 'avia-google-maps-api', $prefix.'://maps.google.com/maps/api/js?sensor=false', array('jquery'), '1', false);

    Replace it with:

    wp_register_script( 'avia-google-maps-api', $prefix.'://maps.google.com/maps/api/js?sensor=true', array('jquery'), '1', false);

    Best regards,
    Ismael

    Hey!

    Don’t forget to “Save changes” after you close or click the red x button. Remove browser cache then reload the page a few times.

    Best regards,
    Ismael

    in reply to: Create Transparent Socket #177745

    Hey!

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

    #main, .html_stretched #wrap_all {
    background-color: transparent;
    }
    
    #socket {
    background: rgba(0,0,0,.2);
    }
    

    Regards,
    Ismael

    in reply to: Increase picture size in Latest Portfolio Widget #177742

    Hey!

    Glad Yigit fixed it. :)

    Regards,
    Ismael

Viewing 30 posts - 63,211 through 63,240 (of 67,023 total)