Viewing 30 results - 5,731 through 5,760 (of 18,738 total)
  • Author
    Search Results
  • #1051347

    Hi,

    You can set a minimum font size for those text. Edit the layer, go to the Styles panel and look for the “Min. Font Size” and “Min. mobile font size” fields. Add a value.
    Or just hide the layer slider on mobile view and display a full screen slider instead. You can toggle the visibility of the elements in the Screen Options panel.

    Best regards,
    Ismael

    #1051346

    Hi,

    You can’t use another shortcode as an attribute value because of how the theme parses the shortcode but you can create a custom shortcode based on the current av_image shortcode.

    // https://codex.wordpress.org/Function_Reference/add_shortcode

    Example:

    function custom_image_shortcode_func( $atts ) {
        $image = do_shortcode('[field image-url]');
        $cv = do_shortcode('[field cv_custom_url]');
        $title = do_shortcode('[field title]');
    
    	return do_shortcode("[av_image src='".$image."' av_uid='av-5y6rbx' attachment='".$image."' attachment_size='full' align='center' styling='' hover='' link='".$cv."' target='_blank' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' copyright='' animation='no-animation' av_uid='av-jpz4q5h9' custom_class='' admin_preview_bg='']".$title."[/av_image]");
    }
    add_shortcode( 'custom_image_shortcode', 'custom_image_shortcode_func' );
    

    Best regards,
    Ismael

    #1051341

    Hi,

    @michaelH: Thanks for helping. :)


    @rosewoodva
    : You might want to try this:

    #small-icon .av-inner-tab-title {
        width: 50px !important;
        font-size: 13px !important;
        font-weight: bold !important;
        min-height: 60px;
        height: 60px;
    }
    
    #small-icon .av-tab-section-image {
        width: 50px !important;
        margin: 0 auto;
    }

    Best regards,
    Ismael

    Hey Paul,

    Thank you for using Enfold.

    You can use decrease the font size of the title or the price on mobile view.

    @media only screen and (max-width: 767px) {
    .av-catalogue-price {
        font-size: 13px;
    }
    
    .av-catalogue-title {
        font-size: 15px;
    }
    }

    Best regards,
    Ismael

    Hey barabasone,

    1) Please go to Appearance > Menus and click Screen Options and check “Description” and add your text in description field

    2)
    Add the following to quick css:

    .avia-menu-text{ 
    font-size:24px!important;
    font-weight:bold!important;
    }

    Best regards,
    Jordan Shannon

    #1051035

    I’ve used this code for the font size and it works.

    .av-masonry-entry-title.entry-title {
    font-size: 12px !important;
    text-align: center;
    text-transform: uppercase;
    }

    I am yet to resize the images.

    #1051030
    AB
    Participant

    WP: both last version for 5.02 + now 5.02 / Enfold latest version 4.4.x

    What struck me as an Enfold beginner (in terms of adaptation to screen sizes, testet on tablet, android system, partly also in the customer tool):

    1. Content has very large distance to the head (on tablet & phone) no comparison to PC Monitor
    2. The up arrow does not appear (test on tablet screen)
    3. Illustrations with the “hot spots tool”: a) the spots are no longer recognizable (near invisible) b) the info boxes are already open below the picture, which makes no visual sense
    4. the head is not sticky on a small screen, disappears when scrolling, in combination with the missing up arrow this is very impractical, because with long pages it has to be wiped upwards to get to the navigation

    5. concerns hot spot settings in general (in AVIA): no way to set them in size, position and color? On PC screen testet: 2 spotes are blue, 1 spot is white, wy? (the blue are over picture, the white is over background, this is white, so this spot near unvisible)

    6. the tab-boxes get on mobile phone / tablet a very different background color than on the PC! Likewise, an also the head background. (this is a noGo, because the logo get´s a optical crash)
    7. for the last section at the lower foot (below the footer area) the text is not adjustable in size, almost unreadable on the PC, so that is not readable on mobile devices
    8. Where is there a feature to set the font sizes for mobile devices separately? Or when will this be? Also as far as the pictures are concerned, switching off only for certain screen sizes does not really make sense

    9. Also, the logo size can not be set separately for small screen. Also, a separate 2nd logo file can not be loaded, for example with a less wide field, so that the navigation does not slip into the logo or come too close.
    10. Illustrations in the tool “Portfolio Raster”: have on the PC as desired, for example, a grid of 5 on a line, and on the tablet are also shown these 5 in a line, which makes no sense, since this are too much small, they do not switch from 5 to 4,2,2,1. in a line
    11. AVIA contact form tool: in the text field, very practical, line by line default text can be integrated as a user selection, a nice thing, but that does not work well on the small monitor from the tablet? (current Android system) Here, the selection text is no longer shown, but only a “0”, only after touching the field is the text displayed.

    I ask for feedback, which goes wrong. Thanks

    #1050981

    Hi,

    Please replace following code

    .sub_menu {
        float: left;
        z-index: 2;
        font-size: 11px;
        line-height: 30px;
        position: relative;
        top: 10px;
    }

    with following

    .sub_menu {
        float: left;
        z-index: 2;
        font-size: 11px;
        line-height: 30px;
        position: relative;
    }

    Then delete following

    @media only screen and (min-width: 601px) {
    #mega-menu-wrap-avia2 {
        background: #222;
    }}

    and add following

    #header_meta a.mega-menu-link {
        color: black;
    }

    If this does not help, please post a screenshot and show the changes you would like to make.

    @michaelH Thanks for your help!

    Best regards,
    Yigit

    #1050717

    Hey diypaleo,
    One solution is to add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    h2 span {    
        word-wrap: break-word !important; 
    }

    But it may look better if you lowered the font size for the h2 in mobile view also.

    @media only screen and (max-width: 767px) { 
    h2 span {    
    word-wrap: break-word !important; 
    font-size: 46px !important;
    }
    }

    Best regards,
    Mike

    #1050682

    Hi,

    1. That would require custom CSS to modify the size of the icon. As a quick turn around u can use:

    i {
    font-size: 12px;
    }

    Best regards,
    Basilis

    #1050434

    In reply to: Image Captions

    Hey adamblakester,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .av-image-caption-overlay {
      bottom: -20px !important;
      font-size: 10px !important;
      height: auto !important;
      left: 50% !important;
      transform: translate(-50%) !important;
      width: 100% !important; 
      text-align: justify !important;
    }
    

    2019-01-05-170911

    Best regards,
    Mike

    #1050423

    Hi Victoria,
    happy new year to y’all ;-) Sorry for the late response!

    I did as you said, the code is presently in styles.css, but I put it into Enfold > General Styling > Quick Css, …and… themes/enfold/css/custom.css

    #top #avia-menu > li:hover > a  {
    	background: transparent !important;
    	text-decoration: underline;
    }
    
    #top #avia-menu > li:hover > a span.avia-menu-text {
    	color: #574b41 !important;
    }

    no effect! I need to style the menu (font-size etc.) as of a customers request.

    Do you have any further ideas? You are probably right with your clues, but can something overwrite those styles? Is there another style section that I/we don’t see that is prioritized
    Thanks
    Stefan

    #1050385
    rosewoodva
    Participant

    Hi there,

    I have been through multiple previous support threads but cannot make it work. We just want the text and image to be aligned center for all the Tabs in the Tab Sections. Any help appreciated, thanks!

    Login info in Private Content. Page: http://trythebear.com/clients/aafx/recruiting-software/
    Screen shot here: https://snag.gy/dYtbjy.jpg

    I am using the following CSS to control the size of the image and the text…

    #small-icon .av-tab-section-image {
    width: 50px !important;
    }

    #small-icon .av-tab-arrow-container {
    width: 50px !important;
    }

    #small-icon .av-inner-tab-title {
    width: 50px !important;
    font-size: 13px !important;
    font-weight: bold !important;
    }

    • This topic was modified 7 years, 3 months ago by rosewoodva.
    #1050383
    This reply has been marked as private.
    #1050373

    Hi,
    Sorry for the late reply, I took a look at your page and took the liberty to create a clone of it to test with, please see:
    /center-icons-test/
    I changed the color section ID so that none of your other css would be applied to this page.

    I noticed that in your text block element after your icons shortcode you have your text-align: center; I believe that you meant to wrap your icons shortcode with this.
    I then added a code block with a style rule so it would only apply it to this one page:

    <style>
    .av_font_icon {
    display: inline-block !important;
    }
    </style>

    The icons are now centered in a horizontal line for all screen sizes, please check.
    The vertical alignment could be adjusted some if you like.

    Best regards,
    Mike

    #1050362

    Topic: Image Captions

    in forum Enfold
    adamblakester
    Participant

    Hey,
    Just trying to find a simple solution for a client who uses the Enfold theme.
    They want to have image captions that sit below the image, right aligned, italic with no hover effect.

    I’ve tried a few things (such as below) but can’t get it to work.
    Thoughts?

    /*—————————————-
    // CSS – Image element
    //————————————–*/

    #top .av-image-caption-overlay {
    height: auto;
    width: auto;
    left: 0px;
    bottom: 0px;
    transform: translateY(100%);
    font-family: “Times New Roman”, Times, serif;
    background-color: white !important;
    text-align: right;
    font-size: 11px;
    font-style: italic;
    color: black !important;

    }
    #top .av-image-caption-overlay-center {
    padding: 0;
    }
    #top .avia_image {
    margin-bottom: 10px;
    }

    #1050148
    tremblayly
    Participant

    Hi
    I found the following topic: https://kriesi.at/support/topic/increase-columns-for-cross-sells-products/ that provides a way to do this.

    I implemented the change in my child theme’s function.php and styles.css files by using the same code for upsells and cross-sells but changing the filter names for the upsells products. It does not appear to work.

    Here’s a link a to a product that contains upsells: https://silviafindings.com/product/spring-ring-clasp-sterling-silver-closed-jump-ring-5-5mm-heavy
    Here’s a link to a product you can add to your cart that contains cross-sells: https://silviafindings.com/product/leaf-charm-sterling-silver-23-mm-x-9-mm-x-1-7mm

    Here’s what I have added to my functions.php file:

    /*  increase # of columns of cross-sells products */
    remove_filter('woocommerce_cross_sells_total', 'avia_woocommerce_cross_sale_count', 10);
    remove_filter('woocommerce_cross_sells_columns', 'avia_woocommerce_cross_sale_count', 10);
    
    add_filter('woocommerce_cross_sells_total', 'avia_woocommerce_cross_sale_count_mod', 21);
    add_filter('woocommerce_cross_sells_columns', 'avia_woocommerce_cross_sale_count_mod', 21);
    
    function avia_woocommerce_cross_sale_count_mod($count)
    {
    	return 5;
    }
    
    /*  increase # of columns of upsells products */
    remove_filter('woocommerce_upsells_total', 'avia_woocommerce_up_sale_count', 10);
    remove_filter('woocommerce_upsells_columns', 'avia_woocommerce_up_sale_count', 10);
    
    add_filter('woocommerce_upsells_total', 'avia_woocommerce_up_sale_count_mod', 21);
    add_filter('woocommerce_upsells_columns', 'avia_woocommerce_up_sale_count_mod', 21);
    
    function avia_woocommerce_up_sale_count_mod($count)
    {
    	retu

    Here’s what my styles.css has:
    /* customize cross-sells/upsells 5 columns and H2 font size*/
    #top .products columns-5 div .products .product {
    width: 18.6%!important;
    }

    Any help wold be greatly appreciated.
    Thanks
    Lyse

    #1049862

    Topic: Several problems

    in forum Enfold
    VORMELEVENCC
    Participant

    Hi there,

    First of all, the best wishes for 2019!

    I have a couple of questions. It’s all related to mobile devices
    1) is it possible to decrease the heading font sizes on mobile by 80%? and increase on desktop view 120%?
    2) Countdown number changes color on mobile –> Yellow ball looses the background color on mobile (https://fitdockum.nl/aanbod__trashed/personal-training-dokkum/)
    3a) We want to change the 85% width iframe/container on mobile to 100% (https://fitdockum.nl/inschrijven/)
    3b) On thes ame iFrame page (https://fitdockum.nl/inschrijven/) can’t move the upper row from right to left on Apple mobile devices (android works)
    3c) Same page: cuts of a part of the end on the latest item top row

    Not related to mobile:
    5) Child Theme style.css doesn’t work, only the Quick CSS

    Hope you can help me
    With kind regards

    #1049664

    Hi Vinay,

    I did exactly what you told me, this is the code I get:

    [av_sidebar widget_area='Sidebar Pages' av_uid='av-14hvt']
    [av_button label='Next events' link='manually,https://frankfurt.agbc.org/events/' link_target='' size='large' position='center' label_display='' icon_select='yes' icon='ue80b' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-jonbc5vm' admin_preview_bg='']

    The meta key is event_date. Could you tell me what to do with it exactly and where to place it?
    Thank you so much and happy new year!
    Jan

    #1049616
    lkellerdaidalos
    Participant

    Hallo,

    ich habe bis jetzt Bilder mit transparentem Hintergrund verwendet und die Darstellung war so wie ich wollte ohne Bilderrahmen.

    Siehe diesen Link. https://daidalos.de/produkte/
    Der dunkle Bereich mit den einzelnen Profilen. So sollte es aussehen.

    Heute habe ich versuch die Bilder mit transparentem Hintergrund, durch Bilder mit einer Hintergrundfarbe zu wechseln und dabei bekomme ich Bilderrahmen die ich nicht weg bekomme. Wie kann ich diese Bilderrahmen entfernen?
    https://daidalos.de/
    Bereich Produkte.

    Bei Quick CSS habe ich folgendes stehen:

    .main_color .av-masonry, .main_color .av-masonry-outerimage-container {
    background: transparent center center repeat scroll;
    }
    #top .av-masonry-entry.isotope-item figcaption,
    #top .av-masonry-entry.isotope-item .avia-arrow {
    background: #3d3c42;
    }
    #top .av-masonry-entry.isotope-item .entry-content {
    color: #ffffff;
    font-size:15px;
    text-align: center;
    }
    #top .av-masonry-entry-title {
    text-align: center;
    }

    Vielen Dank für die Hilfe.

    Viele Grüße

    Alex

    #1049388
    Yvonne_1211
    Participant

    Hello,
    I use icon boxes on my website to structure the content. For this I use a custom css styles like a background-color, a own font- size…
    But on one site, I need six different background-colors of the six icon boxes. With which code can I address the attributes that cause each Icon Box to have a different background color? In the edit function of the icon box I can not define a background color
    Here is my the css code:

    .iconbox_content_container {
    font-size: 17px !important;
    color: #4e7f22 !important;
    line-height: 32px;
    padding: 0.8em;
    }

    Thanks for help

    #1049387
    yan_nik
    Participant

    Hello there,

    I’d like to change the font color of WooCommerce buttons. I’m able to change the button style itself, but I don’t have access to the text.
    For example I’d like to change the “Proceed to checkout” button and the text. The button can easily be changed with

    .checkout-button{
    background-color: red !important;
    ....
    }

    However, when I try adding color: blue !important; into the same code block, the font color of the button, namely the text “Proceed to checkout” won’t change its color to blue but stays in its default color black. Neither I can change the font-weight nor font-size nor anything else regarding the text.

    How can I change the text itself?
    Same for all other buttons in WooCommerce. I can access the button itself by looking up their name in the developer environment, but I can’t access the button text.

    Thanks for you help and best regards,
    Yannik

    • This topic was modified 7 years, 3 months ago by yan_nik.
    #1048988

    and you like to have the icons under each other?

    First – you don’t need to have here list tags
    if you take for example a span tag these icons are beside each other.
    I added a class to adress all icons at once:

    <span class="social_bookmark social_bookmarks_twitter av-social-link-twitter social_icon_2"><a target="_blank" href="https://twitter.com/DTB050" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Twitter"><span class="avia_hidden_link_text">Twitter</span></a></span>
    <span class="social_bookmark social_bookmarks_instagram av-social-link-instagram social_icon_3"><a target="_blank" href="https://www.instagram.com/detekstenbakkerij/" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Instagram"><span class="avia_hidden_link_text">Instagram</span></a></span>
    <span class="social_bookmark social_bookmarks_facebook av-social-link-facebook social_icon_1"><a target="_blank" href="https://www.facebook.com/DeTekstenbakkerij" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Facebook"><span class="avia_hidden_link_text">Facebook</span></a></span>

    then do this to quick css:

    #footer .social_bookmark a {
        width: 40px;
        height: 40px;
        font-size: 30px;
        padding: 5px;
        display: inline-block;
        text-align: center;
    }

    looks this way: https://webers-testseite.de/ostler/#footer

    #1048736
    tycho4511
    Participant

    I am using this code `.avia-fullscreen-slider .avia-caption-title {font-family: Verdana,
    sans-serif; font-size:1em; color:blue; }`

    to try to change the font on my fullscreen slider. It changes the color and I can get it to change to generic font family (eg. sans-serif or serif; it is blue in the css code) but the specific fonts do not change)

    I also tried changing the fonts in the Advanced styling area. (Actually none of the changes in the styling area seem to be working)

    I did try emptying the cache.

    #1048714

    In reply to: Comments Font Size

    Hey mooshonov,

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

    CSS Snippet:

    
    /* CSS - */
    
    
    .comment_text p {
        font-size: 24px;
    }
    
    
    

    Best regards,
    Vinay

    #1048567

    Topic: Comments Font Size

    in forum Enfold
    mooshonov
    Participant

    Hi,
    Would like to control comments so-small font to make it at least 16px.
    Any quick CSS for that?
    Thanks so much!

    #1048450

    Hi check-t,

    This is to change it globally, add this in Quick CSS (located in Enfold > General Styling):

    #top .iconbox_icon {
        font-size: 18px;
    }

    If you want it to be specific, go to Enfold > Layout Builder > check Show element options for developers
    Go back to the page, edit the icon box and you should see Custom CSS Classes (you can put any name) as an example I’ll use myclass as the value, then in Quick CSS, I’ll add:

    #top .myclass .iconbox_icon {
        font-size: 18px;
    }

    just change the font size value, on your site the default is 23px.

    Best regards,
    Nikko

    #1048325

    In reply to: no responsive slide

    Hey robertolex,

    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:767px){
      #full_slider_1, 
      #full_slider_1 .av_slideshow_full.avia-slideshow,
      #full_slider_1  .avia-slideshow-inner,
      #full_slider_1 .avia-slideshow li,
      #full_slider_1 .avia-slideshow li img,
      .avia-slide-wrap  {
        min-height: 220px !important;
    
      }
      #full_slider_1 .avia-slideshow li img {
        width: 180% !important;
        max-width: auto;
      }
       .html_header_transparency #top .avia-builder-el-0 .slideshow_caption {
          padding-top: 0px;
      }
    }
    @media only screen and (min-width: 768px) and (max-width:989px) {
     .html_header_transparency #top .avia-builder-el-0 .slideshow_caption p {
         margin: 0;
         font-size: 20px
     }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1048316

    Hi kwlodar,

    Thank you for pointing out to the issue with the demo, I’ll forward it.

    Well, to be sure you have the 15px on ll blog posts you can use the css:

    
    .template-blog.template-single-blog p {
        font-size: 15px;
    }
    

    Thank you and Merry Christmas to you too!
    Best regards,
    Victoria

    #1048114

    Hello Victoria,
    thank you for reply! The code works perfectly fine! But isn’t it a global bug to fix? Enfold demo site has the same problem: https://snag.gy/xSTfdH.jpg

    I can understand your font recommendation but I don’t know how to implement it. I was sure it is fine to set global font size in Enfold/Appearance (?) section: https://snag.gy/ihwcop.jpg. Unfortunately it seems that doesn’t works like this. As I mentioned no font size modification was made on the post editing level. Do you have any idea how to make this consistent?

    Merry Christmas! and best regards,
    Chris!

Viewing 30 results - 5,731 through 5,760 (of 18,738 total)