Viewing 30 results - 141,601 through 141,630 (of 142,588 total)
  • Author
    Search Results
  • #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.

    Hi,

    Kriesi recommends that you take the layerslider out and drop it in the plugins folder to use regular layerslider shortcodes. otherwise the slider shortcodes do not work outside the builder. https://kriesi.at/support/topic/how-to-insert-slide-show-with-layerslider#post-118722

    Thanks,

    Nick

    #124762

    Hi,

    Your website is referencing some artifact from a mac

    http://blog.blue2x.com/wp-content/themes/enfold/config-layerslider/LayerSlider/skins/.DS_Store/skin.css

    Also your Super Cache says its broken with this error

    <!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->


    Your header has a gradient effect on my laptop. In photoshop it says top of header is f9f9f9 and bottom of header is e5e5e5 and changes in between.

    Try this css. If nothing happens switch the css between the (.header_color) with the (.header_color .header_bg)

    .header_color {
    background: none;
    }
    .html_stretched #wrap_all {
    background-color: rgba(255, 255, 255, 0);
    }
    .header_color .header_bg {
    background: #FFF url(https://blog.blue2x.com/wp-content/uploads/2013/05/bg2.jpg) top center repeat scroll;
    }

    Thanks,

    Nick

    #116472

    In reply to: Enfold Showcase

    Hi,

    It’s nice to see so many different looks come out of a single theme. Some creativity flowing out of this topic. Nice!

    Thanks,

    Nick

    Hi,

    You are correct. Blog link is pointing where its supposed to. Nice. You can use this css to center your images

    #top .fullsize .template-blog .big-preview.multi-big {
    width: 50% !important;
    margin-right:auto;
    margin-left:auto;
    }

    Thanks,

    Nick

    Ya, I am in SE Asia on the beach with a beer and a laptop

    #124707

    In reply to: Blog Scrolling List

    Hi,

    A single scrolling endless row is a scary concept! :)

    Do you mean single column?

    If you would, please add it to the Enfold feature suggestion list here. https://kriesi.at/support/topic/enfold-feature-requests/page/3

    Thanks,

    Nick

    #125000

    Hi Ismael,

    Your code fixed the header a little bit.

    1) Meaning when I’m viewing at full screen everything is normal.

    2) I shrink a bit, the spacing between the header titles gets smaller to avoid the overlapping with the logo. This is what your code did and it solved the overlapping problem.

    3) Then if I shrink a bit more, the titles start overlapping with the logo again.

    4) After a little more shrinking then it finally goes into mobile view.

    Is there a way to make the logo be at center top and the header titles be under the logo at step 3? I think that would be the best solution to fix this problem because if we decrease the space between the titles anymore it would look like a single line then.

    Hey Guys! Just worked out a solution for this. Since this is very random and seems to be connected to the fact that it only appears when a slideshow is used on the same page I am not sure if the solution I used will fix the problem for everyone.

    The next update will include the bugfix (will be released during the next few days). If you still encounter any issues please open up a new thread then ;)

    But for the majority of you the problem should be gone and it should work fine on all desktop browsers. As for fixed images on iOS: still havent seen a site that was able to pull this off, also the demos linked here that claim to work on iOS dont work for me…

    #24796
    very217
    Participant

    Dear Support Team,

    I would like to add the Google Website Translator Plugin to the navigation menu on the Enfold theme.

    https://translate.google.com/manager/website/

    Google’s instructions are to place the snippet below where I would like to display the plugin.

    <div id=”google_translate_element”></div><script type=”text/javascript”>

    function googleTranslateElementInit() {

    new google.translate.TranslateElement({pageLanguage: ‘en’, layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, ‘google_translate_element’);

    }

    </script>

    <script type=”text/javascript” src=”//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit”>

    </script>

    Could you please advise me where I should place this code in the header.php file.

    If it is not possible to add the plugin to the navigation menu – on top of it will also do :-)

    Thanking in advance,

    Kind Regards,

    Will

    Hi,

    If you want your images to be not so much blown up on the blog page. http://vacationrentalsecrets.com/blog/ Because some of your images you upload at 400px width and they get stretched out and become blurry. http://www.clipular.com/c?7530087=NjKFX29L_zQPxqkzE2m1jJz7mFE&f=.png Up to you.

    #top .fullsize .template-blog .big-preview.multi-big a, .fullsize div .template-blog .big-preview.multi-big a img {
    max-width: 400px;
    }


    “Blog – Latest News” can be accessed on line number 9 of single.php in root folder of the website:

    $title  = __('Blog - Latest News', 'avia_framework'); //default blog title

    Thanks,

    Nick

    It just depends on how Kriesi wants to or can add it in. I’m going to close this topic for now until Kriesi can take a look and respond since there isn’t much we can do at the moment.

    Regards,

    Devin

Viewing 30 results - 141,601 through 141,630 (of 142,588 total)