Forum Replies Created

Viewing 30 posts - 781 through 810 (of 826 total)
  • Author
    Posts
  • Hi,

    The content still exists in your text block though it is not visible, is that correct? You write something and then when you switch to a different area and then return you no longer see it? But if you save and view page you can still see the content?

    Thanks,

    Nick

    in reply to: Colour & Font Size Changes #117550

    Hi,

    This is the url of the About Us section of the demo http://kriesi.at/themes/enfold/pages/about-us/ … There are no icons here , but I am guessing thumbnail photos – like when you run the mouse over harrold houdini’s photo?

    I got this css exactly the same way as shown on the above video using chrome developer tools

    /*---these are the colors when mouse hovers--*/
    #top .avia-team-member .twitter:hover {
    color: rgb(70, 212, 254);
    }
    #top .avia-team-member .dribbble:hover {
    color: rgb(228, 72, 133);
    }
    /*---this is the regular color of the icon inside circle--*/
    #top .main_color .team-social a
    color: grey;
    }
    /*---this is complete settings controlling size, shape, background color, position of the circle itself--*/
    #top .team-social a {
    text-decoration: none;
    position: relative;
    border-radius: 30px;
    padding: 0 16px;
    background: rgb(224, 17, 17);
    margin: 3px;
    display: inline-block;
    height: 53px;
    line-height: 54px;
    width: 53px;
    }

    Keep playing with developer tools, i know at first it seems oppressive, but there is nothing better than this to use to quickly be able to edit css of any site.

    Thanks,

    Nick

    in reply to: Colour & Font Size Changes #117548

    Hi,

    Your best bet is to instal Chrome Developer Tools and without needing to know CSS you can manipulate the elements easily. I just made a video https://docs.google.com/file/d/0B8hqGBMSfHtKd2l6UkcwUjVBVWM/edit?usp=sharing showing how easy it is to change the menu any way you want , copy and paste to quick css in the theme backend. This is the best tool for editing without the learning curve.

    Thanks,

    Nick

    in reply to: Blog Image Location #117359

    Hi,

    It’s the latest design style. All the big houses are just going crazy about it.

    Nah, Its up to you in Enfold where to place the image. You can put it above, below, right or left of your article. Just use the advanced layout editor ( https://vimeo.com/64996057 ) here is a video I made about how to add layout editor functionality to your posts. Just instead of the custom post type, add post where it shows to edit in the video.

    Then in your blog posts, don’t use the featured image instead use a simple slider, just add 1 slide to it, and it will automatically become the featured image. Then you can position the simple slider and the blog post however you want using the columns.

    Thanks,

    Nick

    in reply to: How to Display Controls in Easy Slyder #117329

    Hi,

    Yes. The two big arrows on each side of the Easy Slider and Full Width Easy Slider are the reverse and forward controls. The slider pauses if mouse enters the slider and starts again when mouse leaves the slider.

    Thanks,

    Nick

    in reply to: Popular posts list bug #116928

    Andreano,

    I submitted the pull request , so once Kriesi looks it over, in one form or another it will be in the next update.

    Enjoy the theme. I will close this thread, otherwise it will never go away from my ”to do” screen, lol. Have fun!

    Thanks,

    Nick

    in reply to: Popular posts list bug #116926

    Hi,

    Congratulations, you have found a genuine bug that I was able to reproduce. Well not so much a bug, since if you would have added the image via the slider it would have used that image, but there was no fallback to featured image unlike the other widgets.

    So please open up /framework/php/class-framework-widgets.php and find lines 944-947 that look like:

    if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
    {
    $image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image');
    }

    and replace the block of code above with the code below

    if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
    {
    $image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image');
    }
    if(!$image && current_theme_supports( 'post-thumbnails' ))
    {
    $image = get_the_post_thumbnail( get_the_ID(), 'widget' );
    }

    Please let us know how it worked out.

    Thanks,

    Nick

    in reply to: Tabs responsive issue #116617

    Glad that Ismael took care of the issue. Enjoy the theme.

    Nick

    in reply to: Popular posts list bug #116924

    Hi,

    Please install the latest update 1.4 which is either out now or in a matter of a few hours since the update is massive enough to affect every theme file with dozens of improvements, and numerous bug eliminations.

    Thanks,

    Nick

    in reply to: text block problem #117043

    HI,

    An update has just been released. Please install it since its a big update.

    We can solve this in 5 minutes if you show us the actual page so we can use chrome dev tools or firebug to give you the code because I know you will reply that its not working if I try to guess at the css code. Here is my guess

    Please add this to your quick css located at Enfold > Layout or to your /css/custom.css file

    #top .avia_advanced_textarea {
    pointer-events: auto;
    display: inline-block;
    visibility:visible !important;
    }

    I am not sure if i understand you other requests, please provide a url or screen captures with arrows to help us better understand your needs.

    Thanks,

    NIck

    in reply to: Add caption to gallery lightbox #116732

    Hi,

    Please open up /config-templatebuilder/avia-shortcodes/gallery.php and find line 178 than looks like

    $thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}'><img {$tooltip} src='".$img[0]."' title='' alt='' /></a>";

    and change it to look like

    $thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}'><img {$tooltip} src='".$img[0]."' title='' alt='' /><span class='captions-gallery'>".$caption."</span></a>";

    The prettyPhoto is a bit tougher, please hang on and let me know first how that worked out as I work on prettyPhoto.

    Thanks,

    Nick

    in reply to: Tabs responsive issue #116613

    Hi ,

    I don’t have a smartphone so please try each of these to see what it looks like

    Option A:

    Please add this to your /css/custom.css or Quick CSS located in Enfold > Styling on the bottom of the page

    @media only screen and (max-width: 767px){
    .responsive .tabcontainer .tab.fullsize-tab {
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgb(225, 225, 225);
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: rgb(225, 225, 225);
    }}

    Option B

    open up /css/shortcodes.css and find line 627 that looks like

    {width:100%; max-width:100%; border-left:none; border-right:0;left:0; top:0; min-height: 0!important;}

    replace that with this line

    {width:100%; max-width:100%; min-height: 0 !important;}

    and add this css to Quick CSS

    @media only screen and (max-width: 767px){
    #top .active_tab_content {
    border-right-width: 0px !important;
    }}

    Thanks,

    Nick

    in reply to: Gallery images faded until scroll #116618

    Hi,

    Please make sure you are using the latest theme because almost every day or so an update has been released and 1.31 is the current version from a day ago.

    You can try opening up /js/avia.js and find line 261 and add // (two slashes) in front of that line so it would look like the code below

    //overlay = $("<span class='image-overlay "+span_class+"' style='opacity: 0;'><span class='image-overlay-inside'></span></span>").appendTo(link);

    Thanks,

    Nick

    in reply to: Tabs responsive issue #116611

    Hi,

    Do you mean this – right and left side? http://www.clipular.com/c?5530312=vJfGqdybIzPZGZoWNvFB0B21MK0&f=.png

    Thanks,

    Nick

    in reply to: PORTFOLIO IMAGE/TEAM MEMBER IMAGE NOT SHOWING #116028

    Hi,

    I am looking at your pages, and am still trying to figure out what exactly the problem is.

    On this page http://www.northeastbarristers.com/barristers/ , i see the portfolio is working. I would do something about that area above the portfolio since it looks strange and nearly empty.

    Please point to specific problems, and if you would, please use imgur.com to post screen captures with arrows, because perhaps we are seeing different pages or are using different browsers, because everything looks good from here.

    I would just use this css to get rid of that square box during mouse over on the portfolio item pages

    #top .avia-team-member .team-social {
    border: 0px solid rgba(0, 0, 0, 0.1) !important;
    }

    Thanks,

    Nick

    in reply to: Add caption to gallery lightbox #116730

    Hi,

    You can add a description which will come up as a tooltip when you hover over the thumbnails.

    http://www.clipular.com/c?5525272=igbxklSRGC-RhPvXDxRmKuDlOAg&f=.png

    I made a video showing in greater detail where to add that and its uploading at the moment.

    Thank,

    Nick

    in reply to: Galleries not loading properly in tabs #116372

    Hi,

    Please take out that code from Quick CSS.

    I tested and had similar results. Have you seen this working on the demo or its something you are trying out? Because I am not sure if a structure such as you are trying to create is possible with the way the shortcode is setup..

    I will look into this further as well as pass this on up .

    Thanks,

    Nick

    in reply to: mega menu bug #116091

    Hi,

    Please make sure you install the recent theme update since lots of functionality is now even better.

    Please add this to you css

    .header_color .header_bg {
    background-color:initial;
    }

    If you have a custom background image, this css will make the image show up. I don’t see transparency in the drop down menus right now. However there is a transparent bg color in play also though i don’t see on my end any difference one way or another changing it. You can change the last 0 to 100 to make transparent black become fully visible, and tell us the results. Though try this as a separate test from the one above

    #header {
    background-color: rgba(0, 0, 0, 0);
    }

    Thanks,

    Nick

    in reply to: Galleries not loading properly in tabs #116370

    Hi,

    Please update to v1.31 which has an update to the tabs widget.

    Please log into themeforest.net using the account you’ve purchased the theme under and download the latest update. Please be aware that the update will overwrite every single theme file including custom.css , so make sure that you created a backup first. The best way to upgrade the theme would be via ftp, renaming your current Enfold them folder on your server and then uploading the newest version of the theme. If you have made customization to your templates, but are no longer sure exactly where, I’ve made a comprehensive video outlining the easiest way to solve that issue. https://docs.google.com/file/d/0B8hqGBMSfHtKRkJlN0pyNVNDSkk/edit?usp=sharing


    But right now the way to prevent it from disapearing would be to add this css, but first, let make sure we got the latest theme to work with

    #top .avia-slideshow-inner {
    height: 384px;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: translateZ(0);
    }

    Thanks,

    Nick

    in reply to: CPT and avia_framework #116133

    Hi,

    For anyone less adroit then you in figuring this out I made a video showing how to add the layout builder functionality to Posts and Custom Post Types. https://vimeo.com/channels/aviathemes/64996057

    Thanks,

    Nick

    in reply to: Adding Avia / Enfold Post Settings to CPT #116053

    Hi,

    I made a video showing how to add Layout Editor to Custom Post Types https://vimeo.com/channels/aviathemes/64996057

    Thanks,

    Nick

    in reply to: Google Maps #115829

    Hi,

    https://vimeo.com/channels/aviathemes/64978020 <— how to add the google map widget

    https://vimeo.com/channels/aviathemes/64978019 <— how to build a contact page


    https://kriesi.at/support/topic/google-maps-widget-in-custom-widget-area#post-106864 <— fix to apply to code if you plan to use two show directions with 2 addresses in 1 map.

    in reply to: Autoformat breaks Sidebar Widget Include #116031
    in reply to: gallery captions don't show right #115676

    Hi,

    This is a possible bug. When the mouse touches the image for the first time , the circle with the two arrows appears over the image and the image becomes desaturated of color. For some reason every time you touch that image again that circle somehow gets in the way of actually touching the image so the tooltip is not triggered. I made Kriesi aware of this

    However for now, if you don’t mind living without that circle being displayed over the center of the image when your mouse touches the image, you can do the following to get the tooltips working:

    Please open up /js/avia.js in your theme folder, and find line 260 which looks like the line below (without the //) and now add // in front of line 260 just like I’ve done on the line below

    //overlay = $("<span class='image-overlay "+span_class+"' style='opacity: 0;'><span class='image-overlay-inside'></span></span>").appendTo(link);

    Thanks,

    Nick

    in reply to: Color styling problem #115812

    Hi,

    There is something wrong with your setup. Something is interfering. And you got some weird issue with permalinks too. http://runforcourage2013.org/wp-content/themes/enfold/enfold/config-layerslider/LayerSlider/skins/.DS_Store/skin.css … for some reason your host is coming and showing advertisement on that page in their skin instead of that page being just a 404 error in your skin. You are also missing another css file as well. Perhaps your wordpress installation is corrupted.

    Thanks,

    Nick

    in reply to: Portfolio Thumbnails showing up in posts #115783

    Hi,

    It’s up to you what to display on the portfolio item page. For example, You can create a portfolio Item Page and add image-featured.png as the featured image which will display on the portfolio archive page as a thumbnail in a grid next to the other portfolio item pages. When a visitor clicks on that thumbnail they are taken to the portfolio item page.

    So when you build the portfolio item page, after you added image-featured.jpg as featured, you set that porfolio item page (for example) to have no sidebar, then click the advanced layout editor blue button, add a 2/3 and 1/3 column . In the 2/3 column you add the media element ..

    Just look here http://i.imgur.com/4jxo7Pa.png

    THe point is , you add a media element to the portfolio item page and it will override the featured image. So featured image is only for the thumbnails,

    Thanks,

    Nick

    in reply to: Portfolio with 2 line Title #115774

    Hi,

    Do you mean on the portfolio page that shows the sortable portfolio thumbnails, or do you mean on the individual portfolio item page? The trick, if you want everything nice and neat, is to make sure that every title is about the same length or at least tht every title in the website takes up one line or every title takes up two lines.

    If you can provide a url to the site(you can use http://www.goo.gl to mask it) we can provide you some css to resolve this.

    Thanks,

    Nick

    in reply to: Blog category selected witouth sidebar doesn´t work #113947

    Hi,

    There is some kind of a problem with your setup. Every link in your Empressa sub-menu are completely empty. You are calling this page a blog, but it is not a blog, a blog has a list of blog posts and not a list of categories. Have you designates this page as a blog in Enfold > Theme Options ? or in Settings > Writing in the back-end (which you shouldn’t do anyway).

    From my understanding of your issue, you want to have a page which shows a list of all blog categories. When a category is clicked, the visitor is taken to a page that lists all posts in that category? If your answer is yes, then you should not designate any of these pages as a blog.

    Please email me credentials to: usjahm (at) gmail (dot) com

    Thanks,

    Nick

    in reply to: header background image and logo image resize #115076

    Hi,

    I dont have an IE8, and my emulators don’t display this issue. Looking at the code affecting the logo http://i.imgur.com/LpXtWn6.png , a possible cause may be the max-width:100%; from the img definition earlier in the cascade.

    Try something like this in your /css/custom.css OR in Quick CSS located in Enfold > Theme Options > Styling … text area on bottom of that page

    #top .logo img {
    max-width: none !important;
    }

    Adding the code doesn’t affect IE10, Chrome or FF

    Thanks,

    Nick

    in reply to: Blog category selected witouth sidebar doesn´t work #113945

    Hi,

    For now would you disable the shortcodes plugin please that you are using, since the layout builder uses a form of shortcodes internally.

    Thanks,

    Nick

Viewing 30 posts - 781 through 810 (of 826 total)