Viewing 30 results - 1,771 through 1,800 (of 18,702 total)
  • Author
    Search Results
  • #1359604

    Hi,

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

    @media only screen and (min-width: 768px) and (max-width: 1024px) {
    h2.avia-caption-title {
      font-size: 30px;
    }
    }
    
    @media only screen and (max-width: 767px) {
    h2.avia-caption-title {
      font-size: 20px;
    }
    }

    Best regards,
    Rikard

    #1359592

    Hi,

    Thanks for the update. You can set the font size for each screen size if you click into a slider element, then navigate to the Styling->Font Sizes tab.

    You can post a feature request here if you like.

    Best regards,
    Rikard

    #1359551

    Hi,
    To replace the breadcrumb “Home” with a house icon and make it white, please try this css:

    
    .breadcrumb-trail a.trail-begin:after {
    	content: "\e821";
    	font-family: entypo-fontello;
    	font-size: 16px;
    	color: #fff;
    }
    .breadcrumb-trail a.trail-begin {
    	font-size: 0 !important; 
    }
    

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

    Best regards,
    Mike

    #1359517

    Dear Nikko,

    One thing that I am not why stopped working is when I go into the Enfold Child theme and under the General Styling it is not all updating.

    For example, I went into the Main Content and changed the Primary Color (Font color for links, dropcaps) to a few colors and didn’t update it. I currently have it on a green color and it still shows back.

    Also under the “Fonts” tab there used to be a Default content font size” which I don’t see anymore.

    Thank you for any input on these two issues.
    Best regards,
    Jason

    #1359508

    There are many places where the heading tag is predefined as h3 in the source code of enfold.
    Editing all those entries and have a child-theme file is too complex.
    The filter : avia_custom_widget_args will not work on those headings you like to influence.

    – you can try this here from Yigit : https://kriesi.at/support/topic/change-h3-tags-in-footer-widget-child-theme-of-enfold/#post-728320
    and pay attention of his comment:

    You would need to update your widget areas.

    In Shortform this will be ( and comes to child-theme functions.php ) :

    function ava_re_register_footer_widgets(){
    	$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'	=> '<p class="widgettitle">',
    			'after_title'	=> '</p>',
    			'id'		=> 'av_footer_' . $i
    		) );
    	}
    }
    add_action( 'widgets_init', 'ava_re_register_footer_widgets', 11 );

    the settings you mentioned had to be set via quick css

    #footer p.widgettitle {
    	font-size: 30px; 
    	font-weight: 500; 
    	line-height: 33px;
    }

    (For SEO reasons, this will probably be the better method. )

    #1359453
    the_digital_manager
    Participant

    I saw an old post about the H3’s in the footer, but I was hoping that there would be an easier way to change this by now (the old post also didn’t completely answer my question).

    I’d like to change the footer H3’s to regular text (font size 30px, weight 500, line height 33px). How do I approach this? Can I use CSS or is there a better way to do so?

    Why are the Footer titels H3 anyways? from a SEO perspective this doesnt make a lot of sense?

    #1359447

    @guenni007 awesome!
    I managed to add some css to it and remove the ‘you are here’ via function.php… only have two questions left:
    1. if I want to change the home text to the icon of a home, how do i do this? Just a home icon from the standard fontello pack would be great.
    2. how do I change the color of the ‘home’ to white? (without and with hoover) I’ve used below CSS already.

    #top .breadcrumbs {
    line-height: 45px;
    font-weight: 200;
    font-size: 20px;
    color: white;
    }

    Hi,
    Sorry for our delayed response, to remove the opacity from the masonry element on hover, on the page you linked to, please try this css:

    #top .av-hover-overlay-fade_out .av-masonry-entry:hover .av-masonry-image-container {
        opacity: 1;
    }

    For the second issue please try this css:

    @media only screen and (min-width: 768px) and (max-width: 989px){
    .responsive.html_mobile_menu_tablet.html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 88px !important;
    }
    }

    To center the masonry title please change this css:

    
    /* Title Position and Caption Box Size */
    .av-masonry-entry .av-masonry-entry-title {
    text-align: center !important;
    position: absolute;
    bottom: 5px;
    padding: 5px;
    }
    /* Title */
    #top .av-masonry-entry-title {
    font-size: 120% !important;
    color: #555555;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: .08em;
    text-align: left !important;
    text-shadow: 2px 2px 0px rgba(133,133,133,.4)!important;
    margin-left: 5%;
    }

    to this:

    
    /* Title Position and Caption Box Size */
    .av-masonry-entry .av-masonry-entry-title {
    text-align: center !important;
    bottom: 5px;
    padding: 5px;
    }
    /* Title */
    #top .av-masonry-entry-title {
    font-size: 120% !important;
    color: #555555;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: .08em;
    text-shadow: 2px 2px 0px rgba(133,133,133,.4)!important;
    width: 100%;
    }

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

    Best regards,
    Mike

    #1359262

    Hi bradshawdesignco,

    We’re happy that you were able to resolve the font sizes.
    Just post the issue you mentioned in the new thread, don’t forget to include the URL so we can inspect it.
    Thanks for using Enfold and have a great day :)

    Best regards,
    Nikko

    #1359256

    Hi,
    I am going to start a new topic. I got the font sizes but there is another big issue.

    #1359209

    Hi,

    This CSS seems to be overriding the other buttons:

    #top #wrap_all .single_button .button, #top #wrap_all .shop_columns_5 .avia_cart_buttons .button {
        color: #ffffff!important;
        border-color: #062857!important;
        border-radius: 160px!important;
        border-width: 1px!important;
        padding: 15px;
        font-size: 16px!important;
        font-weight: bold!important;
        background-color: #084a79!important;
    }

    I’m not sure exactly where that is added, but if you could try to remove the !important part, then the CSS I posted should likely apply after that.

    Best regards,
    Rikard

    blaircomm1
    Participant

    I am developing a masonry page that is compatible with desktop and touch devices. Since touch devices open masonry in the hover state, I have finally made one that works across platforms with much struggle. I still have a couple issues:

    I cannot change the opacity of the image hover state overlay, which I have as white. I have tried dozens of CSS variations that should have worked but nothing affects it at all.

    The other issue is that on medium sized tablets and on horizontal mobile phones the masonry element is sliding up under the menu bar. It needs to maintain a position below tha bar as normal.

    Can you tell me how to fix the following:

    1. How do I style and change the opacity of the hover overlay with CSS on the default image fade in with the title and text sliding up from the bottom.

    2. How do I fix the issue of the masonry element sliding up under the menu bar on certain devices — medium sized tablets and horizontal mobile phones.

    3. .I cannot seem to center the title and caption text no matter what I try. I have it set to a left margin at 5% for now, but want to style it centered and it won’t cooperate. Can you show how I can do that in this masonry element?

    Login and page info included. Thanks.

    — Michael

    _____________
    Here is my CSS:

    /*—————————————-
    // Masonry bottom title
    //————————————–*/

    /* Title Position and Caption Box Size */
    .av-masonry-entry .av-masonry-entry-title {
    text-align: center !important;
    position: absolute;
    bottom: 5px;
    padding: 5px;
    }

    /* Title */
    #top .av-masonry-entry-title {
    font-size: 120% !important;
    color: #555555;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: .08em;
    text-align: left !important;
    text-shadow: 2px 2px 0px rgba(133,133,133,.4)!important;
    margin-left: 5%;
    }

    /* Title Background */
    #top .av-masonry-entry.isotope-item figcaption,
    #top .av-masonry-entry.isotope-item .avia-arrow {
    background: #ffffff;
    }

    /* Masonry Content */
    #top .av-masonry-entry.isotope-item .entry-content {
    font-size: 100% !important;
    color: #666666;
    line-height: 1.6;
    font-weight: 200;
    letter-spacing: .08em;
    text-align: left !important;
    text-shadow: 1px 1px 0px rgba(133,133,133,.4)!important;
    margin-left: 5%;
    }

    /* Hide date */
    #top span.av-masonry-date { display: none; }

    figcaption.av-inner-masonry-content {
    background: #ffffff !important;
    }

    /*—————————————-
    // END Masonry bottom title
    //————————————–*/

    • This topic was modified 3 years, 6 months ago by blaircomm1. Reason: Addition-1
    #1358792

    Hi,

    Please try this CSS as well:

    @media only screen and (max-width: 767px) {
    .aviaccordion-title {
        font-size: 10px;
    }
    }

    Best regards,
    Rikard

    #1358636

    Dear Mike – thank you so much for your help.
    Q: so did you just update to PHP v8?
    A: after realizing the problems on the live site, I´ve changed from PHP 8 auf PHP 7.4 – no effect, so I changed this settings again

    Q: did you make any changes with the better search replace plugin
    A: yes, after installing “better search replace” I´v noticed the problem with stylsheet, after saving some settings there was no effect on live site

    Q: do you have a pre plugin server backup
    A: unfortunatly not :-(

    Q: If you don’t have a backup then you could add the css needed to correct your menu in your child theme stylesheet
    A: I tried and after changing my wp-config (to “define(‘WP_MEMORY_LIMIT’, ‘256M’);” at least the navigation is back but still “frozen” – I tried to change to font-size 16px – again no result on live page

    Q: I have not seen a case of the Advanced Styling not working and I don’t see any related errors?
    me either, and I´m working many years with enfold _ I will contact the hosting company but I´m still desparate about this
    Thank you again for your help

    Hi G,

    Thanks for providing the site, I could see this code working:

    #top .avia-form-success {
        text-align: center;
        border-style: solid;
        border-width: 1px;
        padding: 20px 15px;
        font-size: 10px;
        line-height: 1.4em;
        border-radius: 2px;
        clear: both;
    }

    However, the issue is that the Color Section where the form is located has a bottom margin of -180px which results in the form success message being hidden.

    Best regards,
    Nikko

    #1358582

    Hi,
    Thank you for the link to your site, our documentation offers some tips on styling the subtext here: Main menu sub-text
    Since your menu items are a little slimmer I adjusted the css a little, please try this in your Quick CSS:

    #top #header #avia-menu li.menu-item a > .avia-menu-subtext{
    	display: flex;
    	margin-top: -35px;
    	color: #808080;
    	font-size: 12px;
    	font-weight: lighter;
    }

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

    Best regards,
    Mike

    #1358576

    Hi,
    Thanks for the login to your site, on your /service-center/ page in your screenshot above I found that the wrong color showing (a bright blue) was the default browser user agent color, so no setting seemed to be applied from the Enfold Theme Options ▸ Advanced Styling
    When I added the color and font size to your child theme stylesheet in your current .av-main-nav > li > a rule:

    .av-main-nav > li > a {
        line-height: 35px!important;
        height: 35px!important;
    	color: #00315c;
    	font-size: 17px; 
      }

    it worked correctly, so this points to your child theme stylesheet working but not the theme Enfold Theme Options ▸ Advanced Styling
    I see in your WordPress ▸ Dashboard ▸ Tools ▸ Site Health ▸ Info ▸ Server both of your PHP memory limit & Max input time are negative values:
    2022-07-16_004.jpg
    typically I would expect to see positive values:
    2022-07-16_005.jpg
    So from your post above it sounds like everything was working fine until recently, so did you just update to PHP v8, if so it looks like the PHP setting are not the same for your previously PHP version, probably 7.4 and the new v8 on your server, try going back to v7.4 to test, and if that works try adjusting them to match.
    If you didn’t change the PHP version since the error, then did you make any changes with the better search replace plugin and then noticed the error? This plugin is very powerful and can make serious unexpected changes, and has no fall back option.
    If this is true, do you have a pre plugin server backup? You might need to use it to correct, I’m not sure.
    If you don’t have a backup then you could add the css needed to correct your menu in your child theme stylesheet and not rely on the Enfold Theme Options ▸ Advanced Styling options.
    I have not seen a case of the Advanced Styling not working and I don’t see any related errors?

    Best regards,
    Mike

    #1358568
    This reply has been marked as private.
    #1358492

    Topic: Font size

    in forum Enfold
    daves1997
    Participant

    Used to be under advanced. Where is global content font size change?

    Hey Elena,
    Thanks for your question, the issue was that your css for category links was using “display:block”:

    .custom-masonry-cat,
    .avia-builder-el-0 .av-post-metadata-category-link a {
    	 color: #719430;
    	 font-family: 'caveat';
    	 font-size: 16px;
    	 text-align: center;
         display: block;
         font-weight: 700;
         text-transform: uppercase;
    }

    I changed to “display:inline”

    .custom-masonry-cat,
    .avia-builder-el-0 .av-post-metadata-category-link a {
    	 color: #719430;
    	 font-family: 'caveat';
    	 font-size: 16px;
    	 text-align: center;
         display: inline;
         font-weight: 700;
         text-transform: uppercase;
    }

    and now the categories are in one line:
    2022-07-15_001.jpg
    please clear your browser cache and check.

    Best regards,
    Mike

    #1358471

    Hi,

    Thank you for the info.

    The changes are not working because the advanced styling for the h3 element overrides the custom css. Try to use a more specific selector, or replace the previous css with the following code.

    #top #wrap_all #main .avia-form-success {
        font-family: 'montserrat';
        font-size: 18px;
        background: transparent;
        color: red;
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

    #1358425

    Hello Mike,

    Thank you but that didn’t work. It’s the same font, size and colours as before. I tried with several devices (with one that I haven’t opened the page with) and also deleted the browser cache.

    Peter

    #1358403

    Hi,
    Please try this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field

    .avia-form-success {
    	font-family: 'montserrat';
    	font-size: 14px;
    	background: transparent;
    }

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

    Best regards,
    Mike

    Hi,
    In the Special Heading element, under the Styling Tab, this is where you will find the font size option.
    Please ensure to are using a current version of Enfold v5.0.1, and you are looking in the Special Heading element, some elements may not have this option. If you still can’t find it, please create a new thread and include a recap, and WordPress admin access in the Private Content area. Since this is not your thread posting your login here will not be private and you will not see anything we write in the Private Content area.

    Best regards,
    Mike

    Thanks again.

    In the past you could indicate the font size at General Styling > fonts. That was called “Default font size content” I don’t see that anymore, is that right?. I solved that now by choosing “select an element to customize” and then <body>. Would like to know why this is no longer visible by default.

    #1358336

    Thanks, font and line height is smaller now, so you can read more, but still, the modal itself is not scrollable.. i will make the font-size small so that there’s no scrolling needed.

    however i have another problem and i have it on every single page with enfold theme. it’s difficult to exlain though.
    also in the cookie modal you can klick the button “anpassen” which leads you to another pop up modal.
    when you scroll down theres a white space – it appears only on iphone!
    here it is on http://www.cafecentral.wien

    View post on imgur.com

    you know what it could be?
    thanks!!

    • This reply was modified 3 years, 6 months ago by Stefan.

    Hi! Bei mir wird den Reiter “Font Sizes nicht gezeigt”.
    Wie kann ich es aktivieren?
    Danke
    Arantza

    #1358327
    keep12
    Participant

    Hi,
    we have detected that when using the TOC+ plugin, several errors appear in elements such as colour sections or headers. When active, the colour sections do not show the chosen colours and the headers become too small, no matter what font size you select.

    I haven’t found anything on the forum about this issue, everything points to a CSS error but, has anyone reported this kind of errors or similar when using this plugin? What solution could I apply? And, if not, what plugin could I install to create a table of contents in my posts that works well?
    Thanks in advance.

    Best regards.

    Hi,

    Thanks for the update. If you want to adjust the colour, then please change the above CSS to this:

    .pricing-table li {
      font-size: 14px;
      color: red; 
    }
    
    .pricing-table li.avia-heading-row {
      font-size: 24px;
      color: blue; 
    }

    Best regards,
    Rikard

    #1358301

    Hi Ismael,

    Thank you for the fast response.

    Yes, I am referring to the popup message. Right now it is a white background message with black text.
    I would like it to have no background, Montserrat font type and 14 px font size.

    Is that possible?

    Thanks!

Viewing 30 results - 1,771 through 1,800 (of 18,702 total)