Viewing 30 results - 142,051 through 142,080 (of 142,595 total)
  • Author
    Search Results
  • #121257

    In reply to: Sidebar Styling

    Hi,

    1.) The sidebar expands when there are widgets present. It has no definite height. You need a javascript of some sort to make the sidebar inherit the height of the content area. A simple solution is to define a minimum height for the sidebar but this is not flexible and may not be appropriate for all types of pages. Add this on your Quick CSS or custom.css

    #top #main .sidebar {
    background: red;
    min-height: 600px;
    }

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

    .widgettitle {
    border-bottom: 1px dotted red;
    padding-bottom: 10px;
    }

    3.) To add a bottom separator, you can use this

    .widget {
    border-bottom: 1px solid black;
    }

    Regards,

    Ismael

    #118996

    Hi,

    Glad they are fixed.

    For the header background, please follow these links.

    https://kriesi.at/support/topic/mega-menu-bug#post-108100

    https://kriesi.at/support/topic/header-background-image-2

    Cheers,

    Ismael

    #118142

    In reply to: Child Theme

    Gday Enfold

    Brilliant theme, best i’ve used, though I ordinarily always use child themes.

    I noticed that if you don’t set up a child theme immediately in enfold, and instead already have experimented with the enfold styling options, the new child theme does not retain the styles.

    Is there a way to retain what was already styled?

    Other threads (topics closed) have indicated that the styles will be kept if the child name is the same as the parent (enfold). But i’m not sure how can that be set up so there is no directory name conflict?

    Seriously great work in this theme. I think it will be even better with good documentation on how to use child themes with enfold.

    #23833

    Topic: Custom Menu

    in forum Enfold
    matthewsean
    Participant

    Hi,

    The theme is not letting me create a custom navigation menu. Instead, it is placing every top level page on the navigation bar. patentmalpractice.com

    #23831
    comlor
    Participant

    Hi I need to decrease the footer spacing. What file / code do I edit to cut down the padding on top and bottom of footer socket area?

    Thanks much,

    Chris

    #23829

    Topic: Change Top Menu Colors

    in forum Enfold

    I have in Admin set the orange, white and grey colors used on site but i am unable to change top menu colors:

    http://suiciderescue.se/wordpress/

    I want Links to be white and upon click black will indicate what page user is on.

    the submenu must be orange with white text on and when mouse over the sub menu

    it´s BG can be white as today, but then text should be orange.

    I did try to follow the video you great guys here at support posted but was unable to get changes done :(

    Please assist and you will make my day!

    Thanks

    #120501

    Hi,

    Site looks good. Put up a maintenance plugin that allows password entry, to keep google out.

    Please turn off the super cache plugin and the minify plugin while developing or you will never see your edits but edits from however long ago the cache was created, making you think you are going crazy and that the theme is your nemesis, when the cache plugin is just doing its job.

    Simple Icon Plugin on the Bottom. What is it destroying, braking or messing up? Looks like the glyphs are coming through and the social icons are lined up in correct rows. The plugin uses Entype font from Fontello which is already part of the theme (icons in the icon box). It seems to be in two rows.

    This is the css to change the social icons distance from each other. its set as you have it currently. change 6 and 12 a few different ways and see how you like it best

    #top .simple-social-icons ul li {
    margin: 0 6px 12px !important;
    padding: 0 !important;
    }

    For now lets start with that, and after you disable those two plugins, and added the code, try again the flicker plugin, i think that everything should be working now.

    Oh yeh… You have a file of great evil which is being enqueued that you must destroy most likely via using ftp. it is located in wp-content/themes/enfold/config-layerslider/LayerSlider/skins/ folder and goes by ‘.DS_Store’ , somehow it is being enqued into the theme by the minifier probably …

    Thanks,

    Nick

    #120567

    In reply to: Header area

    Hi,

    Please add this to /css/custom.css OR to Quick CSS located in … Enfold (Theme Options) > Styling .. the text box at the bottom of the page.

    li .avia-menu-fx, .current-menu-item>a>.avia-menu-fx, li .current_page_item>a>.avia-menu-fx {
    position: relative;
    display: block;
    top: -30px;
    }

    Please tweak the above number to get the look you want.

    Thanks,

    Nick

    #121149

    I would also be willing to do this manually in some way. For example, entering in the title “Desktop Wallpapers” in the excerpt of each entry.. or something similar.

    I just want the category to be displayed at the top of each portfolio entry.

    Thanks again for all your help. Sincerely appreciated! :)

    #121148

    Is there any other step I need to take in order for it to display “Desktop Wallpapers” (the name of the portfolio category) ?

    I made the change you suggested and nothing seemed to change.

    http://godsfingerprints.net.s168021.gridserver.com/?portfolio=come-near-to-god

    Code below:

    <?php

    global $avia_config;

    /*

    * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.

    */

    get_header();

    $terms = get_the_terms( get_the_ID(), ‘portfolio_entries’ );

    foreach ($terms as $term) {

    $title = $term->name;

    break;

    }

    if( get_post_meta(get_the_ID(), ‘header’, true) != ‘no’) echo avia_title( array(‘title’ => $title) );

    ?>

    <div class=’container_wrap main_color <?php avia_layout_class( ‘main’ ); ?>’>

    <div class=’container’>

    <div class=’template-page template-portfolio content <?php avia_layout_class( ‘content’ ); ?> units’>

    <?php

    /* Run the loop to output the posts.

    * If you want to overload this in a child theme then include a file

    * called loop-page.php and that will be used instead.

    */

    $avia_config = avia_layout_class( ‘main’ , false) == ‘entry_without_sidebar’ ? ” : ‘entry_with_sidebar’;

    get_template_part( ‘includes/loop’, ‘portfolio-single’ );

    ?>

    <!–end content–>

    </div>

    <?php

    //get the sidebar

    $avia_config = ‘page’;

    get_sidebar();

    ?>

    </div><!–end container–>

    <?php get_footer(); ?>

    #23825

    Topic: Sidebar Styling

    in forum Enfold
    joe88
    Participant

    Hello. I have a couple of questions regarding the sidebar. Thanks!

    1) Is it possible to change the color of the side bar area? I see something like #top #main .sidebar, but that seems to only account for the widget area being used. How can apply a color to the entire length of the sidebar area?

    2) Is it possible to add an underline style under the sidebar widget title?

    3) Is it possible to add a separator in between sidebar widgets? I see there was a separator in the code at one point, but it seems to be visible, even if there is only 1 sidebar widget.

    #121236

    Hi jgwyant,

    At the top of the page editor, look for the Screen options tab and open it up. Then see if the Advanced Layout Editor checkbox is checked. If it is not, check it and the option should appear once again.

    If its already checked, try re-installing the theme files on top of themselves in case something got corrupted somehow.

    Regards,

    Devin

    #23818
    Jamie Wyant
    Participant

    I just lost the “Advanced Layout Editor” on the website. Nothing displays. All was well last evening when I stopped work for the day. Today – I used WP plug-in Redirection (http://urbangiraffe.com/plugins/redirection/) to enter 301’s. When I went to edit pages – the layout editor was “gone”.

    Tried deactivation Redirection – didn’t help.

    Oh – I just activated the theme at this location – moved content from a development location yesterday. If that helps.

    website is http://www.amequipment.com

    I am desperate. Please help.

    #23816
    jeesse
    Participant

    Hi,

    First, it must absolutely be one of the best themes in ThemeForest! :)

    Couple questions…

    1. How can I set my Layer Slider like Enfold test side. My slider work good to my screen but when I look my site to Ipad or Phone, layers go right side. I want that layer stay in the middle. What I should to do?

    2. How do I remove Secondary Menu top of the page?

    There is my test site: http://wordpress.jessedesign.fi/

    Thank you!

    #121115

    You can use the debug mode to copy the shortcode content. Open up functions.php and you insert this code

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

    at the very top – insert it before:

    global $avia_config;

    2) The debug field will be displayed underneath the editor. Copy this code and insert it into the standard editor (other website). Then save the post and the template builder should convert the shortcodes to an advanced layout.

    #121118

    In reply to: Isotope-gallery

    Ok thanks for that. I will keep to the galleries you already have. Would be nice to have a gallery which opens up full screen and has the options of images within each image. Like this example…

    http://codecanyon.net/item/igallery-interactive-wordpress-photo-gallery/full_screen_preview/4383911

    At the moment you have to have different galleries for each subject. For example one for location work one for studio work etc etc.

    Anyway thanks for the update, you all do good work :-)

    #120949

    Hm, I tested it now and my instructions are wrong. You need to add the code to functions,php and you MUST insert it at the very top – insert it before:

    global $avia_config;

    2) You don’t need to switch to to the standard editor but the debug field will be displayed underneath the editor. Copy this code and post here please.

    #23809
    andypeck
    Participant

    hi there,

    Ive managed to lock the ‘fixed’ menu and stop it from doing the shrink effect when you scroll the page. How do I now reset the drop down menu line spacing to the right line height as the following code fixes the ‘shrink effect’ but messes up the line depth on the rollover drop down (see ‘ABOUT’ on dummy menu)

    the code that locked the menu is….

    strong.logo img, #header_main .container, .main_menu ul:first-child > li a {

    height: 60px !important;

    line-height: 60px !important;

    padding-top:3px !important;

    }

    Cheers

    Andy

    #121117

    In reply to: Isotope-gallery

    Tbh we did not test it. There’s a high chance that it will conflict with Enfold because we use the isotope script for the portfolio sorting and if the plugin and the theme load the isotope script you can provoke a js error/conflict easily.

    #121114
    #121029

    Hi!

    You can use following code:

    #top .main_color input[type="text"], #top .main_color textarea{
    border-color: gray;
    background-color: red;
    color: blue;
    }

    Best regards,

    Peter

    #23808
    dsgnerfw
    Participant

    Hi guys , I’m totally clueless with responsive design since I’m more of a fixed width layout kind of a guy. I understand the layout slider uses layers and transparent png files.

    I want to know about

    > In the enfold example, the first slide is this wooden floor , and there’s a monitor, laptop , phone and text .

    This wooden floor << what is the exact size or recommended size for a background in the layout slider ?

    For the transparent png’s , I don’t get it. Do you need to make sure the png’s inside can be contained in a 960 width or lesser layout ?

    Or to sum it up. How do I make the background images , and other images in the slides compatible with most formats ( mobile, pc, etc ) ?

    #120957

    Hey!

    Insert following code into the quick css field:

    #top div .avia-gallery {
    clear: both;
    }

    We’ll fix this in the next version.

    Best regards,

    Peter

    #118731

    In reply to: Portfolio instructions

    #120823

    Hi,

    Open config-templatebuilder > avia-shortcodes > testimonials.php, find this code

    //final output

    $output .= "<div class='avia-testimonial {$class}'>";
    if($grid) $output .= $avatar;
    $output .= "<div class='avia-testimonial-content'>";
    $output .= wpautop(ShortcodeHelper::avia_remove_autop($content));
    $output .= "</div>";
    $output .= "<div class='avia-testimonial-meta'><div class='avia-testimonial-arrow-wrap'><div class='avia-arrow'></div></div>";
    if(!$grid) $output .= $avatar;
    $output .= "<div class='avia-testimonial-meta-mini'>";
    if($name) $output .= "<strong class='avia-testimonial-name'>{$name}</strong>";
    if($subtitle) $output .= "<span class='avia-testimonial-subtitle'>{$subtitle}</span>";
    if($link) $output .= " &ndash; <a class='avia-testimonial-link' href='{$link}'>{$linktext}</a>";
    $output .= "</div>";
    $output .= "</div>";
    $output .= "</div>";

    Replace it with

    //final output

    $output .= "<div class='avia-testimonial {$class}'>";
    if($grid) $output .= $avatar;
    $output .= "<div class='avia-testimonial-content'>";
    $output .= wpautop(ShortcodeHelper::avia_remove_autop($content));
    $output .= "</div>";
    $output .= "<div class='avia-testimonial-meta'><div class='avia-testimonial-arrow-wrap'><div class='avia-arrow'></div></div>";
    if(!$grid) $output .= $avatar;
    $output .= "<div class='avia-testimonial-meta-mini'>";
    if($name) $output .= "<strong class='avia-testimonial-name'>{$name}</strong>";
    if($subtitle) $output .= "<span class='avia-testimonial-subtitle'>{$subtitle}</span>";
    if($link) $output .= " &ndash; <a class='avia-testimonial-link' target='_blank' href='{$link}'>{$linktext}</a>";
    $output .= "</div>";
    $output .= "</div>";
    $output .= "</div>";

    Cheers,

    Ismael

    #121061

    In reply to: custom js ?

    Hi,

    You can add additional javascript on functions.php. Find this code

    //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' );

    You can add your own there. We cannot assure you that every javascript is compatible with the theme.

    To register another script add something like this

    wp_register_script( 'new-script', $template_url.'/js/new-js.js', 'jquery', "1", true);

    Then link the new script with this

    wp_enqueue_script( 'new-script' );

    Regards,

    Ismael

    Hi,

    It is not possible according to Kriesi.

    https://kriesi.at/support/topic/caption-in-lightbox

    Regards,

    Ismael

    #120326

    Hi,

    Ok. Please remove the previous code and use this instead. It will anchor it this time.

    #top .cart_dropdown.visible_cart {
    right: -1px;
    top: 21px;
    display: inline-block;
    position: absolute;
    }

    Thanks,

    Nick

    #120346

    Hi,

    Please make sure all categories have a description, because when there is no description: Choice 1 below will push down from the category image and on pages with no description everything will look good, however on pages that have a description, Choice 1 will push the description down as well. Choice 2 will push from the category description , creating a space between the description and product images. However if there is no category description, the description container will also be missing, so nothing will change on those pages. So please make sure that **every category and sub-category** have a description and an image.

    Use 1 or 2 (read above for explanation, if both are used, there will be space between category image and description, and space between description and product images)

    1. To create the space between category title and products please add this css, and adjust bottom margin as needed (it is 0 currently).

    #top.tax-product_cat .page-thumb {
    margin-bottom: 50px;
    }

    2. To create the space between category description and products use this css.

    #top.tax-product_cat .term-description {
    margin-bottom: 50px;
    }

    ==================

    To add a separator will be more difficult and will involve editing the plugin. Since you didnt specify , i just included instructions above on how to add space.

    =========

    To change the size/color etc. of title this is the current css (i didnt modify anything, change font size below)

    #top.tax-product_cat .title_container .main-title {
    font-size: 16px;
    min-height: 36px;
    line-height: 2.3em;
    font-weight: 400;
    }

    ==================

    To modify the space between product images change the % in the code below (top, right, bottom, left) . So keep 2 of the 4 at 0%

    You can use decimals so 1.1% is a good place to start

    #top.tax-product_cat .shop_columns_3 .products .product {
    margin: 0% 1% 1% 0%;
    }

    Thanks,

    Nick

    #120513

    Hi Ismael, thanks for your answer. However, it seems that you didn’t understand: the first cell of the first column, in Desktop view, disappears from the table in Mobile view. Please see my screenshots (http://imgur.com/a/f5Xuh): in the mobile view (first image) the first cell should read: “Contest date” no “Total Days”, just as it reads in the Desktop view (second image). See also this page in my site: http://test.crowdini.com.php53-17.ord1-1.websitetestlink.com/home-login and check the table titled “All Active Contests”: the column header “CONTEST” gets replaced by “USERS LEFT” when you change fro desktop to mobile view.

Viewing 30 results - 142,051 through 142,080 (of 142,595 total)