Forum Replies Created

Viewing 30 posts - 73,861 through 73,890 (of 82,585 total)
  • Author
    Posts
  • in reply to: Possible to Clone a page? #248299

    Hey steveinz!

    You can save templates you have created using Avia Layout Builder and load them on other pages http://i.imgur.com/pkv1y7C.jpg

    Best regards,
    Yigit

    in reply to: Please contribute and translate Enfold #248291

    Hi!


    @hzscheyge
    Answered your question here – https://kriesi.at/support/topic/error-in-translation-file/

    Cheers!
    Yigit

    in reply to: Audio player not displaying properly #248290

    Hey!

    It seems like you have added custom CSS code to Google Analytics field in Enfold theme options and not to Quick CSS field :) Please move the code from Google Analytics to Quick CSS and both issues should be fixed

    Regards,
    Yigit

    in reply to: Split Navigation / Logo Flush to Top of Browser #248286

    Hi!

    Please as following code to Quick CSS as well and adjust as needed

    .main_color .avia-color-theme-color-subtle { font-size: 15px; }

    Cheers!
    Yigit

    in reply to: Header removal, remove scrollto top offset? #248283

    Hi!

    Please go to Enfold/Js folder and open Avia.js file and find “Smooth scrooling when clicking on anchor links”
    P.S.: Your modifications looks awesome!

    Cheers!
    Yigit

    in reply to: Split Navigation / Logo Flush to Top of Browser #248278

    Hey!

    Following code should do it

    .main_color .avia-color-theme-color-subtle { font-family: 'Montserrat', sans-serif; }

    And no, we are just glad to help. We appreciate your kindness :)

    Cheers!
    Yigit

    in reply to: Re-visit iPad header nav and logo overlap #248269

    Hi boeellis!

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

    @media only screen and (max-width: 1140px) {
    .av-main-nav > li > a {
    padding: 0 7px; }}

    Then go to Enfold theme options > Header > Mobile Menu > Header Mobile Menu activation and choose 990px

    Cheers!
    Yigit

    in reply to: Logo cut off in Mobile view #248267

    Hey colingoldberg!

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

    @media only screen and (max-width: 480px) {
    .responsive .logo a, .responsive .logo img {
    max-width: 80%;
    height: auto !important; }}

    Regards,
    Yigit

    Hi Speakers-Club!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    .header_color .avia-menu-fx .avia-arrow,  .header_color .avia-menu-fx { background-color: green; border-color: green; }.main_color input[type='submit']:hover {
    background-color: orange;
    color: #ffffff;
    border-color: orange;
    }
    .main_color input[type='submit'] {
    background-color: green;
    color: #ffffff;
    border-color: green;
    }

    Regards,
    Yigit

    in reply to: Remove Custom post types from Blog #248264

    Hi!

    Can you point out one of the posts that needs to be removed from blog page? I am checking but it seems like they are all standard post types in blog

    Regards,
    Yigit

    in reply to: Split Navigation / Logo Flush to Top of Browser #248257

    Hi!

    You should choose subtle color in button options to see the changes

    .main_color .avia-color-theme-color-subtle {
    background-color: transparent;
    color: black;
    border-color: black;
    }
    .main_color .avia-color-theme-color-subtle:hover {
    background-color: black;
    color: white;
    border-color: black;
    }

    Regards,
    Yigit

    in reply to: Transparent header / Header change on "mouse over" #248256

    Hey sspag!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    #header_main:hover { background: red; 
    -webkit-transition: background 0.5s ease-in-out;
    -moz-transition: background 0.5s ease-in-out; 
    transition: background 0.5s ease-in-out; }

    Best regards,
    Yigit

    in reply to: Adding Polish characters #248254

    Hi!

    You can simply add the code Peter provided to functions.php file below following line

    global $avia_config;

    as following

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Arimo'] = 'Arimo:400,700,400italic,700italic&subset=latin,latin-ext';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    
    $fonts['Arimo'] = 'Arimo:400,700,400italic,700italic&subset=latin,latin-ext';
    return $fonts;
    }

    Best regards,
    Yigit

    in reply to: Split Navigation / Logo Flush to Top of Browser #248250

    Hi!

    Can you show which read more buttons on your website? I could not find it. Also, how you would like to customize it?

    Best regards,
    Yigit

    Hey CXCS9!

    Can you post the link to your website and point out the elements so we can take a look?

    Best regards,
    Yigit

    in reply to: Error in translation file #248245

    Hey Holger!

    Please go to Appearance > Editor and open Search.php file and fix it manually. Typo was fixed already in newer versions of the theme

    Regards,
    Yigit

    in reply to: Internet Explorer #248239

    Hey Richard!

    Please try adding following code to Quick CSS

    .avia_desktop.csstransforms3d .av-masonry-image-container { background-image: none!important\9; }
    .av-fixed-size .av-masonry-image-container img { display: block\9; }

    Cheers!
    Yigit

    in reply to: WooCommerce – couple of display issues #248230

    Hi!

    Please change the code to following one

    #top div .widget_shopping_cart .button {
    width: 47%;
    float: left;
    margin-right: 6px;
    }

    Best regards,
    Yigit

    in reply to: Issue when installing Woocommerce #248221

    Hey!

    It was weekend, sorry :) Glad you fixed it! Let us know if you have any other questions or issues

    Cheers!
    Yigit

    in reply to: Remove creation dates #248217

    Hi t3lgroup!

    Please add following code to Quick CSS

    .post-meta-infos, .ajax_search_excerpt, .news-time { display: none !important; }

    Cheers!
    Yigit

    in reply to: WooCommerce – couple of display issues #248212

    Hey kathrynmichaud!

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

    #top div .widget_shopping_cart .button {
    width: 51%;
    float: left;
    margin-bottom: 10px;
    }

    Best regards,
    Yigit

    in reply to: Opt-in forms #248210

    Hi DMuzzy!

    Actually there is a search function https://kriesi.at/support/?bbp_search=
    You can see on the main nav and on top of forums

    Best regards,
    Yigit

    in reply to: Split Navigation / Logo Flush to Top of Browser #248209

    Hey!

    You can use following code in Quick CSS field to change them

    .av-main-nav > li > a { font-family: 'Open Sans', sans-serif; }
    body { font-family: 'Open Sans', sans-serif; }

    It seems like you have already changed it – http://i.imgur.com/5nCrPy3.png
    Please flush browser cache and refresh your page a few times if you cannot see the changes
    Regards,
    Yigit

    in reply to: Pages randomly forwarding to youtube.com #248208

    Hi!

    Please try following code instead

    #footer .av_font_icon {
    opacity: 1 !important;
    -moz-transform: scale(1) !important;
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
    }

    Best regards,
    Yigit

    in reply to: hover img rollover layslider #248205

    Hi!

    Kriesi created buttons using CSS but it seems like you have added images as buttons. You can try adding following code to Quick CSS

    #layerslider_66 > div.ls-inner > div.ls-slide.ls-animating > a:nth-child(5) > img:hover, #layerslider_66 > div.ls-inner > div.ls-slide.ls-animating > a:nth-child(6) > img:hover {
    background-color: red!important;
    border-radius: 10px;
    }

    Cheers!
    Yigit

    in reply to: Remove Custom post types from Blog #248202

    Hey roamingk!

    Can you post the link to your website and write down all post post formats you would like to remove from blog page?

    Best regards,
    Yigit

    in reply to: Split Navigation / Logo Flush to Top of Browser #248199

    Hey!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 767px) {
    .responsive #main {
    margin-top: -81px;
    }
    .responsive .mobile_slide_out .logo {
    margin-left: 50%;
    }}

    You may need to adjust the margin left value to center it perfectly
    Regards,
    Yigit

    in reply to: Removing menu items in blog template #248197

    Hey!

    Glad you figured it out Keith! Let us know if you have any other questions or issues

    Cheers!
    Yigit

    in reply to: Icon Box Links #248195

    Hey!

    You are welcome, we are always glad to help! Let us know if you have any other questions or issues

    Regards,
    Yigit

    in reply to: Image resizing on mobile #248194

    Hey Keith!

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

     @media only screen and (max-width: 767px) {
    .responsive #header .social_bookmarks {
    width: 50%; }
    .html_header_top.html_header_topbar_active.html_header_sticky #top #main {
    padding-top: 0;
    }}

    Can you elaborate on the image issue?
    Best regards,
    Yigit

Viewing 30 posts - 73,861 through 73,890 (of 82,585 total)