Forum Replies Created

Viewing 30 posts - 62,941 through 62,970 (of 66,745 total)
  • Author
    Posts
  • 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

    in reply to: IE trouble #177741

    Hi LesYoung!

    First of all you’re using an old version of the theme. Please download 2.3.2 or wait for the release of 2.4 which is coming soon. Update the file via FTP: http://vimeo.com/channels/aviathemes/64927356

    Can you list a specific issue on IE browser? I check your site on IE9 and it looks nice.

    Cheers!
    Ismael

    Hey!

    You can still use the Advance Layout Builder on Woocommerce Pages. Make sure that the woocommerce pages shortcode are included on a Text Block. For example, edit the checkout page, switch to Advance Layout Builder insert the Text Block then add the checkout page shortcode [woocommerce_checkout]. You can add any other elements you want below or under the text block. When you install the Woocommerce plugin an additional panel called “Plugin Additions” will be added on the advance layout builder where you can add Product Grid and Product Sliders.

    Regards,
    Ismael

    in reply to: Partner/Logo Element Bug #177721

    Hey!

    Kriesi can check this on an iOS environment. Let’s wait for his reply.

    Cheers!
    Ismael

    in reply to: How to translate widget footer in Enfold #177715

    Hi CAUM!

    I’m not sure if codestyling localization will help but you can use the Widget Logic plugin with the WPML plugin combined: http://wpml.org/2011/03/howto-display-different-widgets-per-language/

    Regards,
    Ismael

    in reply to: Please contribute and translate Enfold #177714

    Hi!


    @minestelecom
    : Thanks you for this. This will help a lot. :)

    Cheers!
    Ismael

    in reply to: No preview with Enfold in dev website #177713

    Hi!

    Clear the cookies and cache in your browser. Close all browsers, reopen it and try logging back into your WP Admin. Change the permalink structure on Settings > Permalinks then save it. Do this a few times. In the Settings > General, make sure that the WordPress address (URL) and the Blog address (URL) match.

    Cheers!
    Ismael

    in reply to: Stretching header menu to fullwidth instead of 1210px #177712

    Hi DavyE!

    What type of header are you using right now? Please check Enfold > Header > Header type. You can adjust the header menu width by increasing the padding between menu items.

    .main_menu ul:first-child > li > a {
    padding: 0 15px;
    }

    Use Media Queries to adjust it on different screen sizes.

    Best regards,
    Ismael

    in reply to: Avia image hover -> use own images for hover state #177710

    Hey!

    It is not possible to direct the link of the product grid manually. They will always link to the product pages. Enfold 2.4 will be release soon and I think the masonry gallery layout will be available on the theme.

    Regards,
    Ismael

Viewing 30 posts - 62,941 through 62,970 (of 66,745 total)