Viewing 30 results - 961 through 990 (of 18,717 total)
  • Author
    Search Results
  • #1426881

    Hi,

    Thank you for the clarification.

    To adjust the breakpoint of the element visibility settings, please try to add this css code.

    
    @media only screen and (min-width: 990px) {
    
        .responsive.av-no-preview #top #wrap_all .av-desktop-hide,
        .responsive.av-no-preview #top #wrap_all .av-desktop-font-size-hidden,
        .responsive.av-no-preview #top #wrap_all .av-desktop-font-size-title-hidden {
            display: block;
        }
    }
    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
    
        .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: block;
        }
    }
    
    @media only screen and (min-width: 1366px) {
    
        .responsive.av-no-preview #top #wrap_all .av-desktop-hide,
        .responsive.av-no-preview #top #wrap_all .av-desktop-font-size-hidden,
        .responsive.av-no-preview #top #wrap_all .av-desktop-font-size-title-hidden {
            display: none;
        }
    }
    
    @media only screen and (min-width: 768px) and (max-width: 1366px) {
    
        .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;
        }
    }
    

    Best regards,
    Ismael

    #1426850

    Or if it only affects a few icons and it is therefore not worth uploading your own font icon set, you can also swap the icon via a user class and using css.
    The advantage could then also be that multi-colored icons are possible.

    First case: you see a different html-entity f.e. here: https://www.toptal.com/designers/htmlarrows/
    then you can replace that content directly:
    my custom class is in this case: my-separator-icon

    #top .my-separator-icon .av-seperator-icon:before {
      content: "\00A7";
      font-size: 40px;
    }

    next colored icons:
    my custom class is in this case: my-colored-separator-icon

    #top .my-colored-separator-icon .av-seperator-icon:before {
      content: "";
      display: inline-block; 
      position: relative;
      width: 40px;
      height: 40px;
      background: url(/wp-content/uploads/webers-globe1.svg);
      background-size: contain;
      background-repeat: no-repeat;
    }

    see: https://webers-testseite.de/separator-icons/

    #1426316

    In reply to: WooCommerce issues

    Hi,

    Thank you for the update.

    To adjust the style of the elements in the cart dropdown widget, please add this css code.

    #top div ul.product_list_widget li a {
        display: block;
        font-weight: bold;
        font-size: 1.5em;
        line-height: 1.6em !important;
    }
    
    #top .dropdown_widget ul.product_list_widget li .quantity {
        color: #ffffff;
        font-size: 1em;
    }
    
    #top .dropdown_widget .total span.woocommerce-Price-currencySymbol, #top .dropdown_widget .total {
        color: #ffffff;
        font-size: 1em;
    }

    Best regards,
    Ismael

    #1426313

    In reply to: Colors

    Hi,

    Thank you for the clarification.

    Please use this css code to adjust the style of the H1 element in the product category page.

    #top #wrap_all .term-description h1 {
        font-size: 2em;
        color: red;
    }

    Best regards,
    Ismael

    #1426245

    In reply to: WooCommerce issues

    Hey bemodesign,

    Thank you for the inquiry.

    1.) Please use add this code to adjust the size of the table and product title.

    .is-large.wc-block-cart .wc-block-cart-items th span {
        font-size: 2em;
    }
    
    table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
        font-size: 2em;
    }
    

    2.) And include this code to hide the label while typing on the fields.

    .wc-block-components-form .wc-block-components-text-input.is-active label, .wc-block-components-text-input.is-active label {
        display: none;
    }

    3.) Add this code in the functions.php file to remove the additional informations tab.

    /** Remove product data tabs */
    
    add_filter( 'woocommerce_product_tabs', 'my_remove_product_tabs', 98 );
    
    function my_remove_product_tabs( $tabs ) {
      unset( $tabs['additional_information'] ); // To remove the additional information tab
      return $tabs;
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website.

    Best regards,
    Ismael

    #1426240
    bemodesign
    Participant

    1. CART PAGE – The font size is tiny for the word “Product” and the “product name”. Any way to adjust text sizes and colors? (See private link)
    2. CHECKOUT PAGE: when you type your info into the fields, the “info wording” still shows behind the text you type.
    3. INDIVIDUAL PRODUCT PAGE: Do you know how to remove “Additional Information” tab?

    • This topic was modified 2 years, 3 months ago by bemodesign.
    • This topic was modified 2 years, 3 months ago by bemodesign.
    #1426017

    Hey navindesigns,
    Thank you for the link to your site and your example, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_single_post_banner() { ?>
      <script>
    (function($) {
      $(function() {
      	var postTitle = $('.single-post h1.post-title').detach().text();
      	var postBanner = $('<div class="banner"><h1>'+ postTitle +'</h1></div>');
         $('.single-post .big-preview.single-big').detach().insertBefore('.container_wrap_first');
         $(postBanner).insertAfter('.single-post .big-preview.single-big img');
      });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_single_post_banner', 99);
    

    and this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #top.single-post #wrap_all .all_colors .big-preview.single-big .banner h1 {
    	font-size: 18px;
    }
    .single-post .big-preview.single-big .banner {
    	top:18%;
    	padding:0 5%;
    }
    }
    
    .single-post .big-preview.single-big {
        padding: 0;
    	pointer-events:none;
    }
    .single-post .big-preview.single-big .banner {
    	top:30%;
    	position:absolute;
    	z-index:4;
    	padding:0 10%;
    	color:#000;
    }
    .single-post .banner h1 {
    	background-color: rgba(255,255,255,71%);
    }
    
    @media only screen and (min-width: 1440px) { 
    .single-post .big-preview.single-big {
    	max-height: 450px;
    }
    .single-post .big-preview.single-big a img {
    	transform: translateY(-20%);
    }
    .single-post .big-preview.single-big a {
    	max-height: 450px;
    }
    .single-post .big-preview.single-big .banner {
    	top:36%;
    	padding:0 15%;
    }
    }

    it will take the single post feature image and title from the default layout like this:
    Enfold_Support_3956.jpeg
    and create a full width banner with the title in it like this:
    Enfold_Support_3953.jpeg
    On mobile it should look like this:
    Enfold_Support_3958.jpeg
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    #1426007

    Hi,
    The subline above is calling the font-family “calibriz” which is not correct, it should be font-family “calibri-cursiv-bold”
    So please correct your css to this:

    #top .av-special-heading .av-subheading.av-subheading_above {
    font-size: 32px !important;
        font-family: 'calibri-cursiv-bold'!important; 
        font-style: italic; bold !important; 
        color: #ff0044 !important;
    }

    then clear your browser cache and check.
    Enfold_Support_3947.jpeg

    Best regards,
    Mike

    #1426004

    Hey Mike,

    many thanks for your response!

    It’s not about the font in the headlines, but in the subline above, which I want to enforce with code:

    #top .av-special-heading .av-subheading.av-subheading_above {
    font-size: 32px !important;
        font-family: 'calibri'!important; 
        font-style: italic; bold !important; 
        color: #ff0044 !important;
    }

    Everything was displayed correctly on the desktop, but not on mobile. Safari displays a different font.

    Since the font face rule, the correct font is no longer displayed on the desktop:
    Subheading error

    #1425788
    lauragrashoff
    Participant

    Hey,

    I’m having a problem with my font displaying on mobil.

    I imported the font “calibri” into Theme Options and it works. It is also partially displayed correctly in the mobile view.

    However, I use this code so that the Font is also displayed as subheading:

    #top .av-special-heading .av-subheading.av-subheading_above {
    font-size: 32px !important;
        font-family: 'calibri'!important; 
        font-style: italic; bold !important; 
        color: #ff0044 !important;
    }

    And no matter what I do, the exact subheading is not displayed in the correct font on mobil.

    Do you have an idea how I can solve the problem? I really want to keep the font in the subheading.

    Best regards!

    #1425733

    Hi Yaphoon,

    I have added the following in Enfold > General Styling > Quick CSS:
    To remove the words uncategorized

    #top #main .avia-content-slider .minor-meta {
        display: none;
    }

    To change the font size (Just change the value as you see fit)

    #top #main .avia-content-slider .slide-entry-title {
        font-size: 16px;
    }

    As for the last one, since you are using the Advanced Layout Builder, you need to add it manually via Text Block, or you can add this in your child theme’s functions.php:

    function post_published_date(){
        return get_the_date();
    }
    
    add_shortcode( 'post_published', 'post_published_date' );

    Then add a Text Block and put this shortcode inside it:

    [post_published]

    Then it should automatically post the published date of the current post.
    Hope it helps.

    Best regards,
    Nikko

    Hey JoStudioDeRijp,

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

    #header_meta ul li a {
      font-size: 14px;
    }

    Best regards,
    Rikard

    JoStudioDeRijp
    Participant

    Hi Kriesi,
    I have a question: how can I change the font size of the information in the topbar above the main menu?
    In the Advanced settings I can change the font colour, letter spacing, font weight, but NOT the size…
    Hope you can help!
    Kind regards, Jolanda Zijp, JoStudio

    #1425665
    Yaphoon
    Participant

    Hi there
    Could you pls help me make small change in the home page and post page.
    Pls see
    aaa.jpeg

    Thanks

    Wang

    #1425638

    Hi,

    Thank you for the update.

    The account above doesn’t have admin rights, so we were not able to adjust anything. To adjust the style of the post headings, go to the Enfold > Advanced Styling panel and configure the H3 heading element. You can also use this css code.

    .html_elegant-blog #top #wrap_all .avia-content-slider .slide-entry-title {
        color: red;
        font-size: 20px;
        font-weight: normal;
    }

    Best regards,
    Ismael

    #1425629

    Hi woogie07,

    Please try to add this CSS code in Enfold > General Styling > Quick CSS:

    #top #wrap_all #footer .social_bookmarks li a {
        color: white;
        font-size: 20px;
    }

    Hope it helps.

    Best regards,
    Nikko

    #1425594

    Hi Rikard,

    I apologize for the delay. I’m trying to decrease the font size for the header on Blog Posts Headings to 20pt. On mobile all of the letters run together. I have looked under Advance Styling and through the Support threads.

    Thanks again. I’m leaving you with the credentials again.

    Debra

    #1425579

    thanks for the link :

    First: you had the wrong language defintiton on your page – for a good hyphenation you should have your lang set for the main language on your page.
    guess it is:lang="da-DK"
    (alway click to enlarge the images)

    Next: this is justified text layout ! – you can see the rule for it here:

    i told you in the other topic that it is alway difficult to have a nice word distance without breaking the words on justified text.
    if you do not like to justify the text get rid of that part inside:

    #top .fullsize .template-blog .post .entry-content-wrapper {
      text-align: left;   /****** this part is set to justify in your css *****/
      font-size: 1.15em;
      line-height: 1.7em;
      max-width: 800px;  /****** see comment under this codeblock *****/
      margin: 0 auto;
    }

    the 800px ( or 40em ) max-width is a default setting from enfold – if this is what you mean in your e-mail talking about:

    it’s stuck in the center regardless of the CSS I apply

    then you can avoid that by:

    #top #wrap_all .fullsize .template-blog .post .entry-content-wrapper,
    #top #wrap_all .fullsize .template-blog .post .entry-content-wrapper > * ,
    #top #wrap_all .fullsize .template-blog .post-title {
      max-width: unset !important;
      margin: 0;
    }

    if you like to preserve the justification of your paragraph texts – then a hyphens: auto will mainly solve that issue:
    (those ugly underlined spaces inside block : “for______Search_____Engine”)

    #top #wrap_all .fullsize .template-blog .post .entry-content-wrapper p {
      text-align: justify;
      -webkit-hyphens: auto;
      hyphens: auto !important;
      text-justify:  distribute;
      word-spacing: -0.05em !important;
      text-align-last: left;
    }

    but: as mentioned above the hyphenation only works well if the lang attribute on html is set to the language of your texts.
    F.e. the word “Søgemaskineoptimering” does not hyphen on small screens.

    #1425440

    Hi Ismael,

    Thank you very much for your reply!
    I have tried your code and this solved the problem, so thank you!

    After I added your code, the “default” bullet points were still there. To remove these, I made some changes in my code.
    The code now looks like this:

    /* bullet points */
    li::marker {
    	color: transparent;
    	font-size: 28px;
    }
    
    .entry-content-wrapper div li:before {
        content: '';
        width: 9px;
        height: 9px;
        display: block;
        background: #ff9001;
        border-radius: 100%;
        float: left;
        top: 8px;
        position: relative;
        margin-right: 14px;
    	margin-left: -24px;
    }
    #1425437

    In reply to: Blog post headline?

    Hey pikkuapuri,

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

    .slide-entry-title a {
      font-size: 16px;
      word-wrap: break-word;
    }

    Best regards,
    Rikard

    #1425271

    In reply to: css help

    I worked it out myself ;-)

    .av-inner-tab-title {
    font-size: 20px;
    }
    .av-inner-tab-title, .av-tab-section-icon, .av-tab-arrow-container, .av-tab-section-image {
    width: 200px;
    }

    #1425261

    Topic: woocommerce on phone

    in forum Enfold
    smarta-brett
    Participant

    hi
    I have an issue with woocommerce on a phone screen on this site

    I have recently rebuilt the site in Enfold from another theme (as Enfold is much better!!)
    this is how it looks in Enfold
    https://caravancitysales.com.au/wp/wp-content/uploads/2023/11/IMG_14A25BA7E081-1.jpeg

    this is how it looks in the other theme
    https://caravancitysales.com.au/wp/wp-content/uploads/2023/11/IMG_B58C2EAA8334-1.jpeg
    this theme has the following css
    .single-car-mpg { display: none;
    }
    .price-description-single { display: none;
    }
    .carousel { align: center;
    }
    .found-cars-cloned { display: none;
    }
    .related.products {
    display: none;
    }
    li.product-category.product {
    width: 21%!important;

    }
    li.product-category.product {
    text-align: center !important;
    }

    .product-category h2 {
    font-size: 11px;
    margin-bottom: 0;
    }

    .woocommerce .products ul li h5, .woocommerce ul.products li h5 {
    min-height: 90px;
    }
    body.stm-template-car_dealer #stm-boats-header #header .header-inner-content .listing-service-right .listing-menu > li.stm_megamenu > ul{
    left: 0 !important;
    }
    .load-more-btn { display: none !important;;
    }
    @media (max-width: 768px) {
    ul.products.columns-3{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    }
    ul.products.columns-3 li.product{
    width: 32%;
    }
    }
    .sub-menu {
    background: #242628 !important;
    border: none !important;
    }
    .sub-menu > li > a {
    color: white !important;
    }

    much is not related to enfold but there is specific stuff there fro woocommece

    can you let me know what the correct css would be

    #1425258

    Topic: css help

    in forum Enfold
    smarta-brett
    Participant

    on the page at

    I need to adjust the tab width and the font size in the heading

    I inspected the page and found this CSS which I have adjusted but its not applying
    .av-inner-tab-title {
    text-transform: none;
    display: block;
    line-height: 1.2em;
    margin-top: 7px;
    margin-bottom: 3px;
    font-size: 18px;
    text-align: center;
    !important;
    }

    I also want to adjust the width of the tabs so that the title wording is able to be in one line
    can you help out here too please?

    #1425231

    In reply to: Team Member Font Size

    Hey James,

    Please try this CSS instead:

    .team-member-description p {
      font-size: 16px !important;
    }

    Best regards,
    Rikard

    #1425204
    pelgrimrat
    Participant

    Dear members of the support forum,

    I am trying to move the bullet points (markers) of an unordered list down. I would like to move them down just a few pixels, but I don’t know how.

    Here is a link to the page:
    https://www.maartenontwerp.nl/website-onderhoud/

    It’s about the orange markers. I already changed the colour and the size with this code:

    li::marker {
    	color: #ff9001;
    	font-size: 28px;
    }

    Your help will be highly appreciated!

    #1425189

    Hi gb,

    1. The date of the post is placed at the bottom of the post, Can it be placed at the top of the post?
    I have added this code in WP Code to move the post date on the top:

    function move_postmeta(){
    ?>
    <script>
    	window.addEventListener('load', function() {
        	var postMetaInfos = document.querySelector('.single-post .post-meta-infos');
        	var featuredImage = document.querySelector('.big-preview');
    
        	if (postMetaInfos && featuredImage) {
            	featuredImage.parentNode.insertBefore(postMetaInfos, featuredImage);
        	}
    	});
    </script>
    <?php
    }
    add_action('wp_footer', 'move_postmeta');

    Then to adjust the styling, I added this CSS code in Quick CSS:

    #top.single-post #main .big-preview {
        margin-top: 0;
    }
    
    #top.single-post #main .post-meta-infos {
        float: none;
        font-size: 1em;
        margin-top: 0;
    }

    2. The post image highlights when the mouse hovers over and is clickable to enlarge. Which is unnecessary, can that be turned off?
    Yes, I added this CSS code in Quick CSS:

    #top.single-post #main .big-preview a {
        pointer-events: none;
    }

    As for the error, it occured when I inserted the code to modify the image size, since it was already declared in functions-enfold.php, but it’s already fixed.

    Best regards,
    Nikko

    #1425178

    Topic: Team Member Font Size

    in forum Enfold
    nTECHgrate
    Participant

    Hello Enfold Team,

    I am beating my head against the wall and hope you can help. Ever since I changed the <p> default font-size in “advanced styling” I have not been able to modify the font-size of “team member” descriptions. I have tried to change it via the element’s styling tab, using the custom CSS you all have posted in your documentation and tried adding my own custom CSS class:

    /* enfold documentation */
    .avia-team-member .team-member-description {
    font-size: 16px !important;
    }

    /* my custom CSS */
    .meet-the-team {
    font-size: 16px !important;
    }

    Your guidance is greatly appreciated.

    -James

    #1425092
    pikkuapuri
    Participant

    Hi. Customer wants bold 900 weight H1 font for “Enfold Special Heading” -sections. How to do that? The system lets only to change sizes?

    #1425051

    Hey ursulamerten,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the phone number info.

    .phone-info div {
        line-height: 1em;
        font-size: 2em;
        color: red;
    }

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect.

    Best regards,
    Ismael

    Hi,

    dashes not displaying under the “HIGHLIGHTS” and “WHAT’S INCLUDED” headers

    Glad to know that you managed to solve most of the issues. To make the dashes display, try to edit the following css code and set the display property to block.

    .costa-rica-highlightsec ul.highlight-bullet li:before {
        content: ""!important;
        width: 15px;
        height: 6px;
        background-color: #97cfe9;
        margin-right: 15px;
        margin-bottom: 6px;
        font-size: inherit;
        display: block;
    }

    Best regards,
    Ismael

Viewing 30 results - 961 through 990 (of 18,717 total)