Viewing 30 results - 3,241 through 3,270 (of 18,732 total)
  • Author
    Search Results
  • ASMA1342
    Participant

    Advanced settings
    I tried to set the background colour of the top bar – in the area called “Small bar above Main Menu”
    It has no effect – Please see the screen capture below.
    The same also happens with the font size setting – it doesn’t seem to do anything.
    Hoping you can assist with this.
    Many thanks

    #1260204

    Hi,

    Ok, but i see “template-page content” and not just “content”. So i don’t understand this one very well.
    should write the “parent ( dot ) class name of the content ( which here is named “content” ) ” . Am i correct ?

    Yes, there are more than one class shown in that div but you can just pick one (or more), for this example I just picked content.

    it would mean that i should write “.page-id-2219#after_submenu .content” ? am i correct ?
    Almost, it should be .page-id-2219 #after_submenu .content

    what should i name, as it’s not a div, it’s above the header and body … and i’d just like to overwrite the padding to 0 And about this logo :
    It does not matter as long as you get the right class name or id, just make sure the selector is in the right order. Something like this , which is like above .page-id-2219 is the parent, #after_submenu the subparent and .content is the target element.

    should i call it “#inner-container . logo” ? so i could tell it to have a distance on the left from the side of the inner container.
    No, since inner-container is a class, it should be .inner-container .logo

    One more thing, i could change the color values of the full width submenu element links, in “general styling”. but even when changing the fonts in “body”, in “advanced styling”, it didn’t change the fonts sizes of these links. i can’t locate it. it’s strange because i can still change their font family, normal/bold … but not the size.
    You can try to inspect that element and try to check if there are css conflicts that causes the issue.

    Best regards,
    Nikko

    #1260037
    starlaknapp
    Participant

    Hi !
    I’m hoping to remove the space between the header and the body of my website, how would I go about doing this?
    I’d like to get rid of the space but keep my logo the same size.

    Also would love any support in trying to use a custom font- not sure where to start with this.

    Attached is the link to my website

    Thanks!!

    WebbR
    Participant

    Hi there! Im setting up a fashion shop. :)

    My current Product has two options/attributes (color & size).
    On selecting a color the image does not change.
    When I select the size before, the image change is working.
    Also if I have the same product with just the color option, the image change is working.

    So this seems to interfeer with the second option (size) somehow.

    SYSTEM: Latest WP / Enfold / Woocommerce / Germanized / jQ Migrate Helper
    Enfold Shop Option is set to Woocommerce 3.0 Product-Gallery
    Tested on Storefont Theme (same behavior)

    Hope there is anyone who can help out :)

    Best and THX!

    • This topic was modified 5 years, 4 months ago by WebbR.
    #1259952

    Thank you.

    “In here https://imgur.com/jO8CMzu I could see that the div that is wrapping the container (parent) is an ID of after_submenu”
    I can understand this, ok.

    “and then when the content inside the container is revealed in this screenshot https://imgur.com/WuNeC5U it shows the class of content thus we could conclude that the selector you should use is #after_submenu .content.”
    Ok, but i see “template-page content” and not just “content”. So i don’t understand this one very well.
    should write the “parent ( dot ) class name of the content ( which here is named “content” ) ” . Am i correct ?

    “The only problem with this is it will affect other pages, to make it page specific you’ll need to inspect the body tag and check for the page-id-xx (xx is the page ID number) then you’ll need to change the selector to .page-id-xx #after_submenu .content”
    Ok. In this case i wanted to affect the global template to affect all the pages. Then … ok
    Now about the page number, here :

    View post on imgur.com


    it would mean that i should write “.page-id-2219#after_submenu .content” ? am i correct ?

    Also, about this :

    View post on imgur.com

    what should i name, as it’s not a div, it’s above the header and body … and i’d just like to overwrite the padding to 0
    And about this logo :

    View post on imgur.com

    should i call it “#inner-container . logo” ? so i could tell it to have a distance on the left from the side of the inner container.

    One more thing, i could change the color values of the full width submenu element links, in “general styling”. but even when changing the fonts in “body”, in “advanced styling”, it didn’t change the fonts sizes of these links. i can’t locate it. it’s strange because i can still change their font family, normal/bold … but not the size.

    Thanks for your help !

    • This reply was modified 5 years, 4 months ago by yes9310.
    #1259858

    In reply to: Button

    you can see that example on nearly most of enfold pages that have longer content: the scroll-top link is a button that is in fixed positon.
    Fixed positioning needs position values ( top, bottom, left or right)

    so first give a custom-class or unique ID to that button element: in my case it is ID: fixed-button
    f.e. to quick css:

    #fixed-button.avia-button-wrap {
        position: fixed;
        left: 50px;
        bottom: 50px;
        z-index: 1050;
    }

    but my advice would be to place a button via button shortcode outside wrap_all container by child-theme functions.php.
    There is a hook : ava_after_body_opening_tag that can be used for it.
    ( this is site-specific only for my testpage – adjust page-id to your needs):

    add_action('ava_after_body_opening_tag', function() {
        if(is_page(457)){
          echo do_shortcode("[av_button label='fixed-button' icon_select='yes' icon='ue800' font='entypo-fontello' link='manually,http://' link_target='' size='large' position='center' label_display='' title_attr='' color_options='color_options_advanced' color='theme-color' custom_bg='#444444' custom_font='#ffffff' btn_color_bg='aqua' btn_custom_bg='#444444' btn_color_bg_hover='blue' btn_custom_bg_hover='#444444' btn_color_font='custom' btn_custom_font='#ffffff' id='fixed-button' custom_class='' av_uid='av-khd9fkov' admin_preview_bg='']");
        }
    });

    see here f.e.: https://webers-testseite.de/impressum/ left bottom corner

    #1259843

    Hi ihf-eramstad,

    This is another solution as well:
    1. Create a Grid Row and set it to 4 columns.
    2. In each column put an Image element with the following settings:
    Content tab:
    – Image Caption: Yes
    – Caption: (write anything)
    Styling:
    – Image Styling: No Styling
    – Image Alignment: Center
    – Caption Overlay Opacity: 0.7
    – Caption Overlay Background Color: (anything but the demo uses #6786a1)
    – Caption Font Color: #ffffff (demo)
    Advanced:
    – Image Fade in Animation: none
    – Image Hover effect: Yes, slightly increase the image size
    – Caption Appearance: Always display caption
    Set the link as well if needed.
    Just duplicate this image for other columns and just change the image and caption.
    Hope this helps.


    @cherrmann
    thanks again for helping out :)

    Best regards,
    Nikko

    akak
    Participant

    Hello Enfold-Team,
    I would like to place a big caption (name of each team member) at the bottom of each image (portrait) in the horizontal gallery. I have searched in the forum and placed some code in PHP file:

    function horizontal_gallery_subline(){
    ?>
    <script>
    (function($){
    $(window).load(function() {
    $(‘.av-horizontal-gallery-link’).css(‘bottom’, ’30px’);
    $(‘.av-horizontal-gallery-link’).each(function(){
    var imgTitle = $(this).attr(‘title’);
    $(this).after(‘<div style=”width:580px;”><p class=”text-under-image”>’ + imgTitle + ‘</p></div>’);
    $(this).css({
    ‘padding-bottom’ : ’20px’,
    ‘background-color’ : ‘transparent’,
    });
    $(‘.text-under-image’).css({
    “text-align”: “center”,
    “margin”: “-100px 0”,
    “color”: “#FFF”,
    “background” : “transparent”,
    });
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘horizontal_gallery_subline’);

    The code fulfilled part of my wishes. However, I would like the enlarge the font size of the captions and place a transparent black rectangle as a background of the text. And I would like this effect to be responsive.

    Here attached my targeted visual and login info.
    Thank you very much!!

    #1259614

    Hi,

    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:

    
    #top .grid-content, #top .grid-content * {
        background-color: #008328;
        color: white;
        text-align: center;
        border-radius: 5px;
        font-size: 16px;
    }
    .grid-content .avia-arrow {
        display: none;
    }
    
    

    Best regards,
    Yigit

    #1259466

    In reply to: Slide Text Responsive

    Hi,

    Thanks for the clarification. Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
    .home #layer_slider_1 h3 {
        font-size: 9px;
        margin-top: -20px;
    }
    }

    Best regards,
    Rikard

    #1259300

    Hi Yigit,

    I was waiting to hear back from you but I have just emailed them the same question.

    In the mean time, Blurb also has the option to spit out this code, is this more modifiable:

    <div class=’share-on-blog’ style=’margin: 2px;vertical-align: top; font-size: 14px; font-family: arial; color: #000; max-width:300px;padding: 20px;border: 1px solid #f5f5f5; text-align: center; display: block;margin: 5px auto;’>



    <p style=’margin: 5px;’><script id=’metamorph-99-start’ type=’text/x-placeholder’></script>Pole Dance<script id=’metamorph-99-end’ type=’text/x-placeholder’></script></p>
    <p style=’margin: 5px;’>By <script id=’metamorph-100-start’ type=’text/x-placeholder’></script>Gregory Beylerian<script id=’metamorph-100-end’ type=’text/x-placeholder’></script></p>
    </div>

    #1259194

    Hi Mike,

    thanks for your answer and help.
    For the other users to supplement: I changed the font-size to 23. ;)

    Best regards

    • This reply was modified 5 years, 4 months ago by msteid.
    #1259158

    In reply to: listing points

    Hi,
    Sorry for the late reply and thanks for the link and screenshot.
    For the bullet points in your screenshot, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #main > div > div > main > div > div > .avia-builder-el-5 > section:nth-child(5) li::marker {
    font-size: 30px !important;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1259081

    Hi,
    Sorry for the very late reply, and thanks for the login, I changed your slider to H1 to see the issue and then added this css to correct:

    @media only screen and (max-width: 767px) { 
    #top #wrap_all .main_color .slideshow_align_caption > h1 {
        color: #fff !important;
        font-size: 30px !important;
    }
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    #1258774

    Hey Rhodian,

    Goto Dashboard -> Enfold -> General Styling -> Tab Fonts and select a fontsize from the selectbox Default content font size.

    Best regards,
    Jordan Shannon

    RMD
    Participant

    Is it possible to change the font type and size in Enfold WP theme?

    #1258716

    In reply to: Bold text color

    Hello, I have normal black text on a white background and I want to emphasize some words in bold. When I do that, the text gets the same color as e.g. Left.
    But I want bold text and links in different colors.

    Currently I have under styling:

    Main color
    Font color for links, text initials and other elements
    # f66e64

    #1258710

    Hey schwabino,

    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) {
      #top .av-small-burger-icon .avia_hidden_link_text {
          display: block;
          height: 80px !important;
          line-height: 0px !important;
          margin-top: -58px;
          margin-left: -68px;
          font-size: 20px;
      }
        .responsive .logo img {
          z-index: 999;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    manyfloor
    Participant

    Hi guys,

    Open this ticket just to bring a solution I found to show search results products as the shop overview 3.0.0 (with the thumbnails, the first gallery image switch and the price).

    Look to find the loop-search.php in enfold/includes, make a copy of it and upload an edited version to your child-theme subfolder includes (commonly it is : enfold-child/includes).

    Then look the line 33 :

    echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";

    Replace it by :

     $searchimage = get_the_post_thumbnail( $the_id, 'shop_catalog' );
      $searchimagealt = avia_woocommerce_gallery_first_thumbnail( $the_id , 'shop_catalog' );
      echo "<div class='thumbs'><div class='thumbnail_container'>{$searchimagealt}{$searchimage}</div></div>";
      echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";

    And the line 52 :

    echo "<{$heading} class='post-title entry-title {$css}'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".get_the_title()."</a></{$heading}>";

    By :

    if( get_post_type() === "product" )
                    {
                        $product = wc_get_product( $the_id );
                        $price = $product->get_price();
                        $currencysymbol = get_woocommerce_currency_symbol();
                        $pricesuffix = $product->get_price_suffix();
                        
                        echo "<a href='".get_permalink()."'><div class='inner_product_search_table'><div class='inner_product_search_cell'><{$heading} class='post-title entry-title {$css}'>".get_the_title()."</{$heading}><span class='price'><span class='woocommerce-Price-amount amount'><bdi>{$price}<span class='woocommerce-Price-currencySymbol'>{$currencysymbol}</span></bdi></span>{$pricesuffix}</span></div></div></a>";
                    }
                    
                    else
                    {
                        echo "<a href='".get_permalink()."'><div class='inner_product_search_table'><div class='inner_product_search_cell'><{$heading} class='post-title entry-title {$css}'>".get_the_title()."</{$heading}></div></div></a>";
                    }

    Here is some css to customize the design (to adapt to your project) :

    ‘/*SEARCH*/

    #top.search .template-search .post-entry {
    margin: 0 1% 1% 0;
    width: 32.6%;
    float: left;
    clear: none;
    }

    #top.search .template-search .post-entry:nth-of-type(3n) {
    margin-right: 0;
    }

    #top.search .template-search .post-entry .search-result-counter, #top.search .template-search .post-entry .entry-content, #top.search .template-search .post-entry .post-meta-infos, #top.search .template-search .search_form_field .author-extra-border, #top.search .template-search .search_form_field h4 {
    display: none;
    }

    #top.search .template-search .post-entry .image-overlay {
    display: none !important;
    }

    #top.search .template-search .post-entry .inner_product_search_table {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    }

    #top.search .template-search .post-entry .inner_product_search_cell {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
    padding: 15px;
    }

    #top.search .template-search .post-entry > .entry-content-wrapper {
    padding: 0;
    }

    /*#top.search .template-search .post-entry .entry-content-header > a {
    display: inline !important;
    }*/

    #top.search .template-search .post-entry:hover .thumbnail_container > img.avia-product-hover {
    opacity: 1;
    filter: alpha(opacity=100);
    }

    #top.search .template-search .post-entry:hover {
    cursor: pointer;
    }

    #top.search .template-search .post-entry:hover .inner_product_search_table {
    opacity: 0;
    }

    /*#top.search .template-search .post-entry .avia-product-hover .thumbnail_container > img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=00);
    -webkit-transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    -webkit-backface-visibility: hidden;
    }*/

    #top.search .template-search .post-entry .post-title {
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    padding: 5px 0;
    font-weight: normal;
    }

    #top.search .template-search .page-heading-container {
    border: 0;
    margin: 0;
    padding: 0 0 20px;
    }

    #top.search .template-search .extra-mini-title {
    margin: 0;
    padding-bottom: 20px;
    }

    #top.search .template-search .search_form_field h4 + p {
    margin-top: 0;
    }

    /*#top.search .template-search .post-entry .post-title a:hover {
    text-decoration: none;
    }*/’

    I’ve also chosen to limit search results to products and posts (not pages) so I’ve add to my functions.php (child-theme) :

    /*Filter search results by type (only post and product allows) excluding page*/
    function wpb_add_cpt_search($query) {
      if ( !is_admin() && $query->is_main_query() ) {
        if ($query->is_search) {
          $query->set('post_type', array('product', 'post'));
        }
      }
    }

    Hope this will help you not loosing two days of your life :)

    #1258553

    Hello, @AFDCO

    Try this CSS code I have solved like this:

    /* UM Datepiker hack by BigBatT */
    .um .picker__day, 
    .um .picker__weekday {color:#555 !important;}
    .um .picker__weekday {font-size:12px !important}
    .um .picker__day--outfocus {color:#999999 !important}
    .um .picker__day--infocus:hover, 
    .um .picker__day--highlighted, 
    .um .picker__day--outfocus:hover {color:#ffffff !important}
    .um .picker__button--today,
    .um .picker__button--clear {color:#ffffff !important;font-size:14px !important;}
    .um .picker__button--close {background-color:#719430 !important; color:#fff !important; padding: 10px 10px 10px 10px !important; border: 0px none !important;border-radius: 2px 2px 2px 2px !important;}
    .um .picker__month {margin-top: 1em;}
    .um .picker input, 
    .um .picker textarea, 
    .um .picker select {
    display: block !important;
    font-size: 14px !important;
    line-height: initial !important;
    margin: 9px 0px 0px 0px !important;
    padding: 10px 15px 10px 15px !important;
    border-style: solid !important;
    border-radius: 2px !important;
    font-weight: normal !important;
    border: 1px solid transparent !important;
    margin-top: -4em !important;
    max-width: 92%;
    min-width: 92%;
    }

    Change the colors according to your theme.
    Regards

    #1258284

    Hi,
    Thanks for the login, I changed your HTML to this:

    <span class="topbar-phone">[av_font_icon icon='ue800' font='fontello' style='   ' caption='' link='' linktarget='' size='18px' position='left' color='#808080'][/av_font_icon] (xxx) xxx-xxxx</span>    <span class="topbar-email">[av_font_icon icon='ue805' font='entypo-fontello' style=' ' caption='' link='' linktarget='' size='18px' position='center' color='#808080'][/av_font_icon] (Email address hidden if logged out) "> (Email address hidden if logged out) </span>

    Please clear your browser cache and check.

    Best regards,
    Mike

    #1258253

    Hey,

    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:

    
    #top .taglist a:not(.activeFilter), #top .taglist .tag-seperator {
        color: white;
    }
    #top .taglist a:hover {
        color: #d10003;
    }
    .taglist {
        font-size: 20px;
        text-align: center;
    }
    
    

    Best regards,
    Yigit

    #1258226

    Hi,

    Thanks for that. This CSS is added to your Quick CSS:

    article.slide-entry h3.slide-entry-title a {
      font-size: 30px !important;
      line-height: 40px !important;
    }

    And it’s applying to your site: https://imgur.com/a/yEeg7sl

    Best regards,
    Rikard

    #1258176
    This reply has been marked as private.
    #1258173
    This reply has been marked as private.
    #1258155
    steve_levinson
    Participant

    When you view my website on mobile phones the sub menu drop downs are hard to read. Therefore its hard to navigate around and actually get to the Contact Us page and drill down for example very easily. I just realized this after uploading the new Enfold theme and getting around to checking through all aspects of the site. Here is the address. NaturalStressManagement.com

    The sub menus are not white like the main menus are. If all were white I think the problem would be solved but I can’t figure out within the area how to affect ..

    *I’m here but can’t figure out the simple change.
    Main Menu sublevel Links – Change the styling for your main menu dropdown links
    #0011ff
    Font Color
    #131dab
    Background Color
    #00fff2
    Border Color

    20px
    20px
    Font Size

    Default
    Default
    Line Height

    #1258132
    This reply has been marked as private.
    #1258048

    Hi Ramon,

    Font size does not seem to be decreased. Please try adding !important rule as following

    @media only screen and (max-width: 480px) {
    div table.shop_table td {
    font-size: 12px !important;
    }
    div table.shop_table td {
    padding: 6px 6px;
    }
    }

    By decreasing font size and padding, we are basically giving more space to button :)

    Best regards,
    Yigit

    #1257997

    Hi,

    Please add following code to Quick CSS in Enfold theme options > General Styling

    @media only screen and (max-width: 480px) {
    div table.shop_table td {
    font-size: 12px;
    }
    div table.shop_table td {
    padding: 6px 6px;
    }
    }

    After the changes, it should look as I showed in screenshot below. Other option would be changing table but then titles would not be aligned so I hope this works for you :)

    Best regards,
    Yigit

    #1257909

    Hi Victoria,
    Thanks for your reply. No, I am not talking about the letter size, otherwise known as font size, which is easy to adjust from the text editor.
    I am talking about the space between letters, this is what font spacing means.
    When it comes to my website’s headings (headings means titles, H1, H2, H3…), the space between letters is larger on mobile than on desktop, and I would like to correct that (meaning I would like to use the same value on mobile as on desktop. Please see attached images for clarification.
    Thank you!

Viewing 30 results - 3,241 through 3,270 (of 18,732 total)