Viewing 30 results - 139,981 through 140,010 (of 142,730 total)
  • Author
    Search Results
  • #138047

    Hi Cdfb,

    1) This css in your Quick CSS is causing the issue:

    .grid-entry.flex_column.isotope-item.all_sort.no_margin.post-entry.av_one_third {
    min-height: 243px !important;
    height: 243px !important;
    }

    Its forcing the height to exactly 243px on those elements which is not tall enough for the 3rd image.

    2) Go to the theme options Sidebar options and choose not to display Page Sidebar navigation.

    3 and 4) On any page you can turn off the header from the Layout meta box on the right hand side of the page.

    Regards,

    Devin

    #28653
    kellymarie2001
    Participant

    Is anyone else experience some odd, buggy behavior with the advanced layout builder? I’m having to use it because I have a Layerslider on my home page, which as we know from past forums the shortcode for which does not work in the Default Editor.

    Specifically I’m working with some 1/3 column Text Blocks on the page. I’m adding simple stuff – a small image, a title, and some text – all centered.

    But the editor is adding paragraph styles to my images, there’s some weird padding going on with the images, the editor doesn’t always show the changes I’ve made (for instance, the image is actually centered on the live page but not in the editor). When I start messing around with the Header styles, they don’t always match even though they are the same header style (I’ve had to go into the text editor and remove extra coding that seems to conflict every time I make an edit to these text boxes).

    I suppose my question is: Is it supposed to be this buggy? and how do I gain more control over the spacing/padding around elements like headers and images?

    Lastly – on a different topic – can I remove the bread crumbs completely from the upper righthand column? (eg Home / Volunteer).

    URL is: http://www.greenway2020run.com/

    Thanks!

    Thanks!

    #137963

    Do you mean the standard text strings like on the search page: http://www.volantexrc.com/cn/?s= (“If you are not happy with the results bellow please do another search”, etc.)? If yes you must translate these strings with a po/mo translation file. I’d suggest to generate the po file with Codestyling: http://wordpress.org/plugins/codestyling-localization/

    Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Afterwards select your language from the list and click the “create po-file” button. Click on “Rescan” to fetch all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Or do you want to translate i.e, “ABOUT US”? If yes just open up the textblock element (seems to be part of a color section) and replace the text with your translation…

    #137776

    Hi wvanderzee,

    The changes are all based around media queries which respond to the users viewport. So if you want something to work on portrait but not mobile then the media query needs to be adjusted.

    Eg:

    /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
    @media only screen and (min-width: 480px) and (max-width: 767px) {

    .responsive #top #header {
    position: fixed;
    }

    }

    Now it will only effect viewports for 480px to 767px.

    Regards,

    Devin

    #135790

    In reply to: Making header smaller.

    If you want to force it then you just change it to:

    .social_header #header_main .container, .social_header .main_menu ul:first-child > li a {
    height: 116px !important;
    line-height: 116px !important;
    }

    You’ll want to add that into the custom.css inside the desktop only media query however and not just into the quick css so that it only effects desktop viewers and doesn’t incorrectly add issues to your mobile menu setup.

    #137835

    You need to go to Appearances>Menus to get to the menu manager first. Then go to the top right to get the screen options for that specific section of WordPress.

    The Menus manager is where you define your memories for WordPress and how you designate which menu is output where for the theme.

    #137929

    hi Devin..

    this fix works fine on my android tablet but apprently still missing on the ipad as per the other post here:

    https://kriesi.at/support/topic/no-drop-down-menu-option-on-ipad

    Is it maybe that the ipad allows for a larger resolution than the cutover in the css?

    #137832

    When viewing the menus manager go to the top right and click on Screen Options. There should be a check box for woo commerce categories which you can then add to the menu just like you would a page link.

    #138024

    In reply to: Landing Page.

    Hi Laskin,

    I happened to get to your other post on the same topic which I’ve asked for more information about. I’ll close this one for now so we can just have a single topic open: https://kriesi.at/support/topic/help-with-landing-page#post-136318

    In the future, please only make a single topic for a question.

    Regards,

    Devin

    #137469

    Still not working on my end. I see it working on your test server.

    Is this a bug or it might be something wrong with my installation. I will try to install the theme on a test domain and server with nothing else, just the theme and see if it works there or not by default without any hacks.

    I’m copying below a bigger chunk of my code with your addons, please see if you spot any errors.

    /**
    * Frontend Shortcode Handler
    *
    * @param array $atts array of attributes
    * @param string $content text within enclosing form of shortcode element
    * @param string $shortcodename the shortcode found, when == callback name
    * @return string $output returns the modified html string
    */
    function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
    {
    global $avia_config;

    $avia_config['current_column'] = $shortcodename;

    $first = '';
    if (isset($atts[0]) && trim($atts[0]) == 'first') $first = 'first';

    if($first)
    {
    if(!empty($meta['siblings']['prev']['tag']) &&
    in_array($meta['siblings']['prev']['tag'], array('av_one_full','av_one_half', 'av_one_third', 'av_two_third', 'av_three_fourth' , 'av_one_fourth' , 'av_one_fifth' ,'av_textblock')))
    {
    avia_sc_columns::$extraClass = "column-top-margin";
    }
    else
    {
    avia_sc_columns::$extraClass = "";
    }
    }

    if(in_array( $shortcodename, array('av_one_third', 'av_two_third', 'av_three_fourth') )) $meta['el_class'] .= ' avia-small-width-slider ';
    if(in_array( $shortcodename, array('av_one_fourth' , 'av_one_fifth') )) $meta['el_class'] .= ' avia-super-small-width-slider ';

    $output = '<div class="flex_column '.$shortcodename.' '.$first.' '.$meta['el_class'].' '.avia_sc_columns::$extraClass.'">';

    //if the user uses the column shortcode without the layout builder make sure that paragraphs are applied to the text
    $content = (empty($avia_config['conditionals']['is_builder_template'])) ? ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content)) : ShortcodeHelper::avia_remove_autop($content, true);

    $output .= $content.'</div>';

    unset($avia_config['current_column']);

    return $output;
    }
    }
    }

    #28640
    artistic24459
    Participant

    I’m getting the following jquery error on all my pages

    GET http://chriswardphotography.net/wp-includes/js/jquery/jquery-1.10.2.min.map 404 (Not Found)

    I have read a few things that say its a plugin problem and will check it out later. Are you getting this error and is it something I should worry about?

    This is my website

    http://chriswardphotography.net/home/

    Here is a feed on the problem

    http://wordpress.org/support/topic/jquery-error-on-36-upgrade-jquery-1102minmap-404

    #137583

    In reply to: Blog videos preview?

    I’ve not been able to get that to happen on my end but I’ll tag Kriesi on the topic since he would know for sure if it was intended to work this way or not.

    Regards,

    Devin

    #127647

    Hi TonyMack,

    Try the troubleshooting tips from the codex on permalinks: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems

    There is a section specifically for pagination issues that may help.

    The sorting at the top will never pull from other pages however so that isn’t a bug but just the way the portfolio works.

    Regards,

    Devin

    #137364

    In reply to: Header font

    You can either change the colors via the themes Styling Options in the header tab or directly with css. For CSS, add the following to your Quick CSS in the styling tab:

    #top .main_menu .menu > li > a {
    color: #c00;
    }
    #top .main_menu .menu > li > a:hover {
    color: #cc0;
    }

    #top .main_menu ul:first-child > li.current-menu-item > a{
    color: #cc0;
    }

    Regards,

    Devin

    #28633
    italiatiles
    Participant

    Hi guys,

    Please check out my website: http://italiabathrooms.com/

    Highlight ‘Tiles’ on the top main menu and select glass tiles. Then select Glass Tile 1. Now have a look at the breadcrumb structure. Why is it showing “Materials / Sealants & Finishing Products’?

    It should be Home > Tiles > Glass Tiles > Glass Tile 1.

    > Edit – I had a further look and noticed that it probably has to do with the pages since this portfolio item does not have one. Is there a way to assign specific items to pages so the breadcrumbs pick it up? Your website seems to do it flawlessly.

    Thanks

    Hi Devin, We’ve had our host check all possible causes of the problems from their end and they can’t find any issues. We’ve also got the latest version of Enfold and WP installed and have found similar topics from other members, so there must be something wrong here.

    Can’t really show you this live as it’s a back-end issue and all you would see on a url is that the Icon List isn’t included on the page!

    As I described previously though, the list items just disappears randomly from the advanced page editor and from the actual page itself if you click update. You can spend a lot of time adding list items and content only to return to the page at a later time to find that they now appear as ‘undefined’ or just aren’t in the WP page editor any more.

    Thanks,

    #137781

    ok, I found a perfect solution, that shows automatically the excerpts, too – thanks to Dude’s code modification with using the plugin Relevanssi:

    Here is the code modification, so that Relevanssi works perfect with ENFOLD:

    https://kriesi.at/support/topic/instant-search-not-matching-search-results#post-135415

    #138060

    Hey!

    You can also use the nolink quicktag: https://kriesi.at/support/topic/copyright-text-4#post-133120

    Best regards,

    Peter

    Hi,

    Right now this header type doesn’t support the resize effect and it would require some work to implement it (javascript function to scale the content, new css code etc.). You can suggest your idea here: https://kriesi.at/support/topic/enfold-feature-requests and if more users request it we’ll look into it.

    #136259

    Hey!

    You can suggest the idea here: https://kriesi.at/support/topic/enfold-feature-requests

    Best regards,

    Peter

    #137991

    In reply to: Icon box text size

    Hi!

    Sure – you can use following css code

    #top .iconbox_content p{
    font-size: 22px;
    }

    Best regards,

    Peter

    #28622
    shoutitoutdesign
    Participant

    Hello,

    I have uploaded a custom background to my website which is an woocommerce store. The issue I’m having is that now for some reason the page background has become the main background on the add to cart / show details section under a product thumbnail. (When you hover over it, it goes back to white) I just want the whole thing white all the time.

    Also, I have a layered slideshow up the top but before it loads I can see that the page background is underneath that as well and I really want to make that just white also because it looks a bit silly… The page background is grass so I really only want it running along the bottom of the page. Is there a better way to do it?

    Your help would be greatly appreciated. The website is healthywithin.com.au (but I have a coming soon page on it…)

    #137982

    We brought down the max-width to 1024px

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

    @media only screen and (max-width: 1024px) { /* This was 989px . It was changed o the Responsive Menu would show on TABLETS held in landscape position */

    #mobile-advanced{display:block;}

    }

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

    1) Will this cause laptops and desktops that have resolutions set at 1024px wide to see the “Responsive Menu” ?

    2) If yes, is there a workaround to make it JUST for tablets ?

    #137981

    In other words, will this cause laptops and desktops that have resolutions set at 1024px wide to see the “Responsive Menu” ?

    If yes, is there a workaround to make it JUST for tablets ?

    #132454

    I answered your single topic with the same question here: https://kriesi.at/support/topic/how-can-i-use-or-activate-woo-commerce-on-my-site#post-136152

    Please try not to duplicate a question on multiple topics as it makes it harder for us to answer quickly and for others to search.

    Regards,

    Devin

    HERE IS A SCREENSHOT OF OUR GLOBAL LAYERSLIDER SETTINGS

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

    http://www.pigomultimedia.com/1_DELETE/LayerSlider_Global_settings.jpg

    #138106

    Hi sopadale

    The 2 things you’ll need to change are outlined in this post https://kriesi.at/support/topic/top-menu-with-the-social-icons-bigger?replies=5#post-132320

    Regards,

    Devin

    #28614
    turner2f
    Participant

    The Embedded video player is set to automatically play. Which is working just fine.

    BUT…

    If the video is paused and then you MANUALLY UN-Pause the embedded video player, it will play the whole video, but will stop the slider from AUTOMATICALLY going to the next slide UNLESS you hit the “next” button / dot .

    Please see…

    http://www.pigomultimedia.com/testing_area/beta_site_9V/homepage/home-v7-frontpage-shop

    How do we fix or configure this so that UN-Paused video slides automatically transition to the next slide ?

    #28608

    Topic: Text inside tables

    in forum Enfold
    faterra
    Participant

    Hello,

    I need help placing my text inside the tables, it does not matter if I set the aligment to the top or center it always stay on base. How can I configure this to apper in the place exactly where I set it to.

    The image is placed in vertical alignment = center and the text of the next column is set to vertical alignment = top, but it keeps showing alignment with the base.

    How do I do for the alignment that I set to appear correctly?

    Thank you.

    Fabiana.

Viewing 30 results - 139,981 through 140,010 (of 142,730 total)