Viewing 30 results - 90,061 through 90,090 (of 142,836 total)
  • Author
    Search Results
  • #692230

    Hello! Yet again, I seemed to have been able to achieve what I wanted using previous advice you’ve provided. However, as I’m no expert, I’d appreciate someone checking the code to make sure I’ve not messed up and potentially breaking something elsewhere!

    #top .no_margin.av_one_third {
        border-radius: 0px;
        border: 10px solid white !important;
    }
    .grid-content { background: #fff !important; }
    .grid-entry-title { background: #fff !important; }
    .avia-arrow { background: #fff !important; }
    .main_color #js_sort_items { background: #fff !important; }
    #692229

    Hi Andy,

    thanks, but that add a widget area below the menu / header and I want to place a ruler / divider right at the top off the screens so above everything else.

    regards,
    roderick

    #692227

    I found a way by myself, topic can be closed.

    #692222

    i use both site-title and site-description as well:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= "<span class='logo-title'>";
      $sub .= get_bloginfo( 'name', 'display' );
      $sub .= "</span>";
      $sub .= "<span class='logo-title logo-subtitle'>";
      $sub .= get_bloginfo( 'description', 'display' );
      $sub .= "</span>";
      return $sub;
    }

    my css :
    very important: is to set to logo overflow visible ! because the text is in that box
    the transition settings and opacity is only for the deminishing text on scroll – if you dont like that get rid of it

    .logo img{float: left}
    #top .logo, #top .logo a {overflow: visible }
    #top .subtext {float: left; position: relative}
    
    #top .logo-title {
    transition: opacity 0.4s ease-out 0s;
    -moz-transition: opacity 0.4s ease-out;
    -webkit-transition: opacity 0.4s ease-out;
    -o-transition: opacity 0.4s ease-out;
        color: #4678ae;
        font-size: 44px;
        font-weight: bold !important;
        left: 7px;
        opacity: 1;
        position: absolute;
        top: -12px;
        white-space: nowrap;
    }
    
    #top .logo-subtitle {
        color: #aaa !important;
        font-size: 18px !important;
        left: 10px;
        top: 18px !important;
        font-weight: normal;
    }
    
    #top .header-scrolled .logo-title {
    opacity: 0;
    filter: alpha(opacity=0);
    }

    Result of mine see here: guenterweber.com

    #692220
    pimroll
    Participant

    Hello,

    I have a accordion slider in my homepage open page but how is it possible to have different font size in Desktop and in Mobile?

    I had one question allready about the fullwidth easy slider and I received a code:

    @media only screen and (max-width: 767px) {
    #top .aviaccordion-preview-title h3 {
    font-size: 13px !important;
    }

    But now I need to customize the accordion slider in the same way.

    Best Regards,

    #692217

    you see here on support forum on top the logo of Kriesi and on the right site title and description.
    Is it that what you want but only the other way round
    Site Title and Description and on the right side the logo ?

    What do you mean by:

    The site title needs to be the same size text as the logo (48)

    does your Logo have sign trade marks and text – and the logo text has 48px (how do you measure it – because logo is fit in a given height)

    etc – so to understand your request can you create an image how it has to look like (photoshop montage f.e. or a drawing)
    to stay in your 48px the shrinking of header is off ! ???

    by the way – the php code above is not enough – you have to postion the subtext via quick css ! so it might be there but you can not see it !

    • This reply was modified 9 years, 5 months ago by Guenni007.
    #692211

    In reply to: Special chars in table

    Hi,

    you need to test this plugin by yourself. If it doesn’t work for you then you need to search another plugin with such a function. A list of recommended plugins for Enfold here: https://kriesi.at/support/topic/recommended-plugins/

    Best regards,
    Andy

    #692199

    Hey Sadegh,

    It does not show up on my end on desktop as well. Where would you like to display it? And can you please create a temporary admin login and post it here privately?

    Best regards,
    Yigit

    #692196

    Hi,

    try this code:

    .html_elegant-blog #top .post-entry .post-title, .html_elegant-blog .avia-content-slider .slide-entry-title {
    font-size: 40px;
    }
    

    and adjust as needed.

    If that’s not the correct element, then please provide us screenshots highlighting the elements you want to change.

    Best regards,
    Andy

    #692151

    Hello Yigit,

    Is there a difference where do I place it in functions.php.

    Currently I placed it in the top and the excerpt text is not showing.

    Regards,

    #692145

    Hi,

    please use different tickets for different questions.

    1.) Use this code:

    @media only screen and (max-width: 767px) {
    .responsive .logo img {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    }}
    

    2.) You can use a smaller font on mobile for it:

    @media only screen and (max-width: 767px) {
    #top .av-large-testimonial-slider .avia-testimonial-content {
    font-size: 14px;
    }}
    

    Adjust as needed.

    Best regards,
    Andy

    #692142

    Hi Vinay

    The screenshot you have posted shows exactly what the problem is. On the left hand side of this page there is a blank column. That column should contain a Search box and then a list of Recent Posts, Categories, etc. But they have all been pushed further down the page (which you’ll see if you scroll down the page) because the video box extends over the line of the margin and into the margin column.

    The video box should start at the right hand side of the grey vertical margin line, just as all the other content boxes do.

    I want the style of the page to be similar to this post: http://www.freethinkinghealth.com/features/iodine/

    I want both boxes – the video box and the text box to the right of it – to be in line with the rest of the text, to the right side of the margin line. I want the margin to be a continuous uninterrupted column showing the Search box at the top, then Recent Posts, then Categories etc – not a blank space at the top with everything forced further down the page by the video.

    Thanks
    Natalie

    #692135

    Hi,

    Finally re-opening this one. I have set up a couple of generic entries on the linked page. I would like to do two things:

    1) Make the background white
    2) Put a 10px white gap in-between each of the entries

    Is this possible and could you help me with the CSS?

    Many thanks

    EDIT
    I was able to get a white gap by using the following CSS

    #top .no_margin.av_one_third {
        border-radius: 0px;
        border: 10px solid white !important;
    }
    

    A couple of things resulted from this
    A) the sortable area seems to be outside the colour section, I would like to move it down
    B) I want the grey area behind the names to white
    C) Is there any way to format the names within the grey area – i.e. make left aligned etc

    Thanks for you patience!

    • This reply was modified 9 years, 5 months ago by jonrouse. Reason: Additional issues raised
    #692127

    Hi Yigit and Basilis.

    I’m using OSX EL Capitain
    This is a screenshot with Chrome, and the 1px white line is on the bottom of the portfolio grid.

    With firefox no borders are visibile, so is ok.

    Whith Safari the he 1px white line is on the top of the portfolio grid.

    Is very strange when you resize the browser window, sometimes the white lines disappear and sometimes appear.
    Thank you,
    Rosa

    #692118

    Hi,

    you can find a recommended plugin list for Enfold here: https://kriesi.at/support/topic/recommended-plugins/

    If you need some help on your website, send us some precise link where we can see the elements you’re talking about. Could not find any videos which have poor performance on the link you’ve provided.

    Best regards,
    Andy

    #692115

    Hey amyspearsgavin,

    Wordpress is cropping images by default when uploading them and if you want to control this behavior you can use a plugin like this: https://wordpress.org/plugins/simple-image-sizes
    I hope this will help :).

    Also you could change Enfold’s image sizes manually: https://kriesi.at/support/topic/enfold-image-sizes/#post-336176

    Best regards,
    Andy

    #692086

    Hi Yigit,

    We’re using the latest version of Enfold. We disabled all plugins and still the problem continued. Then we removed the layer slider that was being used on the top of the page, saved and then put the same layer slider back in and the problem was resolved. We’ve only done this on our staging server so far but we’all try the same on production later.

    Thanks

    Phil

    #692074

    In reply to: Portfolio Ordering

    Post Arrows are still stuck to the edge, I would like them placed inline on the page…

    I tried the code above and then tried this as well…

    #top .avia-post-nav {
    position: absolute;
    top: 70%;
    }

    .avia-post-prev {
    left: 10%;
    }

    .avia-post-next {
    right: 10%;
    }

    • This reply was modified 9 years, 5 months ago by bukkadesign.
    #692072

    Thank you very much for your answer!

    I pasted it and + symbol disappeared

    i have also this code:

    .main_color .toggler:hover {
    color: white;
    background: #ffcc00;
    }
    .toggle_icon .vert_icon, .toggle_icon .hor_icon, span.toggle_icon {
    border-color: #fff;
    }

    .toggle_icon {
    position: absolute;
    width: 15px;
    height: 15px;
    border-style: solid;
    border-width: 0px;
    top: 17px;
    left: 10px;
    }

    .js_active .toggler { border: none !important; }

    so i guess it conflicts with your somehow. Tell me please what should i delete or change?
    Thank you!

    #692071
    ninaS
    Participant

    Hi there, so I managed to get the dates removed from the meta, and it’s all good on the desktop with the following code

    .sidebar span.news-time {
    display: none;}
    .slide-meta { display: none }

    but on the mobile it still shows. Could you pleas help me with that?

    nina S

    #692060

    Hey!

    UPDATE for @Jason E.

    Please try the solution here: https://kriesi.at/support/topic/sticky-posts-in-b-og-grid/#post-692059

    Regards,
    Ismael

    #692052

    In reply to: Problem with masonry

    Hi,

    If you want to just hide the title and caption, please use this:

    @media only screen and (max-width: 767px) {
       #top .av-inner-masonry-content {
        display: none !important;
       }
    }

    Best regards,
    Ismael

    #692049

    In reply to: Accessibility

    Hi,

    I’m sorry but the dropdown menu is not accessible with the keyboard unless you modify the js > avia.js file. Look for this code around line 1274:

    					currentLink.bind('mouseenter', function()
    					{
    						sublist.stop().css({visibility:'visible'}).animate({opacity:1});
    					});

    .. replace it with:

    
    					currentLink.bind('mouseenter focus', function()
    					{
    						sublist.stop().css({visibility:'visible'}).animate({opacity:1});
    					});

    Best regards,
    Ismael

    Hi!

    The quick CSS worked for me after the theme options were re-set. However after saving any settings it stops working.

    Is this a test site? It appears a plugin conflict may have corrupted some files. Do we have your permission to re-install a fresh copy of the theme ? First we will install it with all the old plugins intact if the issue persist you may have to get rid of all the plugins and re-install them.

    However at the moment the child theme styles appear to be working fine and you can use it as a alternative to Quick CSS. Quick CSS allows you to add tiny bit of quick fix where as you can add more styles in Appearance > Editor > styles.css

    I have added the below code for testing purpose and assure you that it works fine.

    /* Testimonial background */
    .avia-testimonial-content  {
       background:gold!important;
    }

    The rest of the theme options except Quick CSS appear to be working fine. When ever you decide to go ahead with the theme re-install we can help you with it. Please upload a latest copy of the enfold theme to wp-content/themes/enfold-latest folder and we will take it from there.

    Best Regards,
    Vinay

    #692044
    mcraig77
    Participant

    Ahoy, I’m trying to add a snapchat icon to the main menu bar at the top of my website where my other social icons are.

    I have been following this thread.

    Here is the social icon code

    https://www.dropbox.com/s/czn4it8hnnw55gb/Screenshot%202016-09-26%2019.07.49.png?dl=0

    How do I add this to the main bar?

    europeanhorizons
    Participant

    When I try to edit a page, the avia layout editor just circles indefinitely. Even when I change menus, it doesn’t affect pages. I can’t make any new pages or use the avia layout editor at all. One of my pages lost all of the data when I tried to revert it. Please help ASAP.

    #692029
    jaimemerz
    Participant

    We have two logos set for our one page site – one for the transparent header and the other for the scrolled header. We used some code – .logo {height: 251%;} – to make the transparent header logo larger so it drops below the header.

    On retina display, however, the logos seem to be blurred. We’ve tried the solutions in this thread: https://kriesi.at/support/topic/blurry-logo/ and we haven’t seen an improvement.

    Are there any other solutions we could try?

    #692020
    draig
    Participant

    Using Firefox (OSX) version 48… Sometimes most of the images in a masonry gallery pile up on top of each other instead of spreading the page down. Not sure why it happens sometimes and others not. Another user of our site reported the same problem also using Firefox.

    #692016

    Hey,

    Maybe with LayerSlider, that’s called Ken burns, refer to this topic:

    Best regards,
    Josue

    #692009
    bobfurgo
    Participant

    Hi guys! I have the boxed layout set on my site (max width 1300px) and I was wondering if you could help me figure out how to make it so that certain pages are full width and not boxed.

    This css clip works to make it full width and not boxed on laptops:

    @media only screen and (max-width: 3000px) and (min-width: 768px) {
    .responsive body.boxed#top, .responsive.html_boxed.html_header_sticky #top #header, .responsive.html_boxed.html_header_transparency #top #header {
      max-width: 100% !important;}
    }

    I tried modifying this clip so that I could target certain pages instead but it didn’t work:

    .page-id-67 .responsive body.boxed#top, .responsive.html_boxed.html_header_sticky #top #header, .responsive.html_boxed.html_header_transparency #top #header {
      max-width: 100% !important;}
    }

    Thanks so much guys, your help is much appreciated!

    • This topic was modified 9 years, 5 months ago by bobfurgo.
Viewing 30 results - 90,061 through 90,090 (of 142,836 total)