Viewing 30 results - 3,691 through 3,720 (of 18,733 total)
  • Author
    Search Results
  • #1220923

    In reply to: diagonal ribbon

    Guess that this is just an image – a photoshop thing.
    Do you need this often – or just for a few images?

    See here – this is made with caption of Image ALB:
    https://webers-testseite.de/image-with-ribbon/

    In any case I think it would be better to do it in a photo editing program. Just look at the way it behaves when you make the screen smaller.

    the image alb got a custom-class: with-ribbon

    .with-ribbon .av-caption-image-overlay-bg {
        display: none;
    }
    
    .with-ribbon .av-image-caption-overlay-center p {
      background-color: rgba(255,0,0,0.8);
      color: #fff;
      text-shadow: 1px 2px 3px #000;
      padding: 20px ;
      position: absolute;
      top:5%;
      left: -10%;
      transform: rotate(-30deg) ;
      width: 80%;
      text-align: left;
      text-indent: 40px;
      box-shadow: 1px 2px 8px #000;
      font-size: 36px;
      text-transform: uppercase;
    }

    BTW, the only thing that now has changed is the color of the even rows. I cleared cache.. so its not all working. Do you understand what I’m trying to do? So I want all this to be working for ONLY tables with class=”sponsorbedragen”:

    td.avia-highlight-col {
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aea04b !important;
    }
    
    .main_color .avia-data-table th.avia-highlight-col {
    border-color: #ebebeb;
    color: #000000;
    background-color: #f5f3ed !important;
    }
    
    td, th, tr, .main_color .avia-data-table .avia-highlight-col {
    background-color: #f5f3ed;
    font-size: 19px;
    }
    
    .sponsorbedragen tr td:first-child {
    font-weight: bold;
    }
    
    @media only screen and (max-width: 767px) { 
    .avia-data-table-wrap.avia_responsive_table td:before {
    display: none !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
    .responsive .avia_responsive_table .avia-data-table, 
    .responsive div .avia_responsive_table .avia-data-table tbody, 
    .responsive div .avia_responsive_table .avia-data-table tr, 
    .responsive div .avia_responsive_table .avia-data-table td, 
    .responsive div .avia_responsive_table .avia-data-table th {
    border: none !important;
    }
    }
    
    @media only screen and (min-width: 768px) {
    .responsive .avia_responsive_table .avia-data-table, 
    .responsive div .avia_responsive_table .avia-data-table tbody, 
    .responsive div .avia_responsive_table .avia-data-table tr, 
    .responsive div .avia_responsive_table .avia-data-table td {
    border: none !important;
    }
    .responsive div .avia_responsive_table .avia-data-table th {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #969696 !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
    td {
    padding: 0px;
    }
    td.avia-highlight-col {
    padding-bottom: 20px !important;
    }
    }
    
    tr.avia-heading-row {
    border-bottom: 1px solid #000000 !important;
    }
    • This reply was modified 5 years, 9 months ago by jannnnnneke.
    #1220867

    Hey,

    1- Please add following code to bottom of functions.php file to update widget title tags (H4 in example)

    function av_widget_title_tag( $params ) {
        $params[0]['before_title'] = '<h4 class="widgettitle">' ;
        $params[0]['after_title']  = '</h4>' ;
        return $params;
    
    }
    add_filter( 'dynamic_sidebar_params' , 'av_widget_title_tag' );

    2- To edit widget title font sizes, please go to Enfold theme options > Advanced Styling and edit “Widget title” :)


    @guenni007
    Thanks for your help El Supremo! :)

    Best regards,
    Yigit

    #1220857

    i guess you can follow this answer here:
    https://kriesi.at/support/topic/change-h3-tags-in-footer-widget-child-theme-of-enfold/#post-727939 and from Yigit here:
    https://kriesi.at/support/topic/change-h3-tags-in-footer-widget-child-theme-of-enfold/#post-728320

    On register-widget-area.php you find the names and ID’s of the widget areas. I cannot see a Forum Widget Area – but you will know that on your installation. ( i let it on section instead of your div – then all would be the same syntax – if you like change section to div)
    The normal blog widget is called: Sidebar Blog with id: av_blog
    for child-theme functions.php:

    function ava_remove_some_widgets(){
    	unregister_sidebar( 'av_forum' );
    
    	register_sidebar(array(
    		'name' => 'Forum',
    		'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">',
    		'after_widget' => '<span class="seperator extralight-border"></span></section>',
    		'before_title' => '<h4 class="widgettitle">',
    		'after_title' => '</h4>',
    		'id'=>'av_forum'
    	));
    }
    add_action( 'widgets_init', 'ava_remove_some_widgets', 11 );

    For the font size change, couldn’t find the relevant CSS selectors either.

    For advice, I would have to see the page it concerns.

    _____________________
    Off Topic
    as long as the headings should be all the same tag i would take this code instead of Yigits – a little bit shorter:
    for child-theme functions.php:

    function register_custom_footer_widget(){   
        $footer_columns = avia_get_option( 'footer_columns', '5' );
        for ($i = 1; $i <= $footer_columns; $i++){
        unregister_sidebar( 'av_footer_'.$i );
    
        register_sidebar(array(
          'name' => 'Footer - column'.$i,
          'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 
          'after_widget' => '<span class="seperator extralight-border"></span></section>', 
          'before_title' => '<h5 class="widgettitle">', 
          'after_title' => '</h5>', 
          'id'=>'av_footer_'.$i
        ));
      } 
    }
    add_action( 'widgets_init', 'register_custom_footer_widget', 11 );
    #1220841
    nikos1991
    Participant

    Hello,

    In the following link (see private)
    When i copy paste text from word, most parts are working properly (Verdana 12px) but some parts like
    “Αναχωρήσεις: 22  & 29/07”
    it seems like they totally ignore my settings regarding “Verdana 12px” and just do not adapt.
    I have set in the following settings (check picture in private) , but they do not work in some parts of the text.

    How can i force the default text block in products be like “font size 12px and font family Verdana” ?

    Please help me.

    P.S. I just found out my promo box layout is missing “button link” , i send you picture of it in private, please check.

    Thank you in advance,

    #1220833
    menainfosec
    Participant

    Hi,

    We’re trying to change the header tags of the “categories” and “latest news” in our blog sidebar from <h3> to anything else. We also want to change the font size of all h3 elements from 30px to 28px.

    We’re currently using the enfold child them, I tried altering the PHP theme code below but with no luck:

    register_sidebar(array(
    ‘name’ => ‘Forum’,
    ‘before_widget’ => ‘<div id=”%1$s” class=”widget clearfix %2$s”>’,
    ‘after_widget’ => ‘<span class=”seperator extralight-border”></span></div>’,
    ‘before_title’ => ‘<h3 class=”widgettitle”>’,
    ‘after_title’ => ‘</h3>’,
    ‘id’ => ‘av_forum’
    ));

    For the font size change, couldn’t find the relevant CSS selectors either.

    #1220772

    Hey sizzler65,

    Please try the following in Quick CSS under Enfold->General Styling:

    #footer #menu-featuredl-links li a {
        font-size: 18px;
    }

    Best regards,
    Rikard

    Hey Carsten,

    I added this for you in Quick CSS:

    .av-milestone-date strong {
      font-size: 17px;
    }

    Please review your site.

    Best regards,
    Rikard

    ssentialdesign
    Participant

    Hi I would like to

    1) change the animation at the full screen slider to a non-animated headline and description, just the buttons should change. I have 3 slides, all show the same picture, headline and description, just the links (shown as buttons) shall change/be animated as slides. As alternative: is it possible to show 3 buttons at the first (and then only) slider? How can I solve this (non-animated text OR 3 buttons/links)?

    2) I have placed 5 images in a masonry gallery nect to each other, their captions/title appear by hovering. That is working, but the font size is too big as it is not visible completely on the first image, the second image “lays” on top of it.

    I will send you a screenshot and a short video to demonstrate it as the website is not public yet.

    Thank you very much in advance, all the best,
    Sabrina

    #1220474
    sizzler65
    Participant

    Hello,

    I am working on the website footer using Enfold child theme and have a navigation menu widget in column 2. How do I increase the font size of the ‘Featured links’ menu items to match my ‘Contact’ address details (text widget) in column 1?

    Please can you provide the CSS code. Have not been able to find the answer on the forum.

    Also, the navigation menu is using custom link(s). How can you get a custom link to open in a new tab? There is no option to select in Appearance>Menus>Custom Links settings that I can find.

    Thank you

    #1220319

    In reply to: The & sign

    Every font gets that special ampersand because of a class .special_amp.

    Here’s what I did in my site custom css:

    .special_amp {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    }

    #1220278

    Just adding to the thread
    FEATURE REQUEST
    Button / styling / appearance / font-size
    Would be super helpful.- mainly when doing larger buttons :)
    Thanks
    Axel

    • This reply was modified 5 years, 9 months ago by AxelSchultze.
    designbasis
    Participant

    Hi Folks,

    I’ve got a strange problem on one of my customer sites. The Fontsize of
    the timeline changed by itself and now it’s not any longer adjustable.
    I tried it x-times again and again…nothing helped. ;-/ Please take a look
    on the site and see by yourself.

    The “Date Font Sizes“ and the “Size Of The Title“ are not adjustable.
    Only the “Fontsize Of The Content“ is adjustable! The Size should be
    17pt everywhere. Please, try it by your own and you’ll see. I dont know
    if the problem arrived with the last enfold- or wp-update. Anyway, very
    strange in any case! ;-/ There are still more strange things but this I’ll
    tell you in another thread.

    I can say that this is not the first time that this kind of problem showed
    up. The last times I always thought it was a problem with the mac, but
    now I think that it is an enfold-prob.

    Sorry, but I’m a liitle bit in hurry with that project, so I hope you’ll can
    help me very soon. Thank you in glance!

    Best regards
    Carsten

    • This topic was modified 5 years, 9 months ago by designbasis.
    #1220144

    Hi,

    Please try the following in Quick CSS under Enfold->General Styling:

    #header_meta .menu li a {
      font-size: 16px;
    }

    Best regards,
    Rikard

    #1220089

    Hi,
    Sorry for the late reply, the css I posted above will work on any site viewed as mobile with an H2 that also has the class av-mini-font-size-14:

    @media only screen and (max-width: 767px) { 
    #main .av-mini-font-size-14 > h2 {
    	font-size: 12px !important;
    }
    }

    I don’t imagine that you would like the other “H” tags to have the same font size on mobile as the H2, so if you can tell us what mobile sizes you want with each “H” tag we can assist.
    I also recommend linking to a test page with different H tags you would like to customize because they may not all use the class av-mini-font-size-14 for mobile so we should check, I also recommend choosing a custom class to add the H tags that you would like to customize, because changing the font size broadly and across your whole site can have surprising results because each element has different font sizes for the H tags depending on how they are used.
    Using custom classes for customized styles gives you better control than broadly making changes that may cause conflicts later.

    Best regards,
    Mike

    #1220020

    Hi Rikard
    My question is how do we add CSS to make the text (Menu words) larger.
    This is what I use to make the Phone number larger.

    .phone-info {
    width: 250px;
    padding-top: 18px;
    padding-left: 20px;
    font-size: 22px !important;
    }

    What is the CSS code for that Secondary Menu to make it larger text.

    I hope that’s clearer.
    Cheers Dave

    #1219998

    In reply to: format menu and ticker

    Hello Rikard
    Thanks for your answer

    Centering pass great
    but the rest under Enfold->Advanced Styling,
    I can’t do this, have tried all points
    for example: font size, font color, mouse over

    which point under Enfold->Advanced Styling, do I have to take

    many thanks
    kind regards
    Franz

    #1219638

    Topic: format menu and ticker

    in forum Enfold
    schweg33
    Participant

    Hello everybody
    I was a little bit of a mess.

    Now I would have the following questions

    I have lowered the menu here. My question?
    Can I format this menu via CSS
    Centered
    Font size
    Colour
    Mouse Over Color
    Background

    On the first page there is a ticker
    Can I change the background there?

    Can a different start page be used for the mobile device.

    A bit much at once
    Thanks a lot
    Best regards Franz

    Leofiori
    Participant

    I noticed this problem, i am not 100% sure if it happened before but i just updated Enfold and WP to the latest versions.
    If i add an image using the image component that you find under media elements tab, the image do not appear. This happens everywhere, in blog posts or pages. I enabled the debug mode and i see a shortcode appearing correctly


    And it gets translated to html when i inspect the page’s code (i extracted this bit from page’s source):’

    <div id='main' class='all_colors' data-scroll-offset='88'> <div class='main_color container_wrap_first container_wrap fullsize' style=' ' ><div class='container' ><main role="main" itemscope="itemscope" itemtype="https://schema.org/Blog" class='template-page content av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-4746'><div class='entry-content-wrapper clearfix'><div class='avia-image-container av-styling- avia-builder-el-0 avia-builder-el-no-sibling avia-align-center ' itemprop="image" itemscope="itemscope" itemtype="https://schema.org/ImageObject" ><div class='avia-image-container-inner'><div class='avia-image-overlay-wrap'><img class='avia_image' src="data:image/svg+xml,%3Csvg%20xmlns%3D%27http://www.w3.org/2000/svg%27%20viewBox%3D%270%200%203%202%27%3E%3C/svg%3E" data-src='https://www.garfagnanadream.it/wp-content/uploads/2020/05/santuario-argegna-garfagnana-3-scaled.jpg' alt='Santuario Argegna in Garfagnana' title='' height="1280" width="1920" itemprop="thumbnailUrl" loading="lazy" /></div></div></div></div></div></main> </div></div> <footer class='container_wrap socket_color' id='socket' role="contentinfo" itemscope="itemscope" itemtype="https://schema.org/WPFooter" > <div class='container'> <span class='copyright'>© Copyright - Garfagnanadream - 2020 </span> <ul class='noLightbox social_bookmarks icon_count_2'><li class='social_bookmarks_instagram av-social-link-instagram social_icon_1'><a target="_blank" aria-label="Collegamento a Instagram" href='https://www.instagram.com/garfagnana_dream/' aria-hidden='false' data-av_icon='' data-av_iconfont='entypo-fontello' title='Instagram' rel="noopener noreferrer"><span class='avia_hidden_link_text'>Instagram</span></a></li><li class='social_bookmarks_facebook av-social-link-facebook social_icon_2'><a target="_blank" aria-label="Collegamento a Facebook" href='https://www.facebook.com/garfagnanadream/' aria-hidden='false' data-av_icon='' data-av_iconfont='entypo-fontello' title='Facebook' rel="noopener noreferrer"><span class='avia_hidden_link_text'>Facebook</span></a></li></ul>

    If you look at it you can see that there is an img tag:
    <img class='avia_image' src="data:image/svg+xml,%3Csvg%20xmlns%3D%27http://www.w3.org/2000/svg%27%20viewBox%3D%270%200%203%202%27%3E%3C/svg%3E" data-src='https://www.garfagnanadream.it/wp-content/uploads/2020/05/santuario-argegna-garfagnana-3-scaled.jpg' alt='Santuario Argegna in Garfagnana' title='' height="1280" width="1920" itemprop="thumbnailUrl" loading="lazy" />

    But i don’t see it, blank page.

    • This topic was modified 5 years, 9 months ago by Jordan Shannon.
    • This topic was modified 3 months ago by Yigit.
    • This topic was modified 3 months ago by Yigit.
    #1219556

    Using the DevTools in my browser I was able to find a CSS entry that lets me change how images placed in tables align within the cells, and added the following to Enfold Quick CSS – changing a “vertical-align: baseline;” portion of the CSS to be “vertical-align: top;”.

    img{
    margin: 10;
    padding: 10;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: top; }

    Not sure if this is the best way to handle the problem, but seems to fix the problem.

    #1219533

    Topic: header formated

    in forum Enfold
    schweg33
    Participant

    Hello everybody
    1. i have lowered the main menu of this homepage and changed the display of a logo to

    Now I want to format these menus
    center
    font size
    font color
    mouse over
    background
    i can’t find where, can i css it

    2. is it possible to specify a different start page for mobile?

    Thank you and best regards
    Franz

    #1219529

    Hi,

    Add this to quick css:

    h2.av-special-heading-tag,
    h2 span{
    font-size:100px!important;
    }

    Best regards,
    Jordan Shannon

    #1219524

    ok i made a dev (see link) where, in advanced stylling I created a customize All Headings (H1-H6) and put a blue background

    for example the second title of home page : EL MÉTODO <span>MI AYUNO</span> is h2
    in heading module the font-size is set to 100px
    but we see that this font size of 100px is not applied to h2 because (with css inspector) we see the font size is applied to the wrapper of the h2

    Hi,

    Adjusted the css a bit. Please test:

    .sponsorbedragen td.avia-highlight-col {
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aea04b !important;
    }
    
    .main_color .avia-data-table.sponsorbedragen  th.avia-highlight-col {
    border-color: #ebebeb;
    color: #000000;
    background-color: #f5f3ed !important;
    }
    
    .main_color .sponsorbedragen tr:nth-child(even) {
    color: #000000 !important;
    }
    
    td, th, tr, .main_color .sponsorbedragen.avia-data-table .avia-highlight-col {
    background-color: #f5f3ed;
    font-size: 19px;
    }
    
    .sponsorbedragen th:first-child {width: 25%;}
    .sponsorbedragen th:nth-child(2) {width: 60%;}
    .sponsorbedragen th:nth-child(3) {width: 15%;}
    
    .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
    letter-spacing: 0px;
    }
    
    .sponsorbedragen tr td:first-child {
    font-weight: bold;
    }
    
    @media only screen and (max-width: 767px) { 
    .avia-data-table-wrap.avia_responsive_table td:before {
    display: none !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
    .responsive .avia_responsive_table .avia-data-table, 
    .responsive div .avia_responsive_table .avia-data-table tbody, 
    .responsive div .avia_responsive_table .avia-data-table tr, 
    .responsive div .avia_responsive_table .avia-data-table td, 
    .responsive div .avia_responsive_table .avia-data-table th {
    border: none !important;
    }
    }

    @media only screen and (min-width: 768px) {
    .responsive .avia_responsive_table .avia-data-table,
    .responsive div .avia_responsive_table .avia-data-table tbody,
    .responsive div .avia_responsive_table .avia-data-table tr,
    .responsive div .avia_responsive_table .avia-data-table td {
    border: none !important;
    }
    .responsive div .avia_responsive_table .avia-data-table th {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #969696 !important;
    }
    }

    @media only screen and (min-width: 768px) {
    .page-id-25 .responsive .avia_responsive_table .avia-data-table,
    .page-id-25 .responsive div .avia_responsive_table .avia-data-table tbody,
    .page-id-25 .responsive div .avia_responsive_table .avia-data-table tr,
    .page-id-25 .responsive div .avia_responsive_table .avia-data-table td {
    border: 1px solid #969696 !important;
    }
    .page-id-25 .responsive div .avia_responsive_table .avia-data-table th {
    border: 1px solid #969696 !important;
    }
    }

    @media only screen and (max-width: 767px) {
    td {
    padding: 0px;
    }
    td.avia-highlight-col {
    padding-bottom: 20px !important;
    }
    }

    tr.avia-heading-row {
    border-bottom: 1px solid #000000 !important;
    }

    Best regards,
    Jordan Shannon

    #1219488

    In reply to: H1 Title in Smartphone

    Hi,

    Add this to quick css:

    .avia-builder-el-0.avia-builder-el-first{
        font-size: 50%!important;
        word-break: break-word!important;
    }

    Best regards,
    Jordan Shannon

    #1219328
    Dave
    Participant

    Hi Guys
    How do I or what is the CCS code to make the Secondary Menu larger?

    I use this to make the phone number larger in the same section.
    .phone-info {
    width: 250px;
    padding-top: 18px;
    padding-left: 20px;
    font-size: 22px !important;
    }

    BTW I’m using the Enfold theme template – Shop Demo
    So it’s the Shopping Cart Menu (top right corner) that we want to make larger (and style)

    I look forward to your help.

    Thanks in advance Dave :)

    Thank you very much Yigit!
    The first is good solution for mu case, but I find the other solution. I make custom form inside function.

    add_action( 'ava_after_main_title', 'add_my_custom_code' );
    function add_my_custom_code() {
      if ( is_front_page() || is_archive() || is_tag() ) {
        echo '<div id="av_section_112" class="avia-section main_color avia-section-default avia-no-border-styling  avia-bg-style-scroll  avia-builder-el-0  el_before_av_button  avia-builder-el-first   container_wrap fullsize" style=" "><div class="container">
    <div class="flex_column av_one_half  flex_column_div av-zero-column-padding first  avia-builder-el-1  el_before_av_one_half  avia-builder-el-first  " style="border-radius:0px; ">';
    
        global $wp;
        echo '<div class="avia_search_element  ">';
        echo '<form action="'. home_url( $wp->request . '/' ) .'" id="searchform_element" method="get" class="av_disable_ajax_search" _lpchecked="1">';
    ?>
        <div class="av_searchform_wrapper" style="border-radius:10px; "><input type="text" value="<?php if(!empty($_GET['s'])) echo get_search_query(); ?>" id="s" name="s" placeholder="Search..." style="border-radius:10px; line-height:44px; height:44px; font-size:16px; " class=" av-input-hasicon"><span class="av-search-icon avia-font-entypo-fontello" style="font-size:16px; "></span><div class="av_searchsubmit_wrapper" style="border-radius:10px; "><input type="submit" value="SEARCH" id="searchsubmit" class="button" style="border-radius:10px; "></div></div>
    
    <?php
        echo '</form></div>';
    
        echo '</div><div class="flex_column av_one_half  flex_column_div av-zero-column-padding   avia-builder-el-3  el_after_av_one_half  avia-builder-el-last  " style="border-radius:0px; "></div></div></div>';
      }
    }

    The code doesn’t change form action of ajax search as default search. I disabled Ajax, it’s not necessary in my web.
    It’s not working when I clicked to list posts of some category (with archive.php). I type something into the main search and with ajax show 6 posts for example. When hit enter show only 2 in search results. I also use relevanssi search plugin, maybe that’s the problem.

    Thanks!

    #1219286

    Hey tremblayly,

    Please try the following in Quick CSS under Enfold->General Styling:

    #top .av-section-tab-title {
        width: 200px;
    }
    .av-tab-no-icon.av-tab-no-image .av-inner-tab-title {
        font-size: 20px;
    }

    Best regards,
    Rikard

    Sorry…Jordan, I made a tricky thing even trickier. Put this css in so the “subtext” or “description” under the menu items is in red and you can see what I’m dealing with better.

    Idea is to put the “description” WITHIN the green button so it looks like PART of the green button.

    Think client’s descriptions WAY too long, but if I can do it with shorter one, think it will be nice techniche — and perhaps other Enfolders (a new group name!) will like to use, as well.

    /*Playing with the "taglines" or "subtext" on the buttons -- the description stuff*/
    #top #header #avia-menu li.menu-item a > .avia-menu-subtext{
      display: flex;
      margin-top: -60px;
      color: red;
      font-size: 12px;
      font-weight: lighter;
      letter-spacing: 0.15em;
    }

    Is it possible?

    #1219129
    irxcommunicatie
    Participant

    Hi,

    For some reason i can’t change the line spacing in the body text. Where can i do this?
    I can change the font and the size but if i change the line spacing it doesn’t change.

    Thank you in advance.

    Lars

Viewing 30 results - 3,691 through 3,720 (of 18,733 total)