Viewing 30 results - 141,841 through 141,870 (of 141,901 total)
  • Author
    Search Results
  • #116094

    ADMIN PANEL > Enfold Theme Options > Styling > Quick CSS (paste code) :

    #top .menu-item-search-dropdown > a, #searchform #searchsubmit, .ajax_search_image, .iconfont{

    display: none;

    }

    #116096

    In reply to: GravityForms Styling

    Hey!

    Please use following css code – insert it into the quick css field:

    #top .gfield textarea {
    min-height: 200px;
    }

    Regards,

    Peter

    #115915
    #116052

    You need to add your post type to the $boxes array in wp-contentthemesenfoldconfig-templatebuilderavia-template-builderconfigmeta.php

    How to extend Avia layout builder to support CPT ?

    At the moment not possible without manually tweaking the theme files. You can request the feature here: https://kriesi.at/support/topic/enfold-feature-requests though.

    #115830

    Hi Gordon,

    No, as far as I know that isn’t possible at this point with the theme settings. You can request something like in the feature request thread here however: https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Devin

    #22521
    mohitso
    Participant

    This is what my quick CSS looks like now and its not working, any ideas? Ijuyst want the words bigger.

    it doesnt seem to change the size.

    #header {

    position: fixed;

    }

    #main {

    margin-top: 152px;

    }

    #top .social_bookmarks li a {

    font-size: 30px;

    }

    .main_menu ul:first-child > li > a{

    font-size: 21px;

    }

    #116056

    it doesnt seem to change the size. Here is what I have in my quick CSS:

    #header {

    position: fixed;

    }

    #main {

    margin-top: 152px;

    }

    #top .social_bookmarks li a {

    font-size: 30px;

    }

    .main_menu ul:first-child > li > a{

    font-size: 21px;

    }

    #114868

    In reply to: Enfold child theme

    Hey!

    Duplicate: https://kriesi.at/support/topic/enfold-13-setting-up-child-theme – I’ll mark that post for Kriesi…

    Best regards,

    Peter

    #115986

    Hi Bernt,

    Glad you were able to get things to your liking. SEO is a complicated subject and there isn’t really a right answer anymore these days. Even using multiple H1 on a page is completely fine and it has more to do with the html structure of where they are than having a single h1 per page.

    The most important thing is having accurate and relevant content for the site topic and the search engines will do the rest :)

    Regards,

    Devin

    #115914
    #115076

    Hi,

    I dont have an IE8, and my emulators don’t display this issue. Looking at the code affecting the logo http://i.imgur.com/LpXtWn6.png , a possible cause may be the max-width:100%; from the img definition earlier in the cascade.

    Try something like this in your /css/custom.css OR in Quick CSS located in Enfold > Theme Options > Styling … text area on bottom of that page

    #top .logo img {
    max-width: none !important;
    }

    Adding the code doesn’t affect IE10, Chrome or FF

    Thanks,

    Nick

    #115918

    I figured it out. I don’t know why the short code doesn’t work, but if you go into the advanced editor on the page you want your slider on, then choose the Media Elements tab, and click on Advanced Layer Slider. It will put it at the bottom, so you will need to drag it up top (I’m assuming that’s where you want it). Then choose the name of the slider you have made, and update the page. Hopefully that helps, and is a temporary solution. I would prefer if you could just add the short code. Hopefully it gets that option.

    #114861

    In reply to: Enfold child theme

    You can add a functions.php to your child theme folder – then insert following code into the child theme functions.php:

    /*
    * Register frontend javascripts:
    */
    if(!function_exists('avia_frontend_js'))
    {
    if(!is_admin()){
    add_action('wp_enqueue_scripts', 'avia_register_frontend_scripts');
    }

    function avia_register_frontend_scripts()
    {
    $template_url = get_template_directory_uri();
    $child_theme_url = get_stylesheet_directory_uri();

    //register js
    wp_register_script( 'avia-compat', $template_url.'/js/avia-compat.js', array('jquery'), 1, false ); //needs to be loaded at the top to prevent bugs
    wp_register_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), 1, true );
    wp_register_script( 'avia-shortcodes', $template_url.'/js/shortcodes.js', array('jquery'), 1, true );
    wp_register_script( 'avia-prettyPhoto', $template_url.'/js/prettyPhoto/js/jquery.prettyPhoto.js', 'jquery', "3.1.5", true);
    wp_register_script( 'avia-html5-video', $template_url.'/js/mediaelement/mediaelement-and-player.min.js', 'jquery', "1", true);

    wp_enqueue_script( 'jquery' );
    wp_enqueue_script( 'avia-compat' );
    wp_enqueue_script( 'avia-default' );
    wp_enqueue_script( 'avia-shortcodes' );
    wp_enqueue_script( 'avia-prettyPhoto' );
    wp_enqueue_script( 'avia-html5-video' );

    if ( is_singular() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); }

    //register styles
    wp_register_style( 'avia-style' , $child_theme_url."/style.css", array(), '1', 'screen' ); //register default style.css file. only include in childthemes. has no purpose in main theme
    wp_register_style( 'avia-grid' , $template_url."/css/grid.css", array(), '1', 'screen' );
    wp_register_style( 'avia-base' , $template_url."/css/base.css", array(), '1', 'screen' );
    wp_register_style( 'avia-layout', $template_url."/css/layout.css", array(), '1', 'screen' );
    wp_register_style( 'avia-scs', $template_url."/css/shortcodes.css", array(), '1', 'screen' );
    wp_register_style( 'avia-custom', $template_url."/css/custom.css", array(), '1', 'screen' );
    wp_register_style( 'avia-prettyP', $template_url."/js/prettyPhoto/css/prettyPhoto.css", array(), '1', 'screen' );
    wp_register_style( 'avia-media' , $template_url."/js/mediaelement/skin-1/mediaelementplayer.css", array(), '1', 'screen' );

    wp_enqueue_style( 'avia-grid');
    wp_enqueue_style( 'avia-base');
    wp_enqueue_style( 'avia-layout');
    wp_enqueue_style( 'avia-scs');
    wp_enqueue_style( 'avia-prettyP');
    wp_enqueue_style( 'avia-media');

    //register styles
    if($child_theme_url != $template_url)
    {
    wp_enqueue_style( 'avia-style');
    }

    global $avia;
    $safe_name = avia_backend_safe_string($avia->base_data['prefix']);

    if( get_option('avia_stylesheet_exists'.$safe_name) == 'true' )
    {
    $avia_upload_dir = wp_upload_dir();

    $avia_dyn_stylesheet_url = $avia_upload_dir['baseurl'] . '/dynamic_avia/'.$safe_name.'.css';
    wp_register_style( 'avia-dynamic', $avia_dyn_stylesheet_url, array(), '1', 'screen' );
    wp_enqueue_style( 'avia-dynamic');
    }

    wp_enqueue_style( 'avia-custom');

    }
    }

    #115589

    In reply to: Color Section

    Afaik this is not possible at the moment and the color section will always cover the full width of the page. If you feel like a setting/feature is missing you can suggest it here: https://kriesi.at/support/topic/enfold-feature-requests

    #115750

    Hi,

    no – unfortunately there’s no shortcode right now. I added your request to the feature request thread: https://kriesi.at/support/topic/enfold-feature-requests

    However for now you can use the character map: http://www.entypo.com/characters/ to find the unicode. I.e. for the telephone icon use:

    📞

    #114860

    In reply to: Enfold child theme

    Would be nice to have the child theme css load AFTER the main css. now we have to make all childtheme css a higher priority:

    #top #main .alternate_color.title_container .main-title a {color: #fff;}

    #115729

    Hi lounge35,

    Kindly check this thread: https://kriesi.at/support/topic/enfold-child-theme

    Regards,

    Ismael

    #115653

    Hi Andreano,

    Actually, unless you want to wait for something one day to be built or hire someone to build a custom importer, there is one way to do this relatively painlessly and would require a 39$ purchase , but I think the app is given with a 30 day free demo.

    http://www.jitbit.com/macro-recorder/

    You would need to use a macro recorder. You would open a browser window on right side of screen where new website shows, and on left side of screen where the old site shows. Then you would record yourself copying and pasting everything from old into new, including images, at the end you would return to old and delete the post you just moved, and stop the recorder.

    Then you put the recorder to play in a loop, and it will repeat all the copying and pasting that you did by itself, you can leave and let it endless copy all the 700 posts. It will probably take a full day or more, but since you do not have to do it yourself, but only once to make the initial recording, I think that is not a bad approach.

    The one of the two minor difficulties is that the macro recorder has no way of being able to tell which category checkboxes are checked as it has no bionic eyes, so solution would involve adding a line of code to the edit post/page/portfolio item page so that the categories which are normally checked, are instead displayed in a text box, each separated by commas, so then its just cut and paste

    The second problem is that if some of your posts have 2 images and others have a different number, then there will be problem since macro recorder just repeats your initial actions . Though I also have an idea. You can record 3 mini macros , one mini macro for posts with one featured image, another for posts with two images and yet another for three images on a page, and then to add and display an aditional field which would contain a number representing the total number of featured images contained within the post. The macro recorder is able to run a basic if/then/else then statement and based on the number in the field it would execute one of the mini macros. Solved 100%.

    I made a video of me doing this and its working! wow. https://docs.google.com/file/d/0B8hqGBMSfHtKcW9LLW1XZ3hyQVE/edit?usp=sharing … my speaker went crazy so i am sorry about the background hissing.

    Thanks,

    Nick

    #115663

    In reply to: Social media icons

    Hi yingfuli,

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    #top .social_bookmarks li a {
    font-size: 17px;
    }

    Adjust the font size as needed. Though it does degrade a bit at that size (the default is 13px).

    Regards,

    Devin

    #115547

    Hi tlow87,

    Try changing the size of the video iframe first since that height is what is setting its height. Otherwise, Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    #top .flex_column .embed-youtube iframe {
    width: auto !important;
    height: auto !important;
    }

    Regards,

    Devin

    #22436
    andyhoodified
    Participant

    Is there a way to make it look like theme’s blog format on the front page.

    It’s another theme. (don’t worry, i prefer your overall theme much more)

    http://para.llel.us/themes/moxie-wp/

    Their blogging format is a lot more organized and not as jumbled up.

    Which leads me to the second question is there a way to erase the image icon that goes on top of the image?

    thanks much andy

    #22428
    joe88
    Participant

    Hello. It seems like the portfolio item spacing top/bottom is lost when using a title that has more than 1 line of text. Does the css have to be modified to support titles with more than 1 line, for example, 2 lines of text. Thanks.

    #22406
    Devin
    Inactive Moderator

    I’m doing some videos showing different layouts that can be built with the new Avia Page Builder. If you have any requests for specific layouts or ideas for me to try I would love to hear them.

     

    Just leave them as a reply here and I will post them when they are done. To keep the topic clean I’ll delete responses but I do have them noted :)

     

    Current videos can be found on the AviaThemes channel here: https://vimeo.com/channels/aviathemes

     

    
    Install the theme files with FTP - https://vimeo.com/channels/aviathemes/64927356
    
    Update the theme files with FTP - https://vimeo.com/channels/aviathemes/67209750
    
    Intro to the Advanced Layout Editor (short) - https://vimeo.com/channels/aviathemes/64927358
    
    Using the Advanced Layout Editor (long) - https://vimeo.com/channels/aviathemes/64927359
    
    Add the Layout Editor to Custom Post Type & Posts - https://vimeo.com/channels/aviathemes/64996057
    
    Add Google Maps widget to a sidebar - https://vimeo.com/channels/aviathemes/64978020
    
    Make a thumbnail Gallery with the Layout Editor - https://vimeo.com/channels/aviathemes/65208795
    
     
    
    From the LayerSlider plugin Authors on using the LayerSlider: http://www.youtube.com/watch?v=ZY9SxVyugx4
    

     

    Regards,

     

    Devin

     

    • This topic was modified 11 years, 10 months ago by Devin.
    #115521

    In reply to: Image – The Office

    Hi joe88,

    That is just a Color Section set with a background image set to Fixed. Then the content on top of it :)

    Regards,

    Devin

    #115431

    Hi Sebastian,

    That is a color section with a custom image as the background. Then inside of it, three Icon Box Content Elements with the icon placed in the Top position with each icon box in a 1/3 layout element.

    Regards,

    Devin

    #115504

    Hi AlexiaNin,

    I’m not quite sure what you mean. The only header options that are available are those in the theme settings>header. If you wanted something outside of that, you can request it in the Feature request topic here: https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Devin

    #115105

    Hi,

    If you can take a screenshot and point out the line , it would help those of us without Macs to figure out where its coming from.

    But going blindfolded , please try adding this to /css/custom.css OR to Quick CSS located in Enfold > Theme Options > Styling … the text area on the bottom of the page.

    #top .special-heading-inner-border {
    width: 0%;
    }

    Thanks,

    Nick

    #114519

    [Edit: Code below works with single point map. If you want driving directions, a better solution is found on this url https://kriesi.at/support/topic/google-maps-widget-in-custom-widget-area#post-106864 ]

    Hi,

    Ok, Once you make the replacement below, everything will work fine. Please open up /framework/php/class-framework-widgets.php and find line 1177 which looks like

    $output .= "<script type='text/javascript'>

    and delete line 1177 and all other lines till the end of the file.

    In their place, please paste the code below

    $output .= "<script type='text/javascript'>
    function makeMap_".$avia_config['g_maps_widget_active']."() {
    var latlng = new google.maps.LatLng(".$lat.", ".$lng.")
    var myOptions = {
    zoom: ".$zoom.",
    center: latlng,
    mapTypeControl: true,
    mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
    navigationControl: true,
    navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
    mapTypeId: google.maps.MapTypeId.".$type."
    };
    var map = new google.maps.Map(document.getElementById('avia_google_maps_$unique'), myOptions);
    var contentString = '$content.$directionsForm';
    var infowindow = new google.maps.InfoWindow({
    content: contentString
    });
    var marker = new google.maps.Marker({
    position: latlng,
    map: map,
    title: ''
    });
    google.maps.event.addListener(marker, 'click', function() {
    infowindow.open(map,marker);
    });
    }
    jQuery(document).ready(function() {
    makeMap_".$avia_config['g_maps_widget_active']."();
    });
    </script>
    <div id='avia_google_maps_$unique' class='avia_google_maps_container'></div>";

    return $output;
    }

    Thanks,

    Nick

    #22350
    AlexiaNin
    Participant

    Hello, I’m AlexiaNin, I tried to put the unfixed header, selecting all the header types, except Small fixed headed, logically, and also I tried in diferent sizes but does not work for me. I like when header with menu scroll dawn when you navigate.

    Also my Logo appears not well centered and too much space below than in top, and looks like not so well.

    Can you help me?

    (Sorry for my poor english)

    Thanks.

    #22326

    Topic: Bug with archive pages

    in forum Enfold
    sanderpinkse
    Participant

    I just discovered that when I choose the Grid Layout in the Enfold Blog Style settings, all archive pages stop working. It took me a while to find out why this was happening, but looking at the contents of archive.php gave me a clue…

    I would like to use the Grid Layout, but I like having my archive pages even more… Would this be easy to fix?

    Cheers,

    Sander

Viewing 30 results - 141,841 through 141,870 (of 141,901 total)