Viewing 30 results - 90,151 through 90,180 (of 142,935 total)
  • Author
    Search Results
  • #692300

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .responsive #top .logo img {
        top: 10px;
    }
    

    Best regards,
    Yigit

    #692294

    Hello Andy,

    This is basically what I mean: https://jsfiddle.net/vduucu87/

    Blurring the background image (from the Fullscreen Slider) when scrolling. The more you scroll, the more it blurs. It gets sharp again when returning to the top.

    #692257
    nickydef
    Participant

    Hello – searched the forums, and am looking at (Enfold 3.8) trying to move the search icon to the top bar ONLY, and NOT have it appear to the right of the Main Menu. Here is the issue:

    Using Header Secondary Menu in the Top Bar at the Right

    In “functions-enfold”, I have replaced
    if ((is_object($args) && $args->theme_location == ‘avia’) || (is_string($args) && $args = “fallback_menu”))

    with

    if ((is_object($args) && $args->theme_location == ‘avia2’) || (is_string($args) && $args = “fallback_menu”))

    as instructed. This worksnicely, BUT the search icon appears in BOTH the Top Bar and to the right of the Main Menu? Can you help me remove from the Main Menu?

    #692254

    Hi SteveClark1950!

    We have already replied you – https://kriesi.at/support/topic/slider-not-pausing-when-video-is-playing/
    Please stop creating duplicated threads.

    Cheers!
    Yigit

    #692252

    Hi,

    Can you please stop creating duplicated threads? Your threads already received replies – https://kriesi.at/support/topic/text-with-html-wont-display/

    Best regards,
    Yigit

    #692246

    Topic: height nav bar trouble

    in forum Enfold
    Analyze-Design
    Participant

    Hi Super Kriesi-team,

    I’ve made my nav bar a bit less height by using the tips from:
    https://kriesi.at/support/topic/reduce-height-of-navigation-bar/
    But then I get a white border on the bottom. I’m I missing something here? See the link.

    And I have another question, the slider on the homepage with the text to the right, how can I make that slider stay the same height as the four text-blocks on the right?

    Thanks a lot for your help.

    Greetings, Annelies

    lloufield
    Participant

    Hello,

    I need help asap please. I did a website for a client using the Enfold Photography theme. But when the cto launched it live, this is what happened. This is his message. Do you have any solutions to this? Happy to give you the username & password for this. When I was working on the site it was using this url: http://www.caulkinsjewelers.com/wp/wp-admin…this is what the CTO wrote:

    “The front page of the site doesn’t load for me. Whether I access it from the admin page or from http://www.caulkinsjewelers.com/wp/ it comes up blank.

    I can try moving the web content up a level and see if it “fixes” things, but if I recall, this was also a problem with the previous version. I don’t think they want to go live with a blank home page….
    I reset the site URL and location to be the top level (e.g. http://www.caulkinsjewelers.com) and moved the /wp folder to the top level. I also hand edited the wp-config.php file to get rid of references to the /wp folder.

    URLs like http://www.caulkinsjewelers.com/index.php/about/ seem to work as expected, as does the admin URL http://www.caulkinsjewelers.com/wp-admin/
    However, the main page still doesn’t display.

    I am not able to diagnose and fix this problem so Laetitia is gonna have to look at it. Right now their site has a blank home page. I can tweak the web server config to redirect to some other page in the meantime, but I need to know the URL.”

    THANK YOU FOR YOUR HELP PLEASE!!

    #692241
    zimbo
    Participant

    Please see this post.

    It has a single category of Travel. The Travel category is defined as having a Parent category of News. The main menu is built with News as the top level then Travel as a sub-level under it.

    If you select the Travel page via the menu then the Beautiful Winter Destinations post appears as it should on the list of Travel-only posts.

    The News page Blog Posts setting is for ‘News’ as the only category. The Travel sub-category is not selected to show (nor is the other News sub-category of ‘Have Your Say’).

    If you display the News page then the Travel-only category Beautiful Winter Destinations post appears on the News page, when it should not. In looking back at a few other posts, the same thing is happening for ‘Have Your Say’-only posts: they are appearing correctly on their ‘menu category’ page but also incorrectly on the News page.

    It appears that on the News page that Blog Posts is selecting the parent category but also incorrectly displaying the child categories in the list of posts. How do I stop the Travel-only post appearing on its parent category News page?

    #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, 7 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, 7 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, 7 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

Viewing 30 results - 90,151 through 90,180 (of 142,935 total)