Viewing 30 results - 141,931 through 141,960 (of 142,928 total)
  • Author
    Search Results
  • #123533

    Hey there,

    Ive now turned off the background image in theme options and applied your ID Controls but now the png just fills the section instead of just doing a line.

    a) How do I make just 1 row of the png?

    b) How do I turn off the container top line just above my png

    c) How do I control the margin height so that the portfolio starts further down the page but the container above it (the one with the x3 skills options and massive slab font) has less margin at the foot of its container

    to see what im talking about please refer to my site:

    http://www.andydpeck.co.uk

    #123891

    Hi there – Tried to change the z-index (tried it multiple ways, even swapping gravitas of number values but it still didnt work.

    Heres my css…

    /*

    DESKTOP STYLES


    Add styles inside the media query below that you only want to be applied to the desktop layout of your site */

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

    /* Desktop styles go here */

    /* CREATES TOP MENU FEINT LINE */

    #top .main_menu {

    z-index: -1 !important;

    height: 30px;

    border-bottom-color: #5e5957 !important;

    border-bottom-width: 1px;

    border-bottom-style: solid !important;

    }

    /* Main Menu – HIGHLIGHT BLOCK */

    #top .avia-menu-fx {

    z-index: 0 !important;

    display:block;

    position:absolute;

    top: 30px;

    border-style:solid;

    border-width:2px;

    }

    }


    cheers

    andy

    #116623

    I came across this more recent post that addresses this issue: https://kriesi.at/support/topic/galery-pictures-load-effect

    Hi,

    Open up enfold/js/shortcode.js and search for following code around line 205:

    //trigger displaying of thumbnails

    gallery.on(‘avia_start_animation’, function()

    {

    images.each(function(i)

    {

    var image = $(this);

    setTimeout(function(){ image.addClass(‘avia_start_animation’) }, (i * 110));

    });

    });

    change it to:

    //trigger displaying of thumbnails

    gallery.on(‘avia_start_animation’, function()

    {

    images.each(function(i)

    {

    var image = $(this);

    setTimeout(function(){ image.addClass(‘avia_start_animation’) }, (i * 110));

    });

    }).trigger(‘avia_start_animation’);

    and the gallery thumbs should load immediately.

    I have implemented it and it seems to work, but my question is, why hasn’t this been written into the code for us? It doesn’t make any sense to have to scroll down a complete page of thumbnail images before you get to see them not greyed out! Now I may have to amend the code everytime I do a theme update, so is there a good reason this fix hasn’t been applied to the code for us?

    Thanks,

    Matt

    #124971

    In reply to: Using Excerpts

    Thanks Ismael,

    I already had the post created..with an excerpt already in place.

    But it will continue to show the entire post.

    Inserting the “More” link does create the link and stops the entire post from displaying to the insert point. But I would prefer to use the excerpt feature. Can you verify that it is working?

    #125012

    Hey!

    Hey! Not sure why this is happening either, cant reproduce the issue yet. Mind deactivating the plugins you use and try it again? maybe one of them is interfering?

    Regards,

    Kriesi

    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:

    @media only screen and (max-width: 989px) and (min-width: 768px){
    .responsive #top #header {position: fixed;}
    }

    I don’t know what issues this may cause however as it is currently set by the theme to not have the fixed option on tablet size. It could be a bug fix added by Kriesi or something to prevent issues on tablets but I’m just not sure.

    Either way that should force it to be fixed on tablets.

    Regards,

    Devin

    #125089

    Hi xrisxal2000,

    You would need to use an iframe with the youtube video set with the autoplay option and the option not to show other related videos after.

    Regards,

    Devin

    #125056

    In reply to: Google Maps

    This is not possible without creating a new layout element. Even if you’re using a fullwidth content element you’re limited by the content area width of 1210px. You can add your idea to the wishlist though: https://kriesi.at/support/topic/enfold-feature-requests – maybe Kriesi is interested in such a content/map element.

    #125011

    I tagged this thread for Kriesi because I can’t find a js error. Chrome shows me an error message

    Blocked a frame with origin "http://player.vimeo.com" from accessing a frame with origin "http://posa.dk". Protocols, domains, and ports must match."

    which seems to be related to the vimeo video but I’m not sure if it affects the slider.

    #123264
    #125156

    Sorry the fixed layout is still not working (well it works as such, but menu’s and layout is all skewed), so no I will need just a standard browser site…

    http://www.dalat.org/main/ – click on the resources top level menu and you will see what i mean (on an iPad)

    #24859
    Qjay
    Participant

    Hey Kriese,

    Thanks for a great theme :)

    I have a small problem, my slider doesn’t work, it´s only show first slider and second slider, slider 3. and slider 4 doesn’t show up.

    I have updated jQuery to the newest version, but it doesn’t help.

    Can you please help me?

    I am using Easy Slider, I have also updated my theme to 1.6, but it still dosent working.

    Non of my slider works, its, stop working, after 2. image.

    Can you please help me with this.

    my website is:

    http://www.posa.dk

    Regards

    Qjay

    #24424
    agarkitekter
    Participant

    Hi!

    I had this problem a while ago which Kriesi helped me with: https://kriesi.at/support/topic/strange-behavior-in-portfolio-with-1366×768. It seems that the problem still exist, though just in IE and 1280×1024; looks like this: https://dl.dropboxusercontent.com/u/3884801/ie-problem.jpg

    Edit: It’s that the portfolio titles don’t show that is the problem.

    The error occurs when I just arrive to the portfolio page, when I sort something out or change the size of the web browser, it changes and displays correctly.

    Since I have gotten help through codeable.io (they have changed some core files) I cant upgrade to the latest version, Im still on 1.3.1.

    #125152

    1) In wp-contentthemesenfoldincludeshelper-template-logic.php replace:

    $result = avia_get_option($layout);

    with

    $result = avia_get_option($layout);
    if(get_post_type() == 'portfolio') $result = 'fullsize';

    2) In functions-enfold.php replace:

    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));

    with

    if($breadcrumb && get_post_type() != 'portfolio') $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));

    3) https://kriesi.at/support/topic/footer-7#post-109976

    4) Yes, unfortunately WP will use the taxonomy name on portfolio category pages and you can’t change the slug without changing the taxonomy name. On the other hand you can’t change the taxonomy name because we hardcoded/use it on various places within the framework.

    #125007

    You can create a color section with

    [av_section color='main_color' custom_bg='' src='' position='top left' repeat='no-repeat' attach='scroll' padding='default' shadow='no-shadow']

    Your custom text....

    [/av_section]

    I’d suggest to use Ismaels debug code above – it actually allows you to build your template with the template builder and then you can just copy/paste the shortcode into the standard editor.

    #24916

    Topic: Iconbox icon alignment

    in forum Enfold
    MM
    Participant

    Hi, I’m using v1.6 but I am not getting the option for centre alignment of the icon in an iconbox, just ‘left’ and ‘top’. I have only updated the files mentioned in the update logs on themeforest from v1.5 (which is the version of my base install) as opposed to just updating the entire theme folder. Could this be why (and so your update log is not 100% correct?!)

    Thanks,

    Matt

    #124981

    In reply to: Update & Menu

    Hi danfarberoff,

    For updating, I made a quick how-to for updating via FTP here: https://vimeo.com/channels/aviathemes/67209750

    There is also a child theme video here: https://vimeo.com/channels/aviathemes/67221517

    How you handle updates and keeping changes is up to you but what I typically do is create a personal change log that I write down any changes to files that I make.

    To center the logo above the menu you would need to add the main css changes to your custom.css file in the css folder. Adding them to the desktop media query will allow the theme to still adjust without issue for tablet and below sizes but you can also add additional css to change things there too.

    Regards,

    Devin

    #124802

    Please post the code of the advanced layout template. Open up functions.php and insert this code at the very top

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

    – insert it before:

    global $avia_config;

    2) The debug field will be displayed underneath the editor. Copy this code and post it here.

    #125039

    In reply to: Tabs and Contact Form

    Please post the code of the advanced layout template. Open up functions.php and insert this code at the very top

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

    – insert it before:

    global $avia_config;

    2) The debug field will be displayed underneath the editor. Copy this code and post it here.

    #124994

    In reply to: bug in the footer

    1) Can you post a link to the page/post where the bug occurs?

    2) Use following css code – insert it into the quick css field

    #top .main_menu .menu>li>a {
    color: #333;
    font-size: 20px;
    }

    If you want to change the sub menu dropdown styling too use:

    #top .main_menu .menu li>a {
    color: #333;
    font-size: 20px;
    }

    3) You can change the number of columns (“Blog Grid Columns” option) and you can set the number of items per page (Post Number). Both options will determine how many lines are displayed. If you use the 5 column structure you need to set the post number to 25 because 5 columns x 5 lines = 25 posts, etc.

    #124912

    Hi!

    Please insert following code into the quick css field

    #top .fullsize .template-blog .blog-meta {
    width: auto;
    }

    Regards,

    Peter

    #125104

    In reply to: CSS in uploads

    Hi,

    It holds the css style that you specify on Enfold > Styling. Open the file wp-contentuploadsdynamic_aviaenfold.css then change something on Enfold > Styling, save changes. You will be prompt to reload the enfold.css file because something has change on the css.

    Please watch this video on how to create a child theme. https://vimeo.com/channels/aviathemes/67221517

    All the files you need on the child theme folder are

    functions.php

    <?php

    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */

    styles.php

    /*
    Theme Name: Enfold Child
    Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold WordPress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating wil be much easier then.
    Version: 1.0
    Author: Kriesi
    Author URI: http://kriesi.at
    Template: enfold
    */

    and a screenshot if you want.

    This link might help: https://kriesi.at/support/topic/enfold-child-theme

    Regards,

    Ismael

    #123643

    Hi,

    I did some changes on your slide Chop > Slide #1. Unfortunately, I don’t have the time to change all your slides. I also use the actual html code for avia buttons. I added a class selector to make it unique.

    NOTE: Images are much more responsive than text. Next time you create a slide, I suggest you use image text instead of actual text. To see an example, please Import the dummy data.

    I added this on your Quick CSS

    /* Advance Slider Style */
    .fsn2-title { font-family: League Gothic; letter-spacing:2px; font-size:68px; font-weight:500; color:#ffffff; }

    .fsn2-p { color: white; font-size: 15px; line-height:22px; margin-bottom:50px; }

    @media only screen and (max-width: 767px) {
    .ls-layer > span { top: -10px; left: -5px !important; padding: 0 10px !important; }

    .fsn2-title { font-family: League Gothic; letter-spacing:1px; font-size:20px; font-weight:500; color:#ffffff; line-height:10px; }

    .fsn2-p { color: white; font-size: 10px; line-height:12px;margin-bottom: 10px; }

    .ls-layer > span .avia-button.avia-size-large { padding: 3px 10px; font-size: 11px; min-width: 80px; top: 15px;
    }
    }

    Regards,

    Ismael

    #24911
    revivalasia
    Participant

    Love the theme – thanks much.

    One major issue. For me it is broken and unworkable in responsive design on iPads. I want to completely turn it off (no fixed width or anything) what CSS and or other files do I ‘comment out’ or delete – I need it to view a standard desktop browser (Chrome or Safari) type site?

    Thanks

    S

    #98188

    Hi,

    Please follow my directions here ( https://kriesi.at/support/topic/comments-dont-show-up-on-portfolio-pages#post-117921 ) to get comments working with Portfolio items and elsewhere


    You are using a very old version of the theme. v1.31 , while 1.6 is out with lots of fixes and overall improvements. Please download it from themeforest.net but please be aware that it will overwrite all your theme files.

    There is a video tutorial by Devin on how to go about updating with ftp https://vimeo.com/channels/aviathemes/64927356

    Thanks,

    Nick

    #123263

    Hi,

    I am using Easy Slider, I have also updated my theme to 1.6, but it still dosent working.

    Layer Slider? Do you mean Advanced Layerslider?

    Non of my slider works, its, stop working, after 2. image.

    Can you please help me with this.

    my website is:

    http://www.posa.dk

    #124765

    1.) Hi Nick , Yes I have tried the code. Both

    .header_color {

    background: none;

    }

    .html_stretched #wrap_all {

    background-color: rgba(255, 255, 255, 0);

    }

    and

    .html_stretched #wrap_all {

    background-color: rgba(255, 255, 255, 0);

    }

    .header_color .header_bg {

    background: #FFF url(http://blog.blue2x.com/wp-content/uploads/2013/05/bg2.jpg) top center repeat scroll;

    }

    but it didn’t work

    2.) Sorry about it, its suppose to say “vertically” rather than horizontal. And now that I have seen the enfold responsive mobile version.

    I was thinking if i could allign the logo to the top left

    Menu button like enfold mobile to the top right.

    In my image below, first is the my current screenshot. 2nd is the enfold one. and 3rd is the one that I want to achieve.

    Basically I want to remove the black space on top ( see 1st image ) , allign logo vertically, and also to the top left.

    Menu to the top right and also allign vertically.

    The header background image no longer repeats vertically or if given an alternative just remove the header image and change it to a solid color?

    3.) As for the text in the slider you are right , it’s visible but it’s small. I may plan to increase the font size or just use the google font ( might want to play around with a similar looking type ).

    4.) As for the layer not showing, you can see in the screenshot the blue gradient line ( in the layer slider ) doesn’t appear.

    http://sta.sh/08dx22f3kxj

    5.) Is there a way to do like inspect element on mobile phones like firebug in browsers etc ?

    Thanks for helping me nick.

    Hey!

    1) You can use the debug window: https://kriesi.at/support/topic/export-theme-settings-and-templates

    or

    2) Use the “Save Template” option. http://www.screenr.com/ee97

    Regards,

    Peter

    #124015

    In reply to: Sidebar question

    Hi,

    Ok here we go , this is my first attempt at styling the sidebar element to resemble the proper sidebar.

    If you have a 2/3 and 1/3 columns and the 1/3 column has a sidebar element, I created some styles that will now make that ‘mini-sidebar more resemble the full length sidebar. Its a bit messy since I left a lot of css since I wasn’t sure if it doesn anything under specific circumstances, but it works.

    #top .container_wrap .avia-builder-el-last {
    border-left-style:solid;
    border-left-width:1px;
    border-color:#E1E1E1;
    color:#919191;
    float:none;
    overflow:hidden;
    display:block;
    clear:none;
    padding-top:4em;
    padding-bottom:2em;
    -webkit-box-sizing:content-box;
    -moz-box-sizing:content-box;
    box-sizing:content-box;
    min-height:1px;
    padding-left:2em;
    }
    #top .content,.sidebar {
    padding-top:0px;
    padding-bottom:0px;
    }
    div .av_three_fourth {
    margin-left:6%;
    }
    @media only screen and (min-width:1140px) {
    #top .container_wrap .avia-builder-el-last {
    width:23em;
    }
    div .av_three_fourth {
    width:67.5%;
    }
    }
    @media only screen and (min-width:980px) and (max-width:1139px) {
    #top .container_wrap .avia-builder-el-last {
    width:15.9em;
    }
    .js_active .top_tab .tab {
    border-bottom:none;
    padding:12px 10px 14px 16px;
    }
    div .av_three_fourth {
    width:67.5%;
    }
    }
    @media only screen and (max-width:979px) {
    #top .container_wrap .avia-builder-el-last {
    display:none
    }
    div .av_three_fourth {
    width: 98%;
    }
    }

    http://www.clipular.com/c?7708069=9VaXJSGLR6AfMuVe33WZKUjKVqg&f=.png

    Thanks,

    Nick

    #124763

    Hi Nick , what do you mean about the artifact ?

    I reinstalled wp super cache ( wasn’t aware it was deleted or might have happened when I messed up my old thematic theme before ).

    I don’t want to change the header effect ( it works fine in web but in phones or tablets ) For example in the iphone 5 landscape , it repeats 20 percent of the bg size to the bottom or in the nav area.

    I’m either thinking either removing the background image in mobile or fix the repeating background ?

    I want to allign the logo horizontally how do i do that ?

    And also the widgets don’t have padding. Can you guys point me out where I can find the codes for mobile ? So I can play around and tweak stuff.

    Lastly for the transparent png effect or ” laser effect ” . It’s the effect that you see in the layer slider animation, two lines coming from left and right, top line remains and the bottom one fades away. In mobile you don’t see it happen not sure why.

Viewing 30 results - 141,931 through 141,960 (of 142,928 total)