Viewing 30 results - 2,341 through 2,370 (of 18,719 total)
  • Author
    Search Results
  • #1330749

    Hi,
    For this slider I see that you are doing width:600px; to force the word break, with a margin-left:26%; to center.
    I recommend trying width:32ch; to force the word break, CH is a width that is *close to a character width, and margin:auto; to center.
    Try this css instead of yours:

    @media only screen and (min-width: 480px) {
    #top.page-id-3642 #full_slider_1 .av-slideshow-caption h1.avia-caption-title {
        width: 32ch;
        font-style: italic;
        margin: auto;
    }
    #top.page-id-3642 #full_slider_1 .av-slideshow-caption .avia-caption-content {
    	width: 36ch;
    	margin: auto;
    }
    }
    @media only screen and (max-width: 769px) { 
    	#top.page-id-3642 #full_slider_1 .slideshow_caption {
    		padding: 0;
    	}
    }
    @media only screen and (min-width: 376px) and (max-width: 479px) { 
    	#top.page-id-3642 #full_slider_1 .av-slideshow-caption .avia-caption-content p {
    		font-size: 20px;
    		width: 100%;
    		margin: auto;
    	}
    	#top.page-id-3642 #full_slider_1 .av-slideshow-caption h1.avia-caption-title {
    		font-size: 20px!important;
    		width: 32ch;
    		margin: auto;
    	}
    }
    @media only screen and (max-width: 375px) { 
    	#top.page-id-3642 #full_slider_1 .av-slideshow-caption .avia-caption-content p {
    		font-size: 13px;
    		width: 100%;
    		margin: auto;
    	}
    	#top.page-id-3642 #full_slider_1 .av-slideshow-caption h1.avia-caption-title {
    		font-size: 15px!important;
    		width: 32ch;
    		margin: auto;
    	}
    }

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

    Best regards,
    Mike

    #1330694

    In reply to: animation numbers bold

    Hey aruizhuidobro,
    Thank you for the link to your site and the login, the Montserrat 800 is actually Montserrat-ExtraBold and not included by default, so I added it for you via the Enfold Theme Options ▸ Import/Export ▸ Custom Font Manager
    and adjusted your css to:

    .avia-animated-number span.avia-single-number {
    font-family: 'Montserrat-ExtraBold';
        font-size: 55px; 
       font-weight: 800;
    }
    

    and now it is working, please clear your browser cache and check.
    2021-11-27_013.jpg

    Best regards,
    Mike

    #1330628

    Topic: custom button change

    in forum Enfold
    ndszamoca
    Participant

    Hi,

    could you please help me?

    With your help I made a button in the footer widget. (thanks for Mike!)

    [av_button label='Donate' link='manually,http://ccsz.ninja/donate/' link_target='' size='small' position='left' icon_select='no' font='entypo-fontello' color='theme-color' custom_bg='#48B2B7' custom_font='#ffffff' av_uid='av-5obiu2i']
    and css:
    #footer #text-6 .avia-button {
    border-radius: 40px;
    font-size: 30px;
    background-color: #48B2B7;
    border-width: 0;
    color: #fff;
    font-size: 16px;
    }

    After I translated the widget with wpml the styling lost totally.
    I could not find out why? I though the css will style that one also.

    Help me please how to solve this!

    Thanks a lot!
    Szami

    • This topic was modified 4 years, 3 months ago by ndszamoca.
    #1330607

    Topic: animation numbers bold

    in forum Enfold
    aruizhuidobro
    Participant

    Team, I am using animation numbers and I am trying to make it BOLD. I added the font-weight on the general styling as attached but it not applying. Could be that the bold is not imported ? thanks !

    .avia-animated-number span.avia-single-number {
    font-family: ‘Montserrat’;
    font-size: 55px;
    font-weight: 800;

    }

    Web: http://c2350005.ferozo.com/

    #1330551

    Hi,

    Thank you for the update.

    Try to remove the image from the menu item temporarily, then use this css code to insert an icon font inside the login menu item. The icon font should automatically switch color when the header changes or when scrolling down or up.

    #menu-item-8683 a:before {
        font-family: 'entypo-fontello';
        content: "";
        font-size: 26px;
    }
    
    #menu-item-8683 .avia-menu-text {
        display: none;
    }

    Best regards,
    Ismael

    #1330420

    Hey Eleina_Shinn,

    Thank you for the inquiry.

    1.) Are you referring to the slider buttons? You can use this css code to adjust the size or style of the butotn on mobile view.

    @media only screen and (max-width: 767px) {
        .avia-button.avia-size-large {
            padding: 11px 20px 9px;
            font-size: 11px;
            min-width: 99px;
        }
    }
    

    2.) It seems to be displaying as it should as shown in the screenshot below.

    Screenshot: https://postimg.cc/QB5V1YTD

    Best regards,
    Ismael

    #1330413

    Hi,

    Thank you for the update.

    The spaces between the menu items are now consistent. How did you fix it? Looks like you did remove the font-size property as suggested above.

    Best regards,
    Ismael

    #1330360

    Thanks Rikard, do I need themeforest license to post questions (like this)? I had hard time finding “create a new thread” button….Specifically, my full slider stopped displaying (again) after I installed ver (4.8.7.1). Also, the button to chose font type and size disappeared. I know that I now have style tab in “text block,” but it’s not working, and it also messes line spacing. I can no longer see font types, and everything seems to be showing Ariel.

    Thank you,

    #1330340
    Eleina_Shinn
    Participant

    Hi, I was wondering if you could help me with a couple of items on this site:

    1. The two Buttons – which I’ve styled in Enfold Theme Options / Advanced Styling – are too large on cell phone view, how can I make a more reasonable size on mobile menu?

    2. I’ve noticed that sometimes when I view the site on mobile, the heading font does not appear – I’ve uploaded the Cormorant Google Font, and that is what I’m using for headings.

    Thank you so much for your help.

    #1330075

    Hi,

    Thanks for the update. Since you added an ID, then you have to use the # in front of the ID, not a period. I changed your code to this:

    #top #formheading h6 {
            font-size: 30px !important;
    }

    And it working, please review your site.

    Best regards,
    Rikard

    #1330033

    Hi Lyse,

    Thanks for contacting us!

    You can try adding following code to bottom of Quick CSS field

    @media only screen and (max-width: 1390px) { 
    .ubermenu-main .ubermenu-item-level-0 > .ubermenu-target {
        font-size: 14px;
        padding: 15px 10px;
    }}

    and that should help down to 1030px. If you are able to switch to mobile menu at 1030px in UberMenu, please do so :)

    Regards,
    Yigit

    #1330024
    aboderc
    Participant

    I want to change the font-size of a special heading block, but somehow it gets overwritten somewhere. Please advice …

    First I tried to change the h6 heading size in the enfold advanced setting, didn’t word.

    Then I tried the developr-id:
    I’m using h6 heading to the special heading, a developer-id in the Erweitert Section of the block (formheading) and I’m using the custom css code:

    #top .formheading h6 {
    font-size: 30px !important;
    }

    But still the font-size shows up with 55px.

    What am I missing?

    #1329962

    Hi,
    Try this css:

    #footer #text-6 .avia-button {
    	border-radius: 40px;
        font-size: 30px;
        background-color: #48B2B7;
        border-width: 0;
        color: #fff;
        font-size: 16px;
    }

    expected results:
    2021-11-22_003.jpg

    Best regards,
    Mike

    #1329932
    peterolle
    Participant

    I am having a problem with an H1 in my homepage. It displays correctly in Safari and incorrect in Chrome.

    Safari: Big Font size
    Chrome: tiny tiny tiny size.

    Why can this be happening?

    Thanks.

    #1329872

    Hi,
    Please try this css:

    #top #wrap_all h3.slide-entry-title.entry-title {
    font-size: 17px !important;
    font-weight: normal;
    }

    After applying the css, please clear your browser cache and check.
    Please note that not all fonts have a 100 font-weight available, thus the use of “normal” but you can try 100 if you want.

    Best regards,
    Mike

    #1329815

    Hi Rikard,

    Yes, I want the text under the images to be lighter. I used this code to get the font to be the size I want:

    .slide-entry-title.entry-title {
    font-size: 17px !important;
    }

    I was hoping, I could use this code to lighten the weight of the font:

    .slide-entry-title.entry-title {
    font-size: 17px !important;
    font-weight: 100;
    }

    But that didn’t do anything. I also tried font-weight: light;

    Any ideas?

    Also, you are right, it isn’t technically a product page! It is a regular page with the blog posts elements pulled in for each product. I would like to put a simple grey box with rounded corners around each product. Is that possible?

    Thanks!
    Julie

    #1329740
    julhobart
    Participant

    Hi! I’m having trouble customizing the product category pages. I am able to change the font size and color but I’d like the font to be lighter (less bold) and I’d like to apply a background color. Can you help?

    https://ade-medical.z4pby1v9-liquidwebsites.com/consumer-products/weight-scales/

    #1329615

    Hey Thedogscreative,

    Thank you for the inquiry.

    It might be due to the font-size property in this css declaration.

    #top #wrap_all #header .av-burger-overlay #av-burger-menu-ul li a {
        text-align: center !important;
        font-family: "static",sans-serif;
        font-size: 2.5vw;
        font-weight: 400 !important;
        color: #177F93;
    }

    Try to replace the unit vw with pixel or em in the value (2.5vw).

    Best regards,
    Ismael

    #1329565
    Thedogscreative
    Participant

    Hello,

    I’m working on a site with a sidebar menu and finding it hard to get the menu working well.

    There’s only a few menu items, and a couple of those have sub menu items that visible at all times.

    When I inspect the menu, it appears that the span.avia-menu-text areas that are housing the links seem to be getting taller with each menu item, meaning they sit on top of the sub-menu items and make them un-clickable.
    Have a look at the screenshots.

    This is the menu:
    menu

    This is inspecting each of the main menu links from the top down:
    menu
    menu
    menu

    As you can see, by ‘contact’ the span is so tall it cover s the link above.

    I’m pretty sure it’s my messy, bad CSS, which is currently the following:

    /* SIDEBAR AND MENU STYLING */
    
    /* show main menu sub options*/
    .html_header_left .av-main-nav ul.sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        position: static;
        margin-top: 0px;
        margin-bottom: 20px;
        float: left;
        border: 0;
        background: transparent !important;
        box-shadow: none;
    }
    
    /* Sub menu on mobile styling */
    
    @media only screen and (max-width: 768px), (max-height: 650px) { .sub-menu li a {
    padding-left: 60px!important;
    line-height:16px!important;
    }}
    
    /* Burger menu links */
    
    #top #wrap_all #header .av-burger-overlay #av-burger-menu-ul li a {
        text-align: center !important;
        font-family: "static",sans-serif;
        font-size: 2.5vw;
        font-weight: 400 !important;
        color: #177F93;
    }
    
    #top .av-main-nav ul a { 
      background: transparent !important;
      border: none !important;
    }
    #top #wrap_all .av-main-nav ul.sub-menu > li > a:hover {
        color: #33D1BD !important;
    }
    
    .sub-menu li a{
    Font-size: 14px !important;
    padding: 2px!important;
    line-height:5px!important;
    }
    
    @media only screen and (max-width: 768px), (max-height: 650px) { .sub-menu li a {
    line-height:20px!important;
    }}

    What can I do to:
    1) get the menu working
    2) rewrite the CSS to getting it looking like it does now… but working?

    I’ll post a link to the site privately.

    Thanks.

    Hi Rikard,

    Perfect. Let’s discard the obvious (and easiest) first. Maybe there is some Quick CSS that is affecting this behavior. So I went through it and pulled only those 4 CSS that affect the header. Is any of these causing the issue and should be modified? Maybe specify the screen size so they don’t affect tablets?

    Don’t remember how they came to be as some maybe really old and need to be removed. This would be a good time. ;)

    /*Header Container Stretch */
    .html_header_top #top .av_header_stretch .container {
    width: 83%;
    max-width: 100%;
    }

    /* top menu bar button*/ << this is so it displays the Call to Action Pink button on top. Very important.
    span.avia-menu-fx { display: none; }
    li#menu-item-40 a {
    background: #ea526e;
    color: white;
    }
    #top #header_meta a, #top #header_meta li, #top #header_meta .phone-info {
    color: #ffffff;
    border-color: #163248;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 2%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 7px;
    font-size: 13px;
    }
    #header_meta .container {
    min-height: 40px; << this maybe needs screen size defined?
    }
    .av_secondary_right .sub_menu>ul>li:last-child, .av_secondary_right .sub_menu>div>ul>li:last-child {
    border: none;
    margin-right: -15px;
    }

    /*avoid click on items on page when hamburger menu expands to full screen*/ << this one is fresh and good
    #header {
    position: relative;
    z-index: 9999;
    }

    /*Keep Header on Mobile Fixed*/
    .responsive #header {
    position: fixed !important;
    top: 0;
    }
    .responsive #top #main {
    padding-top:95px !important; << maybe this one needs screen definition to not affect tablet?
    }

    Crossing my fingers that a few modifications to this code will fix the issue. The header on the Child Theme is identical to the one on the Parent Theme. I just replaced it but it shouldn’t cause any issues as they are one and the same. If it does, then there is a problem creating a Child theme. And I don’t think that’s the case.

    What do you think? If this is not the issue I already have the screenshots, and I’ll start putting them together. Sometimes a picture is worth a thousand words (but for the sake of both our times, let’s hope it’s a CSS for mobile or desktop that is affecting behavior on tablet.

    Thank you!

    Havi

    #1329537
    MidValleyMedia
    Participant

    There appears to have been some resetting of font sizes and styles (and some adjustments to layout but one thing at a time). I went Theme Options >> General Styling >> Fonts; then set default size to 16px and defaults for Body Text and Heading Font to Open sans. However, the only page that is showing these default changes is on the home page. All other pages are defaulting to a much smaller serif font.

    Please advise.

    Thank you for your time and consideration.

    #1329229

    Oh sorry but I have just noticed that my others products pages are not displaying the same.

    This one for example : https://v99dqr23s6x.c.updraftclone.com/produit/testo-830/ or this one https://v99dqr23s6x.c.updraftclone.com/produit/testo-865/

    It is bizarre. Shouldn’t the code apply to all pages ? At this point the CSS that I have in place right now are a mix of Yigit and yours :

    a.add-request-quote-button.button {
    font-size: 12px;
    }
    .single-product .summary .cart {
    float: left;
    max-width: 140px;
    margin-top: 15px;
    }
    .single-product .yith-ywraq-add-to-quote {
    margin-top: 70px;
    }

    .single-product-summary a.add-request-quote-button.button {
    font-size: 12px;
    }

    Thank you

    #1329215

    Hi,
    Thank you for the link to your site and feedback, I’m not sure if you have Yigit’s css in place right now but the difference I see is the font size, the “add to basket” is 12px and the “request a quote” is 15.6px, try this css to match the font size:

    .single-product-summary a.add-request-quote-button.button {
        font-size: 12px;
    }
    

    2021-11-16_001.jpg
    at this point the buttons match if you consiter the text length, this doesn’t seem noticeable, but if you want the two to match you could reduse the padding a little like this

    .single-product-summary a.add-request-quote-button.button {
        font-size: 12px;
        padding: 15px 7px;
    }
    

    2021-11-16_002.jpg

    Best regards,
    Mike

    #1329124

    Hey,

    Thanks for contacting us!

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

    
    a.add-request-quote-button.button {
        font-size: 12px;
    }
    .single-product .summary .cart {
        float: left;
        max-width: 140px;
    }
    .single-product .yith-ywraq-add-to-quote {
        margin-top: 55px;
    }
    

    Best regards,
    Yigit

    #1328899

    In reply to: Need a little CSS Help

    Thank you, Mike. It’s close but I need to do away with the left padding. It’s not centered and it looks off.

    Is there a way to add the text under the button on the same <div>? I do like it closer and centered with respect to the button. I wonder why it wouldn’t pick up the CSS when I added the actual <div> code with Code. Was I supposed to select some additional option?

    This was the code I added to Code (it showed the button and the text perfectly but not the right colors):
    <div class=”avia-button-wrap avia-button-left avia-builder-el-4 el_after_av_textblock el_before_av_textblock ” title=”Play the MindCrowd Memory Test”><span class=”avia_iconbox_title”>TEST YOUR MEMORY</span>
    <p style=”font-size:13px;text-align:center;”>We respect your Privacy.</p></div>

    Can I remove the CSS I had added to the child theme’s stylesheet?
    /*padding left to text*/
    p.padleft {
    padding-left: 20% !important;
    }

    One more CSS question:
    There’s a padding inside of the cell 75px top not rendering on landscape mode on mobile. It does show on Desktop, and on Portrait Mobile but not on Mobile Landscape. So, the text is under the menu.

    Mobile Landscape

    I changed the break point for the top section hoping it would not be covered by the menu when I look at it on landscape mode on mobile, but it did not work. (It was Grid Row Mobile Breaking point > On Mobile Devices 767px or lower and now it is On Tablets > 989px or lower)

    Thank you in advance!!!

    Warmly,

    Havi
    If I add a white space 20px and select Hide on Desktop, It does not hide it on Desktop either and the screen also does not cover the full viewport on mobile landscape.

    #1328893

    Hi,
    Thank you for the link to your site and the explanation, for this one page /memory-care-learning-center/events/ page-id-2047
    we will use css to hide any masonry elements with the class tribe_events_cat-independent-living
    then we will use a jQuery script to check if no masonry elements are showing, and if so we will display a message.
    Please add this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #top.page-id-2047 #av-masonry-1 .tribe_events_cat-independent-living {
    	display: none;
    }
    .nocat {
    	text-align: center;
        color: #fff;
        font-size: 20px;
    }

    Then add this code to the end of your functions.php file in Appearance ▸ Editor:

    function custom_nocat_script() { ?>
        <script>
    (function($) {
    var nocat = $('<div class="nocat">No Current Events</div>');
    if($('#top.page-id-2047 .av-masonry-entry').is(':hidden')){
    	$(nocat).appendTo('#av-masonry-1');
    }
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_nocat_script');
    

    Best regards,
    Mike

    #1328859

    but if you have that search on your main-navigation the magnifier symbol ( search ) is also on hamburger open visible !
    Maybe you only had to style the colors of that Search icon

    then you will not need anything else ? express your request a little more precisely.
    __________
    but if you want it like this: https://webers-web.info
    you can hide that custom link in your “non-hamburger” navigation by setting it to display none.
    Think of that custom class on that custom link:

    #avia-menu li.menu-search {
        display: none;
    }

    now we got a menu item search – to have the chance to write into that input field – the link on the item itself disturbs – we had to get rid of the href :
    this to child-theme functions.php:

    function remove_href_from_search_input(){
    ?>
    <script type="text/javascript">
    (function($) {
    	$('#header').on('click', '.av-main-nav-wrap', function() {
    			$('#av-burger-menu-ul .menu-search > a:first-of-type').removeAttr("href");
    	});	
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_href_from_search_input');

    on my testinstallation i got this in my quick css – but you had to adjust it to your settings and needs:

    #avia-menu li.menu-search {
    	display: none;
    }
    
    #av-burger-menu-ul li.menu-search a:hover {
    	background-color: transparent !important;
    }
    
    #av-burger-menu-ul li.menu-search a:hover {
    	opacity: 1 !important
    }
    
    #av-burger-menu-ul li.menu-search .ajax_search_response {
    	margin-top: 30px !important;
    }
    
    #av-burger-menu-ul li.menu-search .ajax_search_response  * {
    	color: #fff;
    }
    
    #av-burger-menu-ul li.menu-search .ajax_search_response .av_ajax_search_content .av_ajax_search_title {
    	font-size: 16px
    }
    
    #av-burger-menu-ul li.menu-search .ajax_search_response  .av_ajax_search_entry:hover .av_ajax_search_title {
    	letter-spacing:0.4px;
    	color: #004e7f
    }
    
    #av-burger-menu-ul li.menu-search .av_ajax_search_image {
    	background-color: #fff;
    	border-radius: 0;
    	color: #000 !important
    }
    #1328826

    Topic: Need a little CSS Help

    in forum Enfold
    havi
    Participant

    Hi guys,

    I am trying to tweak the CSS a bit. Have tried going into debug more (but what I want is not to pull the code) and I have been able to do this by adding code but the CSS from the stylesheets does not apply.

    Let me explain:

    I need a button left aligned and right under it a small message that reads “We respect your privacy.” If I add the button and the line one on each element, they show too far apart and I cannot center the Privacy text to the middle of the button. And it looks like this.

    Button and Privacy Text Separately Entered

    I tweaked the HTML on Chrome and by adding the code inside of the button <div> I get the result I want.

    Tweaked the HTML on Chrome

    See? It is right in the middle of the button and closer to it.

    This is the HTML code.

    <div class=”avia-button-wrap avia-button-left avia-builder-el-4 el_after_av_textblock el_before_av_textblock ” title=”Play the MindCrowd Memory Test”><span class=”avia_iconbox_title”>TEST YOUR MEMORY</span>
    <p style=”font-size:13px;text-align:center;”>We respect your Privacy.</p></div>

    If I add it as code, the button shows up with no color.

    Is there a way to achieve this? Where am I missing the mark?

    Thank you so much!

    Warm regards,

    Havi

    • This topic was modified 4 years, 3 months ago by havi. Reason: images were switched
    #1328560

    Hi,

    I checked your blog page but as I showed in my screenshot, I cannot see any issue. Font size is 16px.

    Best regards,
    Yigit

    #1328527

    Hi,

    1- I checked your pages however font size is 16px on those pages on my end. I attached a screenshot in private content field below. Please clear cache and refresh your page a few times.

    2- You can login on ThemeForest and then go to – https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 to renew your support.

    Best regards,
    Yigit

Viewing 30 results - 2,341 through 2,370 (of 18,719 total)