Viewing 30 results - 137,281 through 137,310 (of 142,522 total)
  • Author
    Search Results
  • #183691

    Hi dmaca!

    1) You can add a margin to the paypal button image. Use following code

    
    .paypal_checkout_button img{
    margin-top: 20px;
    }
    

    If you want a completely different button position you need to contact the PayPal Express plugin author because this would require am extension code customization.

    2) Yes, use following css code and insert it into the quick css field

    
    .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
    }
    

    Regards,
    Peter

    #183689

    Hi!

    But the code I posted here: https://kriesi.at/support/topic/breadcrumbs-with-portfolio/ does exactly the same because it removes the filter function which manipulates the breadcrumb trail with

    
    $trail = apply_filters( ‘avia_breadcrumbs_trail’, $trail, $args );
    

    So your code

    
    //$trail = apply_filters( ‘avia_breadcrumbs_trail’, $trail, $args );
    

    or my function here https://kriesi.at/support/topic/breadcrumbs-with-portfolio/ should give you the same result but the filter function can be used in a child theme file and you don’t need to hack the core theme files.

    Best regards,
    Peter

    #183671

    In reply to: Fontello icons in text

    Hi Yigit,
    That only moved the position of the smiley, it’s still “floating” on top of the text which doesn’t work since if you resize the window it ends up in the wrong place (in the line of text that is).
    Is it possible to make it into some kind of “inline element” with the text? (I’m not a web programmer so my language and terms might be totally wrong but I hope you understand what I mean)
    Cheers,
    Peter

    Hey costabile4601!

    Insert following code into the quick css field and reduce the margin-top value (i.e. to 20px).

    
    body .column-top-margin {
    margin-top: 50px;
    }
    

    Cheers!
    Peter

    Hi!

    Use phpmyadmin (or any other database tool) to access your database and delete the “wp_layerslider” table. Then use the code I posted here: https://kriesi.at/support/topic/layersliders-deleted/ to restore the default layerslider data.

    Regards,
    Peter

    Hey!

    This is an old issue and I guess it has been fixed on the latest update. I don’t see the issue anymore on your website.

    Best regards,
    Ismael

    #183634

    In reply to: Sidebar disappears

    Hi!

    What mobile device do you have? You can increase the max-width on the media query code:

    @media only screen and (max-width: 1024px) {
    .responsive .template-blog .blog-meta,
    		.responsive .post_author_timeline,
    		.responsive #top #main .sidebar {display: block; }
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    I’m having the same issue: http://crc3.surtos.com/ And here’s a screen grab: https://www.evernote.com/shard/s320/sh/b064098c-64aa-4778-a603-ecf4d787601e/1165331fcb0be795d9b0073a5d675089 I’m seeing it in FF/mac; haven’t tested in other browsers, and the problem seems intermittent — if I reload the page it works for awhile — can’t pin down what triggers it (but haven’t tried too hard ;).

    Thanks.

    Hi Raymmar!

    Please hire a freelance developer to add this feature. You can request it here: https://kriesi.at/support/topic/enfold-feature-requests

    Best regards,
    Ismael

    Hey!

    Please use this on your custom.css or Quick CSS:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .container .nine.units {
    width: 100%;
    border: none;
    }
    
    #top #main .sidebar {
    display: none;
    }
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    #183581

    In reply to: Styling submit button

    Don’t worry, it’s pretty simple:

    First, in this website you create or choose one gradient:

    Then you copy the code generated:

    And finally you mix it with the code i provided to you (put it inside { .. }):

    .button[type=’submit’] {
    background: #1E5799;
    background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8));
    background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%);
    background: -o-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
    background: -ms-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
    background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#1e5799′, endColorstr=’#7db9e8′,GradientType=0 );

    }

    Regards,
    Josue

    #183576

    In reply to: Change Toggle Colors

    Josue,
    While you are look the toggle issue, I have another request :)

    How to remove the vertical line between the social icons on the top bar of the header. I want the vertical lines on the far right of the topi bar, but not the left in between the social icons.

    Thanks again!

    Regards,
    Seth

    #183566

    Hi dhruvcasper!

    That code should work (tested locally):

    #wp-admin-bar-avia{ display: none !important; }

    Can you create an administrator account and post it here as a private reply, so we can test it out?

    Best regards,
    Josue

    #183563

    Hey Alex!

    It’s happening because in the first one the ‘avia-builder-el-first’ is the second heading and in the other is the reverse, the ‘avia-builder-el-first’ class is applied to the first element created and it removes the margin top.

    You could either try re-doing this page or If you want us to check it, create an administrator account and post it here as a private reply.

    Best regards,
    Josue

    #183557

    Ok I create another topic. Thank you!

    Cheers!
    QeeQac

    #183555

    Hey!

    Add this code to the Quick CSS:

    .logo {
        margin-top: 14px;
    }
    .header-scrolled .logo{
        margin-top: 0;
    }
    .page-id-2539 #av_section_2 .template-page.content.twelve.alpha.units {
        padding: 20px 0;
    }

    That will fix the logo issue and will reduce the top&bottom padding of the icon list container, regarding the Polish characters issue please create another topic for that.

    Cheers!
    Josue

    #183548

    Hey!

    Add this code to the Quick CSS:

    .avia-icon-list-container {
    margin-bottom: 0;
    margin-top: 0;
    }

    That will reduce the margin top / bottom to zero (default is 30px).

    Cheers!
    Josue

    #183544

    In reply to: Styling submit button

    Hey z2h!

    This selector will target that button:

    .button[type='submit']{
    
    }

    Regarding the gradient you could create one here, copy the generated code and put it inside the selector, for example:

    .button[type='submit'] {
    background: #1E5799;
    background: -moz-linear-gradient(top, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1E5799), color-stop(50%,#2989D8), color-stop(51%,#207CCA), color-stop(100%,#7DB9E8));
    background: -webkit-linear-gradient(top, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%);
    background: -o-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
    background: -ms-linear-gradient(top, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
    background: linear-gradient(to bottom, #1E5799 0%,#2989D8 50%,#207CCA 51%,#7DB9E8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 );
    }

    Then, simply paste the whole code in the Quick CSS and that would be it.

    Cheers!
    Josue

    #183531

    In reply to: Color Section height

    I also tried this, but it didn’t work:

    #expertise, #about, #design, #photography, #writing, #process {position:absolute; top:50%; height:100px; margin-top:-50px; /* negative half of the height */}

    #183524

    Thanks for the answer!!!
    I have solved the problem with the custom fonts and icons, but still the “filter” on the blogs page is not working.
    My website is being developed locally at the moment…

    All my posts belong to a category.
    At the blog page, at the top, i am seeing the categories. For example: articles, videos, photographs.
    I click on a category and nothing happens, when it should have filtered the posts.
    Any thoughts on what i am doing wrong??

    #183514
    allegrabillings
    Participant

    Hey Guys,
    Question for you I tried to make a post that included a featured image, then some text, then read more link, then a enfold gallery element.

    the blog page looks normal but when you view the actual post page the enfold gallery is at the very top and pushed the normal blog heading and text I wrote to the bottom of the post. Also something else is weird. On post pages whatever you set the column count of the gallery to, it displays one less but has a blank area to the right.

    for example if you say 3 columns it only makes 2 columns but a space to the right with a blank 3rd column. Please advise why the enfold gallery behaves strangely on post pages verses a normal page?
    Thanks

    #183507

    Topic: top link missing

    in forum Enfold
    allegrabillings
    Participant

    Hey guys, I don’t know when it happened but at some point an update messed with the top link. It disappears on screen sizes between 480 – 768. This isn’t just on my site but on your site as well. check it out for yourself. Do you know how to fix this. Needs to be looked at for your next theme update.

    #183500

    Thx! Almost good. The second line should say:
    .fixed_header.social_header #main { padding-top: 131px; }
    Otherwise there is too much whitespace. Now it seems to work great. :)

    • This reply was modified 12 years, 2 months ago by DieNase.
    #183499

    Hey!

    First, please don’t bump your posts. Our queue system shows oldest posts to newest so when you self bump it just moves your topic to the end of the queue.

    For minifying your css, you can follow the plugins steps and documentation for the best results. The demo has a custom set up as far as the back end goes (style switcher etc). But generally when minifying the data you just need to select the files from within the plugin so that it knows which ones to minify and do it in the same order they are rendered in the html.

    If you really wanted to only have a single file you would need to move all of the css from the css folder into a single file (again in the same order from the rendered html) and then remove those calls from the functions.php which are trying to include the separate files.

    Just using a basic minifcation plugin and WP super cache or w3tc should be plenty of speed increase for the general site set up.

    Cheers!
    Devin

    #183493

    Update:
    If possible, I would like to have the dotted line that normally separates the social media icons between the Search Icon and Language selector.
    Note: When I set the social media icons on in my header, they don’t show up like this site, but on the left top of the header.

    #183490

    Alright thanks! Topic can be closed :)

    #183486

    In reply to: Transparent Header

    Thanks for the answer!

    In this case when it is on top, the menu is not active. I can not click anything…

    Regards

    #183485

    In reply to: Transparent Header

    Hey!

    It can be fixed in its previous position as well but then it will just stay there even when you scroll down. So there will be space from top. If you would like to keep it in its previous position and fixed to top when scrolled down, you are going to need to hire a freelance developer, as it is not that easy to pull that off.

    Regards,
    Yigit

    #183484

    In reply to: Transparent Header

    Works good, but the menu moved from just over the content to the top of the page. And i can’t bring it down without moving the rest.

    Regards,

    Simon

    #183472

    In reply to: Fontello icons in text

    Hi petersandin!

    Please try adding following code to Quick CSS in Enfold theme options under Styling tab

    .avia-builder-el-1 .avia-icon-pos-left { float: right; margin-right: 0.8em; margin-top: -19px; }

    Best regards,
    Yigit

Viewing 30 results - 137,281 through 137,310 (of 142,522 total)