Viewing 30 results - 140,671 through 140,700 (of 142,753 total)
  • Author
    Search Results
  • #132728

    In reply to: Promo Box Header

    Hey!

    If you don’t want to display the margin at the top insert following code into the quick css field

    p + h1, p + h2, p + h3, p + h4, p + h5, p + h6 {
    margin-top: 0;
    }

    Regards,

    Peter

    #132371

    Hi,

    This code does work on my end. It will force the iconbox to have a minimum height aligning them properly.

    /*
    Desktop Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the desktop view of your site */

    @media only screen (min-width: 800px) and (max-width: 1024px) {
    /* Add your Desktop Styles here */
    .page-id-9576 .iconbox_content {
    min-height: 540px;
    }
    }

    Please remove browser cache then reload the page. You need to experiment with Media Queries to align them properly on different browser width.

    Regards,

    Ismael

    #129871

    I am experiencing a similar problem on a client’s website. The temporary URL is http://180.235.128.92/~hjdtszgy/.

    I have tried both the Easy Slider and Full Width Slider with the same result. Everything works fine on Internet Explorer, but not on Chrome or Firefox. The animation stops after slide 2 and I am unable to advance with the arrows or even the dots on the slider.

    I am running WordPress v2.6 and Theme version 1.8.1

    #133177

    Hi,

    Unfortunately, the revision doesn’t work for the Avia Builder.

    First, switch the Advance Layout Editor (ALE) to debug mode. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add this code:

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

    add_theme_support('avia_template_builder_custom_css');

    This will let you see the shortcode below the ALE. You can combine shortcodes like this:

    [av_tab_container position='top_tab' boxed='border_tabs' initial='1' custom_class='']
    [av_tab title='Tab 1' icon_select='no' icon='1']
    Tab Content goes here
    [av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
    [/av_tab]
    [av_tab title='Tab 2' icon_select='no' icon='1']
    Tab Content goes here
    [av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
    [/av_tab]
    [/av_tab_container]

    The example above are buttons inside a tab element.

    Regards,

    Ismael

    #133129

    Hi,

    Please refer to this link: https://kriesi.at/support/topic/translation-issue-on-search-results-page

    Regards,

    Ismael

    #131897

    i am also having this problem. see photo here http://thepsychreport.com/test1/ vs. desktop view at http://www.thepsychreport.com

    “Welcome to The Psych Report (Beta)” is cut off

    Hi,

    The hover effect is decreasing the opacity of the button.

    #top .avia-slideshow-button:hover {
    opacity: 0.7;
    }

    This is the default css style of the button.

    #top .avia-slideshow-button {
    text-transform: uppercase;
    color: #fff;
    border-radius: 3px;
    border: 3px solid #fff;
    padding: 7px 16px;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    background-color: rgba(0,0,0,0.2);
    }

    Regards,

    Ismael

    #133047

    In reply to: Content in Tabs moved.

    Hi,

    There is a p tag before the content. Can you please check if you unintentionally added a line break on the editor? Please add this on your custom.css or Quick CSS.

    .tabcontainer div .first {
    margin-top: 0;
    }

    Regards,

    Ismael

    #133044

    Hi,

    Kriesi removed the caption on the prettyPhoto plugin. You can add a request here to turn it back. https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Ismael

    #132439

    In reply to: Sidebar Menu

    Hi,

    You can add this on your custom.css or Quick CSS to create an indent on the menus when you have a left sidebar.

    #top .widget ul.sub-menu {
    padding-right: 20px;
    }

    Regards,

    Ismael

    #133140

    Hi,

    First, insert a column element then add the Image, Text Block then the Button. Give the button a unique css selector, for example “new-button”. Add this on your custom.css or Quick CSS.

    .new-button {
    position: absolute;
    top: 80px;
    left: 10px;
    }

    This will move the button on top of the image. You can do the same with the Text block element.

    Regards,

    Ismael

    #133149

    Hi,

    Please refer to this link: https://kriesi.at/support/topic/translation-issue-on-search-results-page

    Regards,

    Ismael

    #133096

    I have to correct the first post.

    The post was never published due to an error on a plugin, now resolved.

    I discovered that the problem of the -1 message after the publishing of a post as “author” is because an incompatibility between Enfold theme and the plugin WP Admin UI Customize (http://wordpress.org/plugins/wp-admin-ui-customize/)

    If I only change to the main WP theme it’s ok.

    If this could help I found that this is the die() method that stops the refresh of the post page after its publishing.

    It can be found on wp-includes/pluggable.php

    function check_ajax_referer( $action = -1, $query_arg = false, $die = true ) {

    if ( $query_arg )

    $nonce = $_REQUEST[$query_arg];

    else

    $nonce = isset($_REQUEST) ? $_REQUEST : $_REQUEST;

    $result = wp_verify_nonce( $nonce, $action );

    if ( $die && false == $result ) {

    if ( defined( ‘DOING_AJAX’ ) && DOING_AJAX )

    wp_die( -1 );

    else

    die( ‘-1’ ); // <— this is the -1 shown

    }

    do_action(‘check_ajax_referer’, $action, $result);

    return $result;

    }

    I’m using Enfold 1.8.4

    Thank you

    #132874

    You can try the code I posted here: https://kriesi.at/support/topic/how-to-prevent-img-title-from-being-displayed-on-rollover-of-slideshow#post-107352 – it works with Firefox, Chrome, Safari. IEs also supports it but it’s a bit buggy (sometimes it works, sometimes not..).

    #132941

    Hi!

    Please see: https://kriesi.at/support/topic/advanced-layout-editor-dissappeared-please-help – maybe this thread solves your issue too.

    Regards,

    Peter

    #132351

    Hi Peter

    Nearly there. And thanks to your teams help.

    Ive worked out a way / fix to add a horizontal version of the logo as a background image.

    However, it seems to repeat in two other places.

    Is there a way to remove from behind menu & search panel / on click?

    Here’s the live site: http://www.thenaturalpharmacie.co.uk/hidden/

    Here’s a screenshot: https://dl.dropboxusercontent.com/u/226695/smallheader-example-tile-error.gif

    Thanks in advance. Rich

    Below is my custom css

    /* Pages */

    .page-id-5 .title_container {

    display: none;

    }

    /* Header */

    div .logo img {

    position: fixed;

    padding: 0px;

    top: -2px;

    }

    .header-scrolled div {

    background-image: url(http://www.thenaturalpharmacie.co.uk/hidden/wp-content/uploads/2013/08/tnp-smalllogo-header3.gif);

    background-repeat: no-repeat;

    background-position: left top;

    }

    .header-scrolled div .logo img {

    height: 75px;

    }

    #header_main {

    border-bottom-width: 8px;

    border-bottom-style: solid;

    border-bottom-color: #060;

    -webkit-box-shadow: 0 8px 6px -6px black;

    -moz-box-shadow: 0 8px 6px -6px black;

    box-shadow: 0 8px 6px -6px black;

    }

    /* Naviagtion */

    /* Mobile */

    @media only screen and (max-width: 768px) {

    div .logo img {

    position: relative;

    height: 100px;

    }

    I’ve also experienced similar problems with layer slider when explicitly setting pixel widths. Text is aligned perfectly using pixel values in the preview window, but this doesn’t appear the same when viewed on the live site. Also, the layer slider interface seems very buggy to me. Frequently when I select a layer and click on a tab it will take me to the top of the wordpress interface page (like an anchor) instead of opening the required option area of the layer.

    #27188
    danielebr
    Participant

    Hi,

    I’m using the WP 3.5.2 (but it’s the same with the WP 3.6) and the last version of the theme Enfold.

    When I save or I publish a post I receive a blank page with only “-1”. The problem is exactly the same posted here a year ago

    https://kriesi.at/support/topic/custom-post-type-saving-error-1

    The post is saved but the redirect doesn’t work. If I goto the url shown in the address bar the post is opened in the edit page and the page is correctly filled.

    I noticed that:

    1. if I save the post as “admin” it works, saving as “author” it doesn’t

    2. if I change to the default WP template and I save the post as “author” I don’t see the error, it’s ok

    Thank you

    #132642

    I actually just fixed it using this CSS:

    body#top.tribe-filter-live #socket .container { padding: 35px 0 15px; }

    I’ll try your CSS to just to see if it also works.

    Thank you.

    #132827

    In reply to: customize header

    Hi Xavier,

    That level of customization would need to be done by a freelance developer in order to maintain the responsive functionality and proper cross browser support.

    Getting to that header is just a bit beyond what we can help customize.

    Since it has been done already, what you can do however is look at the custom css that that site has already used which should help you in creating something very similar: http://media.pcamobile.de/dynamic_avia/enfold_en.css

    With the comments that are already there it is just a matter of copying over and modifying things to how you’d like them.

    For #3 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 .main_menu .menu > li >a {
    font-family: Times; /*your font */
    }

    Regards,

    Devin

    #132350

    Hi Peter

    Sorted MOBILE, added div

    @media only screen and (max-width: 768px) {

    div .logo img {

    position: relative;

    height: 100px;

    }

    }

    #132349

    Peter

    Last thing. Work great on desktops.

    1) IPAD: Is there a custom css that will work on ipad, landscape

    2) MOBILE: Is it there a custom css that will change the logo from “Fixed” so it scrolls up with page on mobile.

    Im going to try myself, thought id ask as it may take me a few hours of trial & error.

    Thanks again.

    Rich

    #132348

    Thanks soo much Peter. Your star.

    Works perfectly.

    I can go ahead and use this theme now.

    Rich

    #132862

    You can remove the wpautop filter from the textblock elements. Open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestextblock.php and replace

    return "<div class='avia_textblock {$custom_class}'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content) )."</div>";

    with

    return "<div class='avia_textblock {$custom_class}'>".ShortcodeHelper::avia_remove_autop($content,true)."</div>";

    and

    $params['innerHtml'] = "<div class='avia_textblock avia_textblock_style' data-update_with='content'>".stripslashes(wpautop(trim(html_entity_decode( $params['content']) )))."</div>";

    with

    $params['innerHtml'] = "<div class='avia_textblock avia_textblock_style' data-update_with='content'>".stripslashes(trim(html_entity_decode( $params['content']) ))."</div>";

    Then wp shouldn’t convert any line breaks to paragraphs, etc. anymore.

    #132934

    could you update on this? how can I replace the static text “home” with actual home page title?

    #132861

    I use the html mode to delete the line breaks. But I have to do this every time I update a text because the line breaks are filled in automatically on opening. If I open the text box three times, there are three line breaks added on several places. It get’s worse with lists, because there are line breaks and ul added between every line.

    Isn’t there a way to just stop these auto line breaks? I tried “PS Disable Auto Formatting” plugin, but doesn’t help here (though helpful in other cases).

    #132347

    Hey!

    A curly bracket seems to be missing – try

    div .logo img {
    position: fixed;
    }

    .header-scrolled div .logo,
    .header-scrolled div .logo img {
    height: 100px;
    }

    @media only screen and (max-width: 768px) {
    .logo img {
    position: relative;
    }
    }

    Regards,

    Peter

    #27173
    artistic24459
    Participant

    How do I make the full size image larger in prettyphoto.

    option – Choose image size for the Big Preview Image

    I used to be able to have the image with a zoom option in the lightbox (prettyphoto) in the top right-hand corner. It is still there if I make the browser window smaller but the max size for the standard image display is a little small for me. Its 1030 px. Can I make it 1210 the full gallery width?

    Does that make sense lol ?

    #27171
    Atnevon
    Participant

    Okay, this is a weird one. I’m going to dig a bit and see about a workaround, but here’s what I’ve got so far:

    My main page of my site is a page called ‘Home’. It has a special header for the quote you see at the top of the page, and then the blog posts module (using the advanced layout editor). You can see it here: http://www.secondshifters.com

    If I try to click any of the pagination links at the bottom, they redirect me right back to the main page and take away everything after the domain in the link. For example, the link for page 2 is http://www.secondshifters.com/page/2 according to a little right click magic, but if I click the page 2 button or manually go to that URL, I get redirected right back to http://www.secondshifters.com without the /page/2 part.

    However, if I manually go to http://www.secondshifters.com/home/page/2 it works like it should. Also, if I manually go to http://www.secondshifters.com/?page=2 that works as well. I’ve re-saved my permalink settings and tried switching them around a bit, but nothing makes the problem go away so that http://www.secondshifters.com/page/2 will work properly.

    #132960

    Does it work fpor xou now? What did you change?

    I still have the problem.

    Please change the topic status to “not resolved”.

Viewing 30 results - 140,671 through 140,700 (of 142,753 total)