Viewing 30 results - 6,541 through 6,570 (of 18,742 total)
  • Author
    Search Results
  • #992134

    Thanks Jordan –

    I think I’m good for now by just adjusting the font and line height size for testimonials in quick css.

    #992046
    Freek
    Participant

    Hi,
    I searched the forum for a correct way to increase the spyglass (at least 30px) on my site but I cannot get/find a right answer.
    And i want to hide the spyglass on mobile devices? https://thekey.nl
    Can you help me out on this?
    THX Freek

    I found the solution for the size of the spyglass:

    li#menu-item-search a:before {
        font-size: 30px!important;
    }
    • This topic was modified 7 years, 8 months ago by Freek.
    #991896

    the most easiest way would be to register a new social media button for example with a lock and have the rounded buttons as if it was a social media link – on hovering you can see the tooltip : registering.
    i do this often for links like intranet link or login links.
    this could be handeled than like on my link above – because than it is part of social-media list.

    See here Result ( i do not change to see only burger-menu – so have a look at smaller screensizes )
    https://webers-testseite.de/cynthia/

    if you like to insert for example a whole avia button shortcode – that is possible too.

    add_action('ava_inside_main_menu', function() {
      echo '<li class="registerbutton">';
      echo do_shortcode("[av_button label='Register now' link='manually,#' link_target='' size='large' position='left' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue875' font='entypo-fontello' color='custom' custom_bg='#42ab96' custom_font='#ffffff' av_uid='av-b9l' custom_class='' admin_preview_bg='']");
      echo '</li>';
    });
    
    function change_menu_position() { 
    ?>
    <script>
    (function($){
    	$('.main_menu ul.social_bookmarks').insertBefore($('.main_menu div.avia-menu'));
    	$('li.registerbutton').appendTo('.main_menu > .social_bookmarks');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'change_menu_position');

    the code can be obtained by activation of the debug mode on enfold for above rules
    echo do_shortcode(" into this comes the full shortcode of your avia button ");

    this comes to quick css:

    /*** this is for the new button not to have same behavior as social_bookmarks buttons ***/
    .registerbutton { width: auto !important }
    .registerbutton .avia_button_icon { display: inline-table }
    .social_bookmarks li.registerbutton a { border-radius: 0 !important; padding: 0 10px !important; width: auto !important; background: #42ab96; color: #fff }
    
    /*** rules for the left-hand social_bookmarks buttons ***/
    #top nav .social_bookmarks { margin-top: -20px !important; overflow: visible !important; height: 40px !important }
    .avia-menu.av_menu_icon_beside { padding-right: 0; margin-right: 0; border-right-width: 0; border-right-style: none }
    .social_bookmarks li a { height: 40px !important; line-height: 40px !important; width: 40px !important }
    #top .social_bookmarks li { width: 40px; height: auto !important }
    #top .av-logo-container .social_bookmarks li a {  border-radius: 50% }
    .av_header_transparency .social_bookmarks li a { color: #969696 !important;}
    #991813

    Hi,

    Thanks for the update.

    The title creates another line, so it breaks the layout of the progress bar. Try to decrease the font size on smaller screens.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .avia-progress-bar {
        position: relative;
        margin-bottom: 25px;
      }
    
      .avia-progress-bar .progressbar-title-wrap {
        font-size: 11px;
      }
    }

    Best regards,
    Ismael

    Hey DROR,

    Add this to quick css:

    .av-sort-by-term span.inner_sort_button{
    font-size:20px!important;
    }

    Best regards,
    Jordan Shannon

    #991705
    tallypeled
    Participant

    Hello
    I am using text-blocks to display text.
    I would like to center the text-block and justify the text inside.
    Someting like:

    <div style="text-align: center;">
        <div style="display: inline-block;">
    		<p class="code-block-center-header-text"><strong><span>Studio & Main Shop:</span></strong></p>
    		<p class="code-block-justify-text"><span>42 Emek Refaim St (michael alley),</span></p>
    		<p class="code-block-justify-text"><span> German Colony, Jerusalem.</span></p>
    		<p class="code-block-justify-text"><span>Tel: 02-5633398</span></p>
    		<p class="code-block-center-header-text"><strong><span>Opening Hours:</span></strong></p>
    		<p class="code-block-justify-text">Sunday, Monday, Tuesday 9:30 - 17:30</p>
    		<p class="code-block-justify-text">Wednesday, Thursday 9:30 - 19:00</p>
    		<p class="code-block-justify-text">Friday & Holiday Eve 9:00 - 13:00</p>
        </div>
    </div>

    Where the Css is:

    .code-block-justify-text {
    	text-align: justify !important;
    	font-size: 18px;
    	color: #000000;
    }
    .code-block-center-header-text {
    	text-align: center;
    	font-size: 18px;
    	font-weight: bold;
    	color: #000000;
    }

    The text-align: center; for the outer div does center the code-block,
    Still the text inside in left aligned.
    Any ideas how to get this done??

    P.s. I have inspected the css for all exterior elements and there is nothing indicating that this should behave like so!

    • This topic was modified 7 years, 8 months ago by tallypeled.
    #991679

    In reply to: Menu font size

    Hi,

    Add this to quick css:

    #av-burger-menu-ul li a{
    font-size:12px!important;
    }

    Just adjust 12px to whatever you prefer.

    Best regards,
    Jordan Shannon

    #991580

    Hi Barbara Smith,

    Try using the code like this if the code above did not work for you

    
    @media only screen and (max-width: 1366px) and (min-width: 768px) {
    .responsive.av-no-preview #top #wrap_all .av-medium-hide, .responsive.av-no-preview #top #wrap_all .av-medium-font-size-hidden, .responsive.av-no-preview #top #wrap_all .av-medium-font-size-title-hidden {
        display: none;
    }
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #991547
    richardmagnusson
    Participant

    Hey! I’ve done most of the work for a new site including some custom breakpoint changes for font sizes and grid rows. Currently trying to do the same for 1/3 columns but without success. Searched the forum and the documentation but I do not get it right. Basically every solution I found told me to set the width of av_one_third class or whatever it is called to 100%, which basically just reduces the margins between the columns but doesn’t make the columns go 100% as on screens of 768px or lower. I would love to have the same view on 1024px and below. Using chrome and safari on a mac for testing. Links in private content.

    Thank you!

    EDIT: Fixed the problem by deactivating “equal height”… Missed that tip while searching.

    bakbek
    Participant

    Hi, how can I increase the font size of a magazine element sorting options?

    Thanks.

    #991450
    Thesummer
    Participant

    Hello,

    you can i change the the font-size in shorcuts.css or in Backend?
    When i updated the theme than overwrite my settings.

    Do you have solution for this issue?


    Thanks in advance
    Andreas

    #991399
    Sean
    Participant

    How do I set the width of the left sidebar menu?

    In General Layout > Logo and Main Menu, I’m using Left Sidebar & can control the menu elements with CSS. But need to resize the entire menu column. It looks like it is set to set to 300px.

    In General Layout > Dimension > Content | Sidebar Ratio, no matter what I pick, it doesn’t make a difference.

    This is what I’m using to control the menu items in Quick CSS

    .html_header_sidebar #header .av-main-nav > li > a {
    padding: 3px 0px;
    }
    .html_header_sidebar #header .av-main-nav {
      padding: 5px 0;
    }
    .html_header_sidebar .logo {
    padding: 0px;
    }
    .html_header_sidebar #header .av-main-nav > li > a .avia-menu-text {
    font-size:12px;
    }
    • This topic was modified 7 years, 8 months ago by Sean.
    #991397

    Hi,

    Thanks for the info.

    This css code should help you adjust the screen size where the element should be hidden.

    @media only screen and (max-width: 1024px) and (min-width: 768px) {
    .responsive.av-no-preview #top #wrap_all .av-medium-hide, .responsive.av-no-preview #top #wrap_all .av-medium-font-size-hidden, .responsive.av-no-preview #top #wrap_all .av-medium-font-size-title-hidden {
        display: none;
    }
    }

    Default max-width value is 989px. Adjust the max-width value to 1366px if you want to hide the element on iPad Pro devices.

    Best regards,
    Ismael

    #991382

    Hey DROR,

    Thank you for using Enfold.

    Use this css code to adjust the font size of the title.

    .av-magazine .av-magazine-content-wrap .av-magazine-title {
        font-size: 1em;
        line-height: 1.5em;
    }

    Do you want to add an excerpt below the title? The following thread should help.

    // https://kriesi.at/support/topic/date-author-and-excerpt-in-magazine-element/#post-842342

    Best regards,
    Ismael

    #991324

    Hi,
    Please try changing the subtext font-size to: 12px
    like this:

    @media only screen and (max-width: 767px) { 
    .logo h1 {
    font-size: 14px !important;
    margin-bottom: 0px !important;
    padding-top: 10px !important;
    }
    #top .logo .subtext {
        font-size: 12px !important; 
        width: 70% !important; 
        left: 32px !important; 
        top: 20px !important; 
    }
    }

    Best regards,
    Mike

    #991313

    Hi,
    I added this css to your Quick CSS:

    @media only screen and (max-width: 767px) { 
    .logo h1 {
    font-size: 14px !important;
    margin-bottom: 0px !important;
    padding-top: 10px !important;
    }
    #top .logo .subtext {
        font-size: 14px !important; 
        width: 70% !important; 
        left: 32px !important; 
        top: 20px !important; 
    }
    }

    the after clearing my browser cache, see results in screenshot in Private Content area.
    Please try clearing your browser cache a few times.

    Best regards,
    Mike

    #991071

    Hi fensor2,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #top .woocommerce-tabs .tabs li a {
      font-size: 16px;
    }
    .shop_attributes td {
      font-size: 14px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #991030

    Topic: Menu font size

    in forum Enfold
    Vaida
    Participant

    Hello, I want to make my mobile menu items smaller and delete menu items descriptions (they were in demo theme which I have chosen for my web).

    #990935

    Hey fattlco,
    Please try this code in the General Styling > Quick CSS field:

    #scroll-top-link {
         border-radius: 50% !important; 
    }
    #scroll-top-link[data-av_icon]:before {
         font-size: 30px !important;
    }

    Please adjust the font-size to suit.

    Best regards,
    Mike

    Guenni007
    Participant

    on trying to style a bit the testimonial big slider i recognized that there was no choice which animation (slide sidewards, slide up/down or fade) is set.
    First see result here ( i love the deepL translation tool – and i saw that kind of testimonials) :
    https://webers-testseite.de/testimonial-styling/

    what to do is uploading a little perspective shadow

    and then do this to your quick css:

    .av-large-testimonial-slider .avia-testimonial_inner {
        background-color: #eee;
        display: inline-table;
        padding: 40px;
        border: 1px solid #aaa;
        position: relative;
        box-shadow: 0 3px 10px -8px #333;
        -webkit-transform:  skew(-3deg);
        transform: skew(-3deg);
    }
    
    .av-large-testimonial-slider .avia-testimonial_inner::before {
        content: "\e833";
        font-family: entypo-fontello;
        font-size: 70px;
        position: absolute;
        top: -45px;
        left: 15px;
        -webkit-filter: drop-shadow(2px 2px 3px #666);
        filter: drop-shadow(2px 2px 3px #666);
    color: #863c07
    }
    
    .av-large-testimonial-slider .avia-testimonial_inner::after {
        content: " ";
        background-image: url(//link-to-your-shadow-image/wp-content/uploads/testimonial-shadow.png);
        background-repeat: no-repeat;
        width: calc(100% + 60px);
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background-position: bottom right;
        overflow: visible !important;
        background-size: 60px;
        opacity: 0.3;
    }
    
    #top .av-large-testimonial-slider .avia-slideshow-arrows a {
        margin-top: 50px !important;
        }
    

    but on that I noticed that there is no choice which animation the slider has
    for those who likes to have the choice i edited the alb element for child-theme use:
    https://webers-testseite.de/edited-enfold-alb-elements/#testimonial
    PS : this choice is only for big testimonial slider – because the small one looks ugly on that and grid makes no sence – so only if your choice is testimonial slider (large) the new input field is shown.

    PPS: if you don’t like the skew – get rid of that rule

    #990765

    In reply to: Icon sizes – CRAZY!

    Hi,

    I changed your code to following one

    @media only screen and (min-width: 769px) {
    .iconbox_icon.heading-color {
        font-size: 90px !important;
        width: 120px !important;
        height:8px !important;
        border-radius: 100px !important;
        margin-left: -80px !important;
        margin-top: -73px !important;
        padding: 30px !important;
        padding: 60px 20px 90px 20px !important; 
    }}

    Please review your website

    Best regards,
    Yigit

    #990581

    In reply to: Icon sizes – CRAZY!

    When I add

    .iconbox_icon.heading-color {
    font-size: 90px!important;
    width: 120px!important;
    height:8px!important;
    border-radius: 100px!important;
    margin-left: -80px!important;
    margin-top: -73px!important;
    padding: 30px!important;
    padding: 60px 20px 90px 20px!important;
    }

    The website goes REALLY thin and the Icons do NOT change size

    • This reply was modified 7 years, 8 months ago by whdsolutions.
    #990477

    In reply to: Bootstrap button

    i loaded the fa from maxcdn and the styles from the link ismael gave:

    add_action( 'wp_enqueue_scripts', 'enqueue_awesome' );
    function enqueue_awesome() {
      wp_enqueue_style( 'prefix-font-awesome', 'https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css', array(), '4.7.0' );
      wp_enqueue_style( 'font-awesome-styles', 'https://unpkg.com/@coreui/coreui/dist/css/coreui.min.css', array(), '1.0' );
    }

    the only thing to correct was in quick css a bit:

    .btn { font-weight: 600 !important}
    .btn-brand i { font-size: 22px }
    .btn-brand i { margin: -.375rem .75rem -.375rem -.75rem }

    and don’t make line-breaks in text-field:
    <button class="btn btn-brand btn-youtube" type="button"><i class="fa fa-youtube"></i>Youtube</button>

    Edit : i removed the code above from my test-page now – because It does not meet the requirements of the GDPR

    #990415

    In reply to: Topbar

    Hey Reinhard,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 989px) {
      .responsive.html_mobile_menu_tablet .phone-info a {
          font-size: 11px !important;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #990334

    Hi,

    Thanks for clarifying that. Add this to quick css:

    .avia-slideshow-button.avia-button.avia-color-light{
    font-family: 'Lato' !important;
    font-size:100px
    } 

    I added the font-size just so you can see clearly that the font adjusted.

    As for your other question, do you want the button darker?

    Best regards,
    Jordan Shannon

    #990216

    Topic: Topbar

    in forum Enfold
    faserschmeichler
    Participant

    Hallo, die Topbar Schriftgröße habe ich gestylt.
    Jetzt ist nicht der ganze Text angepasst.

    View post on imgur.com

    Hier mein Code:

    /* Topbar Schrift*/
    #top #header_meta a, #top #header_meta li, #top #header_meta .phone-info {
    font-size: 16px;
    }

    /* Topbar Ausrichtung */
    #top #header_meta .sub_menu {
    float: right !important;
    }
    @media only screen and (max-width: 767px) {
    .responsive #header .sub_menu {
    float: right !important;
    width: auto !important;
    text-align: right !important;
    position: static !important;
    }
    .responsive #header_meta .sub_menu>ul>li {
    padding: 0px !important;
    }
    }
    @media only screen and (max-width: 989px) {
    .responsive.html_mobile_menu_tablet .phone-info {
    width: 90% !important;
    text-align: right !important;
    position: absolute !important;
    font-size: 11px !important;
    }
    }
    @media only screen and (max-width: 646px) {
    .responsive.html_mobile_menu_tablet .phone-info {
    width: 100% !important;
    font-size: 6px !important;
    }
    }

    Der Text im Feld “Telefonnummer oder kleiner Infotext”
    Telefon: 0049 8652 6580 • Fax: 0049 8652 65849 • (Email address hidden if logged out) “> (Email address hidden if logged out)

    Homepage: https://koenigssee-2018.projekt.gastropoint.com/

    #990176

    In reply to: Problems with Blog

    Hi darnott75,

    Here is the full code, please replace it:

    
    @media only screen and (max-width: 767px) {
        .html_modern-blog .avia-content-slider h3.slide-entry-title,
        .html_modern-blog #top .post-entry h1.post-title {
            font-size: 20px;
        }
    
    }

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #990050

    Hey SANDRINE,
    For changing the slider h2 to h1, for this one page,
    please try adding this code to the end of your functions.php file in Appearance > Editor:

    function slider_h2_to_h1(){
      if ( is_page('7') ) { ?>
      <script>
      jQuery(window).load(function(){
      var el = document.querySelector('.avia-caption-title');
          el.outerHTML = '<h1 class="avia-caption-title ">' + el.innerHTML + '</h1>';
      });
      
      </script>
      <?php }
      }
      add_action('wp_footer', 'slider_h2_to_h1');

    Then add this code in the General Styling > Quick CSS field:

    h1.avia-caption-title {
        font-size: 60px !important; 
        color: #ffffff !important; 
    }

    Best regards,
    Mike

    #989981

    Thanks
    Do I remove all of this or just one line…

    }
    .sub_menu { font-size: 16px; } /* changes the font size of sub menu */
    .fixed_header.social_header #main { padding-top: 174px; }
    .main_menu ul:first-child > li > a { line-height: 240px !important; }
    #header .mega_menu_title { color: #2f5691; }

    #989922
    This reply has been marked as private.
Viewing 30 results - 6,541 through 6,570 (of 18,742 total)