Viewing 30 results - 141,511 through 141,540 (of 142,588 total)
  • Author
    Search Results
  • #125971

    Hi,

    If you on windows, download and install the free http://www.winmerge.org tool. Then you can compare any two folders on a character by character basis side by side. So I just download the update to my desktop, then download the live site (or rather I have a copy of it). And then I compare the two folders. Its easy to see what was changed and to move the changes you want while ignoring the rest. Easy to use and it is Free.

    Nick

    #124876

    Hi,

    Your menu is too big. I am on a laptop 1360×768, and i can only see the top 2 menu items – API & Authentication – on your bottom most menu on the right. What’s worse is that because your menu immediately scrolls down as i scroll down , I never have an opportunity to click all the links below the first two

    ===

    Create an array of id’s that you put in the order you want and use the array instead. Here is

    global $post_ids;

    $post_ids = array(56, 4, 66, 34, 56, 6);

    $args = array(

    'post__in' => $post_ids // should be an array

    'numberposts' => 6

    );

    add_filter('posts_orderby', 'you_best_be_keepin_order'); // add the filter function to order posts in our given order

    $posts = get_posts($args);

    remove_filter('posts_orderby', 'you_best_be_keepin_order'); // remove the filter as we get our posts

    // filter function
    function you_best_be_keepin_order() {

    global $post_ids, $wpdb;

    $post_ids = implode(',', $post_ids); // we made the post ids a string where post ids are separated by comma

    return "FIND_IN_SET(".$wpdb->posts.".ID, '".$post_ids."') ASC"; // FIND_IN_SET is used to get posts in proper order
    }

    Thanks,

    Nick

    #124461

    Hi,

    Please check the Screen Options on top of Add New Page, that the Avia Layout Builder check box is checked ( see image http://www.clipular.com/c?7803713=XY6hHvNqhmEFb8GGM8qxpRriUME&f=.png )

    Please increase your wordpress memory to 96megs or 128megs . This issue almost always is caused by low wordpress memory allocation by your host.

    Thanks,

    Nick

    #125698

    Hi,

    Comments are not supposed to show up in pages , but only in posts. They need to be activated to work in pages or portfolio items.

    Here is the code to have the comments work for portfolio items. https://kriesi.at/support/topic/comments-dont-show-up-on-portfolio-pages#post-117921

    Thanks,

    Nick

    #125281

    Hi,

    Are you using Layout builder for posts?

    What do you have defined on top of Settings > Reading .. it should look like this http://www.clipular.com/c?7958741=FGXIlfgdnQ9LVpNjooXHyOvjIas&f=.png

    How about settings on this page, http://www.clipular.com/c?7959783=hSlBywMb7V1_7zmmtkPMyC2VfOw&f=.png

    Thanks,

    Nick

    #126055

    Ok, i have found a workaround

    i deactivate WPML plugin

    then i save permalink

    and again activate WPML

    https://kriesi.at/support/topic/wpml-error-404-page-not-found

    #125803

    I did this and it had no effect at all. I will make the site available on the web so you can see the result later today. Tim

    #123895

    Hi,

    Please try this

    Lets look at your requirements:

    1) Don’t want thin line sitting on top of highlight box

    2) Want the ‘thin’ line positioned *behind* the thick orange highlight box

    Please try this css, at very bottom of custom.css

    @media only screen and (min-width: 768px){
    #top .main_menu {
    z-index: 1 !important;
    height: 32.5px !important;
    }}

    Lets see if code solved requirements:

    View post on imgur.com

    Yes it does. Though because the orange thingy is 4px high , positioning it will require the orange thingy to be 1px thicker. easiest way.

    Thanks,

    Nick

    #25167
    DesignerKen
    Participant

    I have two pages that use the special heading as a H3 tag and one has a top-margin and the other doesn’t. I know I can tweak the CSS to remove the margin but trying to figure out why they are not consistent.

    2yyuolz.jpg

    .av-special-heading {<br />
    clear: both;<br />
    display: table;<br />
    margin-top: 50px;<br />
    width: 100%;<br />
    }

    f1h1qw.png

    This overwrites the margin-top: 50px; inthe code above.

    body .container_wrap .avia-builder-el-first {<br />
    margin-top: 0;<br />
    }

    #25165

    Topic: A few questions

    in forum Enfold

    Firstly, congratulations on a really fantastic theme. I have a few questions that I would be grateful if you could answer them.

    1. I am using ‘justified image grid’ and ‘jQuery lightbox’ for my galleries.

    The problem is, when, I click on a thumbnail, 2 lightboxes pop up: the jQuery one and the default theme one.

    Is there a way I can disable the them default lightbox altogether.

    I have tried this solution: https://kriesi.at/support/topic/disable-lightbox-on-spefic-pages-so-other-light-box-can-work

    but it it changed nothing.

    Here is a link to a sample gallery where this is happening:

    http://www.barryocarrollphotography.com/prague/

    2. Is there a way to remove all navigation arrows and bullets from the slideshows.

    http://www.barryocarrollphotography.com/

    3. I cannot seem to find where I can change the color of the menu items. The current color is a mid grey and the selected item is white. How can I change the unselected color?

    #125519

    Hi,

    Sorry for the delay. This css code will make phone number red and bigger., please add it to /css/custom.css file OR to quick css located in Enfold > Layout Styling (under theme options):

    .social_header .phone-info {
    color: #F00;
    font-size: 1.35em;
    }

    Add this css code to one of the two locations described by me earlier in this post. It will shrink your form

    .ajax_form p {
    float: none;
    width: 70%;
    }

    #top .ajax_form .text_input, #top .ajax_form .select{
    padding: 8px !important;
    }

    #top .ajax_form .text_area{
    padding: 6px !important;
    height: 100px;
    }

    Thanks,

    Nick

    #25156
    dswreclame
    Participant

    Hi there,

    first of all I gotta say I like the Enfold template a lot, good work.

    I was wondering if there is a possibility to place the breadcrumbs in the top of the left sidebar

    also, is it possible to make a menu in the left sidebar that works like this:

    http://www.interspire.com/content/content_images/images/buildingadhtmlmenu/dhtmlmenu.gif

    so when an item is selected, the sub items will show and, of course, disappear when another item is selected

    Thanks in advance,

    Matthijs

    #125067

    In reply to: Using Advancer Editor

    Hi!

    You can use the debug mode if you want to copy the content https://kriesi.at/support/topic/export-theme-settings-and-templates

    Regards,

    Peter

    #125798

    Add following code to the buttom of functions.php:

    // THIS GIVES US SOME OPTIONS FOR STYLING THE ADMIN AREA
    function avia_editor_fix_style() {
    echo '<style type="text/css"> .avia-modal { top: 60px !important; } </style>';
    }

    add_action('admin_head', 'avia_editor_fix_style');

    Obviously you can replace 60px with another value.

    #125802

    Open up wp-contentthemesenfoldconfig-woocommerceconfig.php and delete following line:

    if($image) echo "<div class='page-thumb'>{$image}</div>";

    If you want to replace it with the term name replace the line above with

    echo $term->name;

    Hi,

    1. Remove the top bar above the header

    Add this on your custom.css or Quick CSS

    #header_meta {
    display: none;
    }

    2. Reduce the whitespace found across all pages between the menu and text

    I’m not sure what whitespace you’re referring to since the link you gave almost have no content in it.

    .template-page.content.twelve.alpha.units {
    padding-top: 10px;
    }

    3. Reduce the white space above and below the horizontal ruler.

    You can use this

    .hr {
    height: 10px;
    margin: 10px;
    }

    Adjust the values.

    Regards,

    Ismael

    #125505

    1) See https://kriesi.at/support/topic/custom-font-with-cyrillic-symbols – you can add a new font or overwrite an existing font – a list of all supported fonts can be found in wp-contentthemesenfoldincludesadminregister-admin-options.php

    'Alice'=>'Alice',
    'Allerta'=>'Allerta',
    'Arvo'=>'Arvo',
    'Antic'=>'Antic',

    'Bangers'=>'Bangers',
    'Bitter'=>'Bitter',

    'Cabin'=>'Cabin',
    'Cardo'=>'Cardo',
    'Carme'=>'Carme',
    'Coda'=>'Coda',
    'Coustard'=>'Coustard',
    'Gruppo'=>'Gruppo',

    'Damion'=>'Damion',
    'Dancing Script'=>'Dancing Script',
    'Droid Sans'=>'Droid Sans',
    'Droid Serif'=>'Droid Serif',

    'EB Garamond'=>'EB Garamond',

    'Fjord One'=>'Fjord One',

    'Inconsolata'=>'Inconsolata',

    'Josefin Sans' => 'Josefin Sans',
    'Josefin Slab'=>'Josefin Slab',

    'Kameron'=>'Kameron',
    'Kreon'=>'Kreon',

    'Lobster'=>'Lobster',
    'League Script'=>'League Script',

    'Mate SC'=>'Mate SC',
    'Mako'=>'Mako',
    'Merriweather'=>'Merriweather',
    'Metrophobic'=>'Metrophobic',
    'Molengo'=>'Molengo',
    'Muli'=>'Muli',

    'Nobile'=>'Nobile',
    'News Cycle'=>'News Cycle',

    'Open Sans'=>'Open Sans:400,600',
    'Orbitron'=>'Orbitron',
    'Oswald'=>'Oswald',

    'Pacifico'=>'Pacifico',
    'Poly'=>'Poly',
    'Podkova'=>'Podkova',
    'PT Sans'=>'PT Sans',

    'Quattrocento'=>'Quattrocento',
    'Questrial'=>'Questrial',
    'Quicksand'=>'Quicksand',

    'Raleway'=>'Raleway',

    'Salsa'=>'Salsa',
    'Sunshiney'=>'Sunshiney',
    'Signika Negative'=>'Signika Negative',

    'Tangerine'=>'Tangerine',
    'Terminal Dosis'=>'Terminal Dosis',
    'Tenor Sans'=>'Tenor Sans',

    'Varela Round'=>'Varela Round',

    'Yellowtail'=>'Yellowtail',

    Eg if you want to use Open Sans with Cyrillic characters add following code to the bottom of functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,700,400italic,700italic&subset=cyrillic';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,700,400italic,700italic&subset=cyrillic';
    return $fonts;
    }

    2) To change the body font size insert following code into the quick css field and change the font size/line height value:

    body {
    font: 13px/1.65em "HelveticaNeue", "Helvetica Neue",Helvetica,Arial,sans-serif;
    }

    The first value is the font size, the second value the line height.

    You can change the headline sizes with

    h1 { font-size: 34px; line-height: 1.1em; margin-bottom: 14px;}
    h2 { font-size: 28px; line-height: 1.1em; margin-bottom: 10px; }
    h3 { font-size: 19px; line-height: 1.1em; margin-bottom: 8px; } /*28*/
    h4 { font-size: 17px; line-height: 1.1em; margin-bottom: 4px; } /*21*/
    h5 { font-size: 16px; line-height: 1.1em; } /*17*/
    h6 { font-size: 14px; line-height: 1.1em; }

    Here is page intended for homepage see the size of video, it’s crazy, I added width to 530 height to 315 & is still HUGE . . .

    http://essentialmessagemarketing.com/homepage

    Also, we are having great difficulty using background image, we have an image sized to 1600 x 1600 & it will only display the top half of the background, is not on homepage at the moment as it isn’t working, also where do we go to set custom css rules?

    Thank you.

    #25144
    andypeck
    Participant

    Hi there,

    I want to remove borders, spacing of a gallery but just for one part of my website. How do I write the CSS code?

    I know the page ID……. SEE BELOW

    .page-id-1739 #av_section_1.avia-builder-el-8 {

    I know the code to remove borders etc……… SEE BELOW

    #top div .avia-gallery img {

    float: left;

    border-style: solid;

    border-width: 0 !important;

    padding: 2px;

    width: 100%;

    border-radius: 0;

    }

    How do I put that together soo it only effects that page ID number section. I want the gallery to be normal everywhere else.

    Cheers

    Andy

    #125685

    Hi,

    Can you give us a link to your website?

    You can upload an image using the Image element under Media Elements tab if you are using the Advance Layout Editor. You can also use the default Add Media button on top of the editor.

    Regards,

    Ismael

    #125870

    Its Ok…. sussed it out.

    For those interested in knowing how to do the gallery with no borders without playing with CSS.

    Just add a basic text block from the builder, add media, select or upload photos, create a gallery (on top left), create gallery, Done!

    Its basic and has no rollover effect but thats how its done.

    I assume the others in the demo have been tinkered with in CSS but if I find out ill share the news although I suspect im the last yo know and youve already worked it out yourself. Still always good for someone new I guess

    cheers

    #125822

    In reply to: Quform

    Hi,

    Please add this on your custom.css or Quick CSS

    #top input[type="text"] {
    margin-bottom: 0;
    }

    .iphorm-inner.iphorm-inner-1 > br {
    display: none;
    }

    Regards,

    Ismael

    #25143
    Scott
    Participant

    I am so happy you added the Ajax Portfolio to the Enfold theme. I have had no problem adding the items I want but for some reason, when adding a video, it only opens up in lightbox. When I use the same Ajax Portfolio in the Choices theme, you click on the featured image, just like you do for a picture, and slides to the top and gives a brief description of the video. In Enfold, you click on the image and it just opens in lightbox instead of suing the Ajax feature. Hope that makes sense.

    Am I doing something wrong? I have even tried adding preview images.

    Scott

    stats4stem
    Participant

    Hi,

    Here is a link to my issue (image provided):

    http://www.helpwithstats.com/?page_id=222

    Essentially, in the enfold theme, how do I:

    1. Remove the top bar above the header

    2. Reduce the whitespace found across all pages between the menu and text

    3. Reduce the white space above and below the horizontal ruler.

    Is there is some css code that I can drop into the “Quick CSS” box to help with these modifications. For 2 and 3, I can do some trial and error with the code to find what is right.. just need some help with code :)

    Thanks!

    #25131
    andypeck
    Participant

    Hi there,

    on your demo page (ive not installed it as im building from afresh) and I see you have several galleries on this page that are different to the default regarding the thumbnail borders

    the top gallery has no border at all but has a fine margin between each image. How do I replicate but also do it so that it doesnt wreck the other galleries on that same page if I create another (with borders this time). Just like this page.

    Also, how do you replicate the others with a different margin to the borders. Am I missing a setting somewhere in the builder or does it all have to be done in CSS. Either way, how do i create this page?

    cheers

    Andy

    #25127
    DesignerKen
    Participant

    I edited the loop-index.php file by placing (includes > loop-index.php) in my child theme folder and editing the code according to this post.

    https://kriesi.at/support/topic/using-excerpts#post-119165

    This is indeed render the listing with an excerpt. But when I click the “read more” link I see in the URL its the single post but only the excerpt is displaying not the full post.

    #125530

    Thanks. I think it really seems to be intended to work that way, which is sad. Thanks again for the quick reply.

    #125415
    #125529

    Hi rhunecke,

    I believe the color section only works as a full width element. I’ll tag the topic for Kriesi to get confirmation for sure but I’m fairly sure its only intended to be a full width element in layouts.

    Regards,

    Devin

    #25123
    Daniel
    Participant

    Hello,

    I have no idea where this is in the code or how to do it, but I would greatly appreciate some help on this one.

    Basically in Enfold with WooCommerce installed, when you add a product it adds the nice ajax symbol top right of the shopping cart and then you can hover over it and see the items you have added and view cart and checkout.

    If you hover over those items you can then click on them and be taken to that product.

    Due to the fact I’m building a course website and have used ‘add to cart’ buttons and not actually the product pages. I want it so I can’t click on the items in the cart widget (ajax thing) I want it so people can just use it as a reference to see what’s in their cart and click to checkout or see cart etc..

    So in short I just want the items to still show exactly how they are but not hyperlinks or.. clicking on the items takes me straight to the cart and not the product?

    Hopefully that makes sense, been trying to find out where it’s putting the link tags then I could properly nut it out, but I’m here as a last resort.

    Cheers,

    Daniel :)

Viewing 30 results - 141,511 through 141,540 (of 142,588 total)