Viewing 30 results - 3,511 through 3,540 (of 18,733 total)
  • Author
    Search Results
  • #1236629

    Topic: customize the Submenu

    in forum Enfold
    VPL
    Participant

    Hello Enfold team,
    we use (very successfully) the Enfold theme for our company websites.
    For one of our new websites we want to use the vertical side menu (on the left side). Setting this is no problem for us.
    However, we don’t want to display the submenu items in the block at Maushover, but rather below the main menu item.
    How can the submenu items be indented to the right with bullets and the font size reduced?
    Thank you very much for your help.

    #1236617

    In reply to: Enfold Mobile Help

    Hi Kristin,

    1 and 2, please try this in Quick CSS:

    @media only screen and (max-width: 767px) {
    .responsive.html_top_nav_header #top .social_bookmarks {
        margin-top: 0;
    }
    .responsive.html_top_nav_header #top .social_bookmarks a:before {
        font-size: 16px;
    }
    .av-burger-menu-main {
        margin-top: -15px;
    }
    }

    3. I couldn’t find a solution for that unfortunately, but if you reply to this thread after you get this message then another moderator can have a look at it.

    Best regards,
    Rikard

    Hi,

    Thank you for the update.

    The Enfold > Performance > File Compression settings are currently enabled, so you may need to disable it temporarily in order to see the changes.

    To adjust the font style of the masonry title, try to use this css code.

    #top #wrap_all .av-masonry-entry-title.entry-title {
        font-size: 10px;
        color: #fff !important;
    }
    

    Please make sure to remove all cache from browser or plugins before testing the page.

    Best regards,
    Ismael

    #1236566

    Hi,

    You can add the custom css class attribute in the Developers tab of the promobox element and use it to adjust the style of the button. Example:

    #top .custom-promobox .avia-button {
    	font-size: 20px;
    	color: red;
    }
    

    You have to replace “custom-promobox” with the actual class name or attribute.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    #1236454

    Hello Mike,

    As always THANK YOU very much for your help. That worked perfectly.
    It took me some time to respond because I was trying to fix two things myself but after trying a bunch of things I’m giving up, I couldn’t figure out what classes to target without damaging other areas.

    So in the same section that we just made the change, you will notice that the two columns have a light grey background, I believe the background shouldn’t be in the column but instead it should be the background color of the login and register form. I added two images to the same folder I have shared with you so you can see what I mean. Img_8 and Img_9 shows the light grey, and I changed the color (Img_9) so you can see it better. what I would like to do is to have that background color for the forms only and not the columns. Thank you.

    MOBILE: Also after fixing the issue #1, where I mentioned that I was having a zoom affect in the mobile browser, after research I found out that if the mobile browser thinks that your font is too small it will create that effect when selecting or typing information. So I was able to fix Issue #1 with:
    /*increase text size on drop down text – avoid apple to zoom text*/
    #top select {
    font-size: 16px;}

    Now in the store side, I couldn’t figure out what classes to target to increase the size in the input text of the apply coupon and on the fillable fields in the check out page information. Images Img_10 and Img_11 shows the sections. So what I would like to do is to increase the size of the input text fields in mobile so I don’t get that effect every time someone needs to type their information. Your help will be very appreciated. If we get this two things fixed that site will look perfect and the user experience will be great.

    If you have any questions do not hesitate to contact me.

    #1236206

    Hi,

    @rsilvestre
    for single product pages, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    jQuery(window).load(function(){
      var el = document.querySelector('#top.single-product .main-title.entry-title ');
          el.outerHTML = '<h1 class="main-title entry-title">' + el.innerHTML + '</h1>';
      });
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    If you have single product pages that you don’t want this to work on please link to a sample page for both so we can examine them.
    Please note that the style of the title doesn’t change but the H1 is added, you can change the style with css like this:

    #top.single-product h1.main-title.entry-title {
    	font-size: 30px;
    	font-weight: bold;
    }

    Please clear your browser cache when you check.

    Best regards,
    Mike

    #1235994

    Hi,
    For your issue #2 please try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top .col2-set .col-1, .responsive #top .col2-set .col-2, .responsive .cart-collaterals .shipping_calculator {
        width: 100% !important;
    }
    }

    For #3, please try this css:

    @media only screen and (max-width: 430px) { 
    #top.woocommerce-checkout label {
        font-size: 0.80em !important;
    }
    #top.woocommerce-checkout #wc-stripe-cc-form .form-row {
    	padding-right: 0 !important;
    	padding-left:  0 !important;
    }
    #top.woocommerce-checkout #wc-stripe-cc-form label[for=stripe-cvc-element] {
    	    white-space: nowrap !important;
    }
    }

    After applying the css, please clear your browser cache and check.
    Expected results:
    2020-08-07_075052.png
    2020-08-07_064810.png

    Best regards,
    Mike

    #1235665

    Hey marcoabis81,

    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

    
    #top .avia-promocontent p {
    	font-size: 35px;
    }
    

    You will need to give it a class or an id so that only this promo box changes font-size and not all of them.

    If you need further assistance please let us know.

    Best regards,
    Victoria

    these selectors are correct – but even if you set the rules to !important – there might be another rule concerning to these elements with a higher specifity.
    You can see here a specifity calculator that gives you a feeling which selector wins the run! ;) Link
    ID’s got a higher weight on specifity than classes than pseudo-classes – so maybe you try:

    #top .av-masonry-entry-title.entry-title { 
    font-size: 10px !important; 
    color: #fff !important; 
    }
    #top .figcaption.av-inner-masonry-content { 
    padding: 30px !important; 
    }

    better advice only possible if i can see the real site

    Thanks Rikard. I added that code and added a field to change the font size but neither the padding or the font size update. The rest have changed (font colour and background colour). This is the code I used:

    /*masonry titles:*/
    .av-inner-masonry-content-pos-content .avia-arrow {display: none; }
    .av-masonry-container .portfolio .av-inner-masonry-content { background: #000000 !important; }
    .av-masonry-entry-title.entry-title { font-size: 10px !important; color: #fff !important; }
    .figcaption.av-inner-masonry-content { padding: 30px !important; }

    This is in the style.css file. Please can you help….

    #1235491
    marcoabis81
    Participant

    Hi guys,

    I am trying to change font size for only one promobox (not for all promoboxes)

    I created the promobox with a shortcode in posts:

    On post https://www.viverelondra.com/draft-articolo-di-riferimento promobox called CUSTOM CSS

    [av_promobox button='yes' label='Cliccami' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='large' box_color='' box_custom_font='#ffffff' box_custom_bg='#444444' box_custom_border='#333333' label_display='' link='manually,http://' link_target='_blank' id='' custom_class='promobox-font-size-page' av_uid='' admin_preview_bg='']
    Benvenuto! Questo è un esempio di testo per il tuo fantastico Box Promo! Sentiti libero di eliminarlo e sostituirlo con il proprio messaggio!
    [/av_promobox]

    And created a custom class which I cannot make work.

    .promobox-font-size-page {
        font-size: 35px !important;
    }

    Could you please help?

    Hi Guenni007,

    thanks so much for your reply, this has solved my problem! The formatting on the site you linked to is very close to what I was looking for actually, so very useful to see how you achieved it.

    For reference, I used Guenni007’s script to wrap the excerpt text in it’s own div, used some padding-bottom to prevent overlap of the text and the button, and set the button position to absolute, then styled the link:

    
    #top .avia-content-slider .slide-entry-excerpt {
    	padding-bottom: 50px;
    }
    #top .avia-content-slider .read-more-link {
        position: absolute;
        bottom: 20px;
        width: calc(100% - 40px);
    }
    #top .avia-content-slider .read-more-link a { 
    	background-color:#5584ab;
    	display:block;
    	padding: 4px 10px;
    	border-radius: 9px;
    	font-size:15px;
    	text-align: center;
    	color: #fff;
    	font-weight: 600;
    	text-transform: uppercase;
    	width: 100%;
    }
    

    Thanks again!

    #1235381
    Aurora
    Participant

    How can I make it so? I increased the text on the right side so it looks off now. I’ve been trying to do it myself but for the life of me I have no idea what to put for the CSS portion since it says that it’s font entypo fontello which I have no idea what is. It seems like it’s a font but it shows icons?

    2020-08-05_16-55-40.png

    Any help is appreciated.
    My boss has a campaign running tomorrow so she really wants this page to be perfect by then. Thank you!

    #1235359
    emilconsor
    Participant

    Hi everyone,

    the changelogs of version 4.7.6 say “fixed: ALB timeline custom inline date font size not working”
    We updated from 4.7.4 to 4.7.6.1 and we still cant change the fontsizes in the timeline module.

    We uploaded “Nunito Sans” and “Open Sans” from google. The Errors we get in the console:
    GET https://fonts.googleapis.com/css?family=nunito-sans-custom net::ERR_ABORTED 400
    GET https://fonts.googleapis.com/css?family=open-sans-custom net::ERR_ABORTED 400

    The correct URLs would be
    https://fonts.googleapis.com/css?family=Nunito+Sans
    https://fonts.googleapis.com/css?family=Open+Sans

    We cant figure out why the Theme creates this “-custom” and sets all in lowercase.

    Can you please help us?

    #1235249

    Hi,

    Adjust css to this:

    #top #wrap_all .inner_product_header h2{
    font-size:15px!important;
    }

    Best regards,
    Jordan Shannon

    #1235237

    In reply to: Submenu Text

    Hey slui,

    Add this to quick css:

    .sub-menu{
    padding:0px!important;
    }
    
    #menu-item-17106 a{
    color:#034f6a!important;
    font-size:10px!important;
    padding:8px 15px!important;
    text-decoration:none!important;
    }

    Best regards,
    Jordan Shannon

    #1235235

    This worked but since I’m assuming the product titles are H2’s, all my other H2’s were also shrunk down to size 15px.

    Is there a way that just the product H2’s change font size and NOT The other body paragraph H2’s?

    #1235231

    Hey Nancy,

    Add this to quick css:

    #top #wrap_all .all_colors h2{
    font-size:15px!important;
    }

    Best regards,
    Jordan Shannon

    #1235206
    Nancy
    Participant

    I have a few books for sale and the font is HUGE when I use the product gallery, how can I make the font of each product title smaller?

    #1235141

    Hi tigertalemusic,

    Please try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    #header .logo a {
        font-size: 32px;
    }

    Best regards,
    Nikko

    #1235103

    I tried the following, but it didn’t work…

    div.container.av-logo-container h1 {
        font-size: 32px;
    }
    #1235100
    tigertalemusic
    Participant

    Hi,

    I’m using a text based logo and was wondering if you could hope me figure out how to change the font and size?

    Thank you in advance!

    or you can use the pseudo container after:

    #top .scroll-down-link:after {
      content:"click here";
      font-size: 15px;
      text-align: left;
      line-height: 10px !important;
      position: absolute;
      top: 0;
      left: 8px;
      color: cyan;
    }

    on slider you need to shift the avia-slideshow-dots

    Hey Kaionel,

    Please do the following:
    1. Use a child theme (skip this if you have one). You can download and find instructions here: https://kriesi.at/documentation/enfold/child-theme/
    2. In the child theme’s functions.php file, please add this code at the bottom:

    function scrolldown_text(){
        ?>
        <script>
            (function( $ ) {
                $( ".scroll-down-link" ).append( "<span>Text Here</span>" );
            }(jQuery));
        </script>
        <?php
    }
    add_action('wp_footer', 'scrolldown_text');

    Please replace Text Here with the text you want to use.
    3. Then add this CSS code in Quick CSS:

    #top .scroll-down-link span {
        display: block;
        font-size: 18px;
        width: 200px;
        position: relative;
        left: -50%;
        margin-left: -16px;
        top: -100px;
    }

    Best regards,
    Nikko

    Thank you that has solved half the issues. This has changed the background colour and removed the arrow but the the font is still not working. Its not changed size and its the wrong colour. Please can you let me know what more I need to do. Thanks

    Kaionel
    Participant

    Hi, is there a way to add text above the animated scroll down arrow in the color section or fullscreen slider?

    Please see screenshot example in link provided.

    I found the code below in an old thread (https://kriesi.at/support/topic/add-some-text-above-the-scroll-down-arrow-on-fullscreen-slider/) but it doesn’t work as it REPLACES the arrow with the text, which is not what I want.

    #top .scroll-down-link:before {
    content: ‘click here’;
    font-size: 12px;
    }

    Hey Jan,

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

    .home .av-masonry-entry-content {
        font-size: 40px;
        line-height: 40px;
    }

    Best regards,
    Rikard

    #1234441
    mhcknight
    Participant

    Hi,
    I have checked the documentation and tried my hand at CSS before posting this, but I’ve had no luck.
    I need to increase the size of icons next to icon boxes. I have been successful in doing so using code I found in an older thread:

    /* Icon Size */
    [data-av_icon]:before {
        font-size: 50px!important;
    }
    .iconbox_icon {
        margin-right:20px!important;
    }

    However, this also increases the size of the icons used for the search icon and burger menu in the header menu. How can I make this apply only to the icon box, please?

    #1234333

    In reply to: CLOSED TABS ON MOBIL

    Demo Page: https://webers-testseite.de/pureinstall/tabs-on-mobile/
    (this is for the class on body – you decide when the switch is set)

    to child-theme functions.php

    function add_class_for_tab_switch(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function my_tab_switch() {
    		setTimeout( function() {
    	        if ($(window).width() <= 767) {
    			  $("#top").addClass("tab_switch");
    			} 
    			else {
    			  $("#top").removeClass("tab_switch");
    			}
            }, 150)	
        }
    	$(window).on('load resize', function() {
    		my_tab_switch();
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_class_for_tab_switch');

    after that you can use these classes on quick css

    /***** Settings for closed Tabcontainers on tab switch setting ************/
    .js_active .tab_switch .tabcontainer.mobile-tabs-closed .active_tab_content {
    	display: none;
    	visibility: hidden;
    }
    .responsive #top .main_color .tabcontainer.mobile-tabs-closed .tab_content.mobile-tab {
    	display: block;
    	visibility: visible;
    }
    .responsive #top.tab_switch .main_color .tabcontainer.mobile-tabs-closed .active_tab {
    	background-color: unset;
    	color: inherit;
    }
    .js_active #top.tab_switch .tabcontainer.mobile-tabs-closed .active_tab {
    	font-weight: normal;
    }
    #top.tab_switch .main_color .tabcontainer.mobile-tabs-closed .tab.active_tab:hover {
    	color: #666666;
    }
    janmalone
    Participant

    Hi

    Ive seen threads on this but none seem to work for me, i am a complete novice and this is my first attempt. I am trying to make the text that appears on my home page bigger in the portfolio area. so the text that pulls in from the excerpt field “£2.2m Aquisition” I have managed to make the title bigger using }
    #top #wrap_all .av-masonry-entry h3.av-masonry-entry-title {
    font-size: 50px;
    }
    thanks in advance Jan

Viewing 30 results - 3,511 through 3,540 (of 18,733 total)