Viewing 30 results - 137,821 through 137,850 (of 138,045 total)
  • Author
    Search Results
  • #23071
    dkhollen
    Participant

    Hello,

    I would like to removed the featured image from the top of posts / portfolio item pages. I want to keep the featured images on the blog and portfolio pages as thumbnails, but remove them from the posts and item pages. Is this possible?

    I was also wondering if it is possible to format the size of the thumbnails on the blog page when in grid view to all be the same size? I don’t mind if images get cropped, I just would like them all to be the same dimensions (as it stands, some are square, some are rectangular).

    My website is http://hollenberg.tv

    Thank you for your time.

    Hi,

    1.) You can use this

    #top .main_menu .menu li {
    float: right;
    }

    2.) To make the header fixed, you use this

    #header {
    position: fixed;
    }

    #main {
    padding-top: 155px;
    }

    3.) You increase the icon size with this

    .social_bookmarks .avia-font-entypo-fontello {
    font-size: 16px;
    }

    Regards,

    Ismael

    #117725

    Just wanted to say Kudos Devin, that’s exactly what the issue was. I have LastPass installed on both laptops in Chrome and Safari, and as soon as I disable the extension, the page scrolls smooth exactly as it should…

    Very happy to be given the suggestions needed to find the solution here. I really appreciate everyone’s help.

    Cheers!

    Hi,

    Edit js > avia.js then find this code

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/2)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/2;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Replace that with

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/1.5)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/1.5;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    It will reduced the header a bit more taller.

    Regards,

    Ismael

    #114609

    This is just a beautiful theme. Can’t pout it down!

    My only two requests would be AJAX portfolio like Choices has (needs to scroll to a consistent top margin position when opening, like Choices does) and masonry grid for the blog… and for portfolio?

    I also don’t see any correction/mandatory fields being noted in the contact form… but I haven’t really played with it yet…

    Thanks guys!

    #23049
    doafilms
    Participant

    Hi Kriesi,

    I’ve post things in the past on your message boards and you have always been great getting back to me. Hopefully these problems are easy fixes.

    http:www.kelly-sells.com

    First thing is I am having limited compatibility with IE 8 and 9. IE10 works flawlessly, but 8/9 don’t do the site justice. It’s not the end of the world, and if need be I will install a javascript browser detector and switch to a very simple version of the site fo IE users, but just curious on your thoughts and any solutions.

    Next is the big issue. I have a real estate plugin installed (dsIDXpress by Diverse Solutions) on the site that uses a IDX system based on the US multiple listing service (MLS) that allows visitors to search for properties in the real estate market. Because of our location, there is only one pro service that offers a plugin for our area. On top of that its not cheap ($100 setup and $30/month). So basically we HAVE to use this plugin. However we are running into some bugs and I think its coming from the themes end. I had already contacted the plugin company and they explained that it was an issue with the theme. They may be just ignoring it, but I figured I would ask.

    The major is issue is the shortcode buttons in the TinyMCE do not work properly. You can see here: http://imageshack.us/a/img96/7534/screenshot20130506at342.png

    Any time I click any of the three buttons installed into the TinyMCE, a popup windows displays and a few moments later the error I linked to shows up. It is referencing something about the avia updater, which I believe has something to do with the advanced layout builder. Is there ANYTHING I can do to fix this? It’s crippling my usability of this plugin.

    Next thing is kind of two things in one. It again has to do with this plugin. One of the features it has is a property widget that can display properties within certain parameters either as a list or on a map. What I have done is created a custom widget area and added that widget on the homepage to display properties on a google map. The odd thing is it worked for about a day or so, and now its just displaying it as a list. I have gone back and looked at the widget settings and it still set to display as a map. On top of that, it started showing as a list instead of a map for me about a day and a half before it did some of my clients, so its behaving oddly. My next option would be to try the exact same setup using the shortcodes, but as described above, they will not load.

    Lastly that same widget I am placing into a custom widget area onto the page seems to be injecting code and a logo into the footer. Normally on a listing page that same text and logo will display just below the listing, but I think because I am placing a widget into the page and not on a sidebar, its messing up and throwing that data into the footer. It just looks really ugly and wanted to see if there is anything I could do about it. Honestly if we can get the shortcode buttons to work, all these problems may get resolved, but since I haven’t been able to use them I don’t know for sure.

    SORRY about the super long post, but its very important and urgent. If you need access to my wordpress backend or my ftp please let me know. ANY HELP you can provide is hugely appreciated.

    #117562

    Done it! its getting easier.

    Thanks for the video too….

    Now all I need to do is explain how to actually create this 1px grey solid line that spans the entire menu (Home, Portfolio, Blog, Contact, About Me) and sits behind/at the top of the highlight line we’ve just moved up. I worked out how to make the highlight line 3px deep and adjusted its position

    Ill set up a dropdown menu and check that it all still works. I forgot to mention that my aim is to change the dropdown menu background colors and not change the text. Hence… ROLLDOWN – Background is black, ROLLOVER – Highlight background changes to a deep orange and theres a subtle text colour change too. Ill play around myself and see how I get on

    Is there a way for me to send you an image?

    Once ive done the menu ive pretty much got everything else within the theme as normal. I might want to create a giant slabtext on my home page only but thats it. Just so you know that I wont be sitting on your coat tails for the entire site!!!!!!

    Cheers

    as always

    #117558

    Hi,

    Put up a menu on your website. Please don’t talk in abstractions and generalities or i will make up my own colors, sizes, etc. I get a vague notion of #6. The rest I think I get. I made video of me doing it. Good stuff for youttube.. Website crashed in middle of video though. I didn’t do responsive since i dont think it will make any difference regarding colors, that flying underscore though probably needs 1 media query.

    /*triangle killer*/
    #top .current-menu-item>a>.avia-menu-fx>.avia-arrow-wrap,#top .current_page_item>a>.avia-menu-fx>.avia-arrow-wrap {
    display: none;
    }
    /*menu top font color off*/
    #top .header_color .main_menu ul:first-child>li>a {
    color:rgb(255,8,8);
    font-size: 1.1em;
    }
    /*menu top font color hover*/
    #top .header_color .main_menu ul:first-child>li>a:hover {
    color:rgb(8,255,255);
    font-size: 1.1em;
    }
    /*sub menu font color */
    #top .main_menu .menu ul li>a {
    color:green;
    word-spacing:1.2em;
    font-size: 1.1em;
    }
    /*sub menu font color hover*/
    #top .main_menu .menu ul li>a:hover {
    color: blue !important;
    }
    /*sub menu background off*/
    #top .header_color .main_menu .menu ul li a:hover {
    background-color: rgb(12,9,122);
    }
    /*sub menu background hover*/
    #top .header_color .main_menu .menu ul li a:hover {
    background-color: rgb(68,9,9);
    }
    /*underlines now float above menu*/
    #top .avia-menu-fx {
    display:block;
    position:absolute;
    top: 25px;
    }

    Video is uploading, gonna be here in 5 mins.

    Thanks,

    Nick

    #118134

    Hi,

    1) Upload the image of the horizontal line using Media and get the url of the image / see-> http://i.imgur.com/UxeA6Vf.png

    2) Add the CSS below to Quick CSS located in Enfold > Styling at the bottom of the page. Remove the http://domain.com/path/image-you-uploaded.png from the css below and in its place add the url of where you uploaded the image from step 1 above

    #top #big-hrline {
    background: url(https://domain.com/path/image-you-uploaded.png) no-repeat bottom;
    margin: 0 0 30px;
    overflow: hidden;
    padding: 0 0 20px;
    width: 100%;
    }

    3) Open /config-templatebulder/avia-shortcodes/hr.php and find line 117 which looks like this

    function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")

    Delete line 117 and everything below until the end of the file and in its place paste the code

    function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
    {
    extract(shortcode_atts(array('class' => 'default', 'height' => '50', 'position'=>'center', 'shadow'=>'no-shadow'), $atts));
    $hrtype = 0;
    $output = "";
    $height = trim($height, 'px% ');
    $style = $class == 'invisible' ? "style='height:{$height}px'" : "";
    $class .= $class == 'short' ? " hr-{$position}" : "";
    $class .= $class == 'full' ? $hrtype=1 : "";

    if ($hrtype==1){
    $output = "<div id='big-hrline'></div>";
    }else{
    $output .= "<div {$style} class='hr hr-{$class} ".$meta['el_class']."'><span class='hr-inner'><span class='hr-inner-style'></span></span></div>";
    }

    return $output;
    }

    }
    }

    I tested it and it works.

    To use it just select the horizontal ruler full width separator http://www.clipular.com/c?5870161=RjLTobeBs0GTGlXzgTHEJxitw_Q&f=.png

    Thanks,

    Nick

    #114607

    To add Advanced Layout Editor To Posts or Custom Post Types please watch video here (easy instructions) – https://vimeo.com/64996057


    To be able to switch between the advanced layout editor and the standard editor without having content set with the advanced editor show up as blank in the standard editor see code here -> https://kriesi.at/support/topic/cant-edit-or-change-a-text-block-in-avia-layout-builder#post-110199

    #23024
    itechtimesNet
    Participant

    Hi,

    I have a new fresh install of WordPress and Enfold + dummy data. No plugins.

    I have the following error displayed on the top of the page. Also, the “Home” menu link simply redirecrt to http://kriesi.at/themes/enfold/

    I have the same issue after multiple re-install. Even without dummy data. Also, despite I do not install dummy data I have all the menu links and “Home” link redirect to http://kriesi.at/themes/enfold/

    Warning: session_start() [function.session-start]: open(/tmp/sess_c0077b9e2074290fbb7230a6891b13cb, O_RDWR) failed: Permission denied (13) in /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    Warning: session_start() [function.session-start]: Cannot send session cookie – headers already sent by (output started at /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php:27) in /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php:27) in /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    #118257

    That works :)

    Thanks for the quick response.

    I really love the theme, guys. Great job.

    john

    PS :

    can I correct the version number (currently 1.3.1) in style.css to 1.4 without consequence ?

    I know it’s a detail, but it irritates me that versioning is incorrect.

    #118256

    Hi!

    You need to use following shortcode:

    [av_layerslider id="1"]

    Best regards,

    Peter

    #23019
    lemedia
    Participant

    Hi guys,

    [layerslider id=”1″] stopped functioning in the default editor after upgrade from Enfold 1.3.1 to 1.4

    in the Themes interface version still shows 1.3.1 as that is still in style.css

    Any ideas how i can correct that ?

    Thanks.

    John

    #117556

    Andy,

    You are the first person to ever ask me that question (whether to start a new thread), most just ask 3 pages of unrelated questions over 5 months. Thanks for asking! Nah you can continue here since its relevant to the overall theme of our exchange.

    I felt that in your case best thing to do was to get you hooked on the google tool since then you can customize your own look. read somewhere carefully about position:absolute and position:relative and how they relate to each other when one div is relative inside an absolute div and vice versa and how that affects margin and padding. Also try to move your logo for example to the bottom right corner of screen without messing anything else up using right:20px .left, down, top, and the position: tag… Goodstuff.

    It’s not difficult to edit it. Now sitting down in front of an empty screen and writing it from nothing is difficult.

    So ask away.

    Thanks,

    Nick

    #118185

    Thanks, the ‘custom.css’ file doesn’t show up in the ‘styles’ list from within ‘edit themes’… why is this? I can access it via FTP but this is a chore obviously. Can you advise on how I ca add it or make it appear?

    Secondly, this code you provided it to make the UI elements a darker colour and appear on top of any content, including a full-width slider, right? The reason it didn’t appear there is that it was underneath the slider? Just confirming.

    Is there any way to deactivate the UI elements altogether if wished?

    It occurs on the homepage, when Fullwidth Easy Slider, normal settings with multiple sliders

    These are the settings for the colour section that I added, that is having the problem. The background in the coloured section disappears an and turns white, and then reappears when the flexislider transitions to the next slide.

    Color Section:

    Section Colors: main content

    Custom Background Image: yes

    Background Image Position: repeat

    Background Repeat: Repeat

    Background Attachment: Fixed

    Section Padding: Default

    Section Top Shadow: Display Shadow

    Thanks a lot Ismael

    Hi,

    The selector use for the very top header is

    #header_meta {
    border-top: none;
    box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
    z-index: 400;
    min-height: 30px;
    background: white;
    }

    If you want to remove it you can use this

    #header_meta {
    display: none;
    }

    Regards,

    Ismael

    #116576

    Hi,

    What you are showing on the site can be changed in file /includes/loop-index.php , with the blog image on line 101 the way you have the blog setup, remember there are multiple settings. However all are controlled on this page. But yours is line 101 for the image.

    I suggest you get NotePad++ and download the theme folder somewhere on your desktop home computer, then use notepad++ to search through all files in the entire folder for classes you see when you view source around the parts you want to edit and then you will see how the structure is and which pages it is located on. https://kriesi.at/support/topic/changing-to-antoher-language#post-102486

    Thanks,

    Nick

    #118165

    In reply to: Small logo

    Hi,

    Please edit js > avia.js then find this code

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/4)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/2;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Replace it with

    //check if the browser supports element rotation
    function avia_header_size()
    {
    var win = $(window),
    header = $('.fixed_header #header'),
    elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
    el_height = $(elements).filter(':first').height(),
    isMobile = 'ontouchstart' in document.documentElement,
    scroll_top = $('#scroll-top-link'),
    set_height = function()
    {
    var st = win.scrollTop(), newH = 0;

    if(st < el_height/1.5)
    {
    newH = el_height - st;
    //header.removeClass('shadow');
    }
    else
    {
    newH = el_height/1.5;
    //header.addClass('shadow');
    }

    elements.css({height: newH + 'px', lineHeight: newH + 'px'});
    }

    if(!header.length) return false;

    if(isMobile)
    {
    return false;
    }

    win.scroll(set_height);
    set_height();
    }

    Regards,

    Ismael

    #118183

    Hi,

    Please try to add this on your custom.css

    .isotope-item .grid-content {
    height: 46px !important;
    }

    See if it fix the issue.

    Regards,

    Ismael

    jwferne
    Participant

    I’m having trouble sorting out what the top bar is called… where you would put a phone number etc. I want to change the color of that bar only. I found the code which colors it, but I was hoping I could remove everthing but the specific bar. Which one is that called?

    .header_color table, .header_color .widget_nav_menu ul:first-child > .current-menu-item, .header_color .widget_nav_menu ul:first-child > .current_page_item, .header_color .widget_nav_menu ul:first-child > .current-menu-ancestor, .header_color .pagination .current, .header_color .pagination a, .header_color.iconbox_top .iconbox_content, .header_color .av_promobox, .header_color .toggle_content, .header_color .toggler:hover, .header_color .related_posts_default_image, .header_color .search-result-counter, .header_color .container_wrap_meta, .header_color .avia-content-slider .slide-image, .header_color .avia-slider-testimonials .avia-testimonial-content, .header_color .avia-testimonial-arrow-wrap .avia-arrow, .header_color .news-thumb {
    background: none repeat scroll 0 0 #D9FFD9;
    }

    Thanks,

    – John

    p.s. I used firebug to grab that. If there’s a better way to see the structure and know what it’s called, I would be grateful to find out. Trying to learn how to do all this!

    #118075

    Hi,

    Open footer.php then find this code

    <?php

    echo "<div class='sub_menu_socket'>";
    $args = array('theme_location'=>'avia3', 'fallback_cb' => '', 'depth'=>1);
    wp_nav_menu($args);
    echo "</div>";

    ?>

    Replace it with this

    <?php $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => ''); avia_social_media_icons($social_args); ?>

    <?php

    echo "<div class='sub_menu_socket'>";
    $args = array('theme_location'=>'avia3', 'fallback_cb' => '', 'depth'=>1);
    wp_nav_menu($args);
    echo "</div>";

    ?>

    Edit custom.css then add this code

    #top #socket .social_bookmarks {
    position: absolute;
    right: 0;
    }

    Regards,

    Ismael

    #118198

    Do you mean the *menu* ? The header is just the page title and breadcrumbs. The menu is done in Appearance>menus. This is the list of pages at the top of the page.

    #117792

    Hi rynleigh,

    How did you add in that menu on the left? It seems to be just a regular menu and is only getting the normal list styling (not anything theme specific).

    It can be removed with:

    #top .entry-content #nav_menu-32 ul {
    list-style: none outside;
    }

    But I’m not sure if that solves the issue since you may be trying to get some other kind of effect.

    Regards,

    Devin

    Hi rrdr,

    In this video I create a section very much like that one: https://vimeo.com/channels/aviathemes/64927358

    You just need to use a color section and set a background image to get that kind of effect. Then you can add other elements on top of it.

    Additional videos are posted on that same channel and you can make requests for new ones here: https://kriesi.at/support/topic/video-requests

    Regards,

    Devin

    rrdr
    Participant

    I would really appreciate if you could tell me if there is a way to create nested elements. For example, creating a box with an image background that has text on top of the image.

    There is an example found on this page, http://kriesi.at/themes/enfold/, all the way at the bottom that reads “In case you need help”. This would be an example of a nested element, the background image is laid behind some other text/images. Did you use a rotator to create this item?

    thanks

    #118016

    Hi,

    If I understood you correctly, please add the code below to Quick CSS located in Enfold > Layout .. text area on the bottom of the page OR add it to the bottom of /css/custom.css

    @media only screen and (min-width: 1140px){
    #top .avia_mega_div.avia_mega3.nine.units {
    right: -662px !important;
    }}

    Thanks,

    Nick

    #117978

    Hi madebynoemi,

    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.single-post .big-preview.single-big {
    display: none;
    }

    This is the most straightforward way of removing the featured media are on the single posts.

    Regards,

    Devin

Viewing 30 results - 137,821 through 137,850 (of 138,045 total)