Viewing 30 results - 6,691 through 6,720 (of 18,743 total)
  • Author
    Search Results
  • #982606

    Hi,
    In your new code above for the homepage slider, you had the class “about” which is only found on your other page “h3.about”
    I adjusted your new code so it would work:

    @media only screen and (max-width: 767px) { 
    .responsive #top.home .slideshow_caption h2 {
    font-size: 24px !important;
    }
    .responsive #top.home .slideshow_caption h2 .red-dot {
    font-size: 1em;
    color: #ff0000;
    vertical-align: 0.2em;
    margin-left: -0.1em;
    margin-right: -0.1em;
    }
    }

    you will note that I added “.responsive #top.home .slideshow_caption h2” to your “reddot” so it would not conflict with your other “reddot” now that they are different sizes.
    Please clear your browser cache and check that this meets your needs.

    Best regards,
    Mike

    envatojlc
    Participant

    My Google webmaster account is reporting, “Mobile Usability > Clickable elements too close together.” But when I look at the Enfold theme’s spacing there is plenty of space between elements. Google references this link as the explanation of the problem,

    https://developers.google.com/web/fundamentals/accessibility/accessible-styles#multi-device_responsive_design

    The only description on the page that seems to address the issue is found in this paragraph.

    Finally, when your design is displayed on a mobile device, you should ensure that interactive elements like buttons or links are large enough, and have enough space around them, to make them easy to press without accidentally overlapping onto other elements. This benefits all users, but is especially helpful for anyone with a motor impairment.

    Google is flagging 29 pages as unacceptable on mobile devices. Here is one of them,

    https://www.neverthirsty.org/about-christ/prophecies-about-christ/ministry-of-jesus/

    It is not obvious to me what Google is complaining about. Has someone seen this before? If so, what is the solution? Should I make the font size larger on mobile devices or is it a spacing problem?

    Thank you,

    — John

    #982598

    Hi Mike,

    Thank you very much for your reply and the adjustments.

    Yes, as you suggested, I removed the css rule of the “red-dot-2” span in the Quick CSS.

    Unfortunately, the position of the red dot is too low now, but referring to your first post, I could adjust it. I used “em” instead of “pt” and changed your code like this:

    .red-dot {
    font-size: 0.8em;
    color: #ff0000;
    vertical-align: 0.2em;
    margin-left: -0.1em;
    margin-right: -0.1em;
    }

    As you see above, I also adjusted the left and right margin a little bit. Now, visually, the position of red dot looks alright to me.

    ***

    For my page with the text block, the code from your second post works fine. Thank you very much.

    ***

    Back to the caption title of the Fullscreen Slider. On mobile devices, the text & red dot are a little bit too small. I’ve tried to increase them using the code of your second post combined with the code of your first post and “h2” instead of “h3”, but nothing happens. How can I adjust this?

    Here is the modified code I added to the Quick CSS:

    @media only screen and (max-width: 767px) { 
    h2.about {
    font-size: 24px !important;
    }
    .red-dot {
    font-size: 1em;
    color: #ff0000;
    vertical-align: 0.2em;
    margin-left: -0.1em;
    margin-right: -0.1em;
    }
    }

    Best regards,
    zizibe1

    #982562

    Hey fabienneBESD,

    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) {
         .logo h1 a {
            font-size: 18px;
        }
        .logo h1 a .subtext {
            font-size: 14px;
            line-height: 16px;
        }   
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #982524

    Hi,
    To change the overlay to dark gray, Try this code in the General Styling > Quick CSS field:

    #top.home .avia-content-slider-element-slider .image-overlay {
    background: darkgrey !important; 
    }

    To move the arrows, Try this code in the General Styling > Quick CSS field:

    
    #top.home .avia-smallarrow-slider .avia-slideshow-arrows {
        width: 100% !important; 
        top: 150px !important; 
    }
    #top.home .avia-content-slider-inner {
        margin: 0px 50px;
    }
    #top .avia-smallarrow-slider .avia-slideshow-arrows a {
        width: 30px !important; 
        height: 30px !important; 
        line-height: 30px !important; 
        font-size: 30px !important; 
    }

    To have the slides only 2 high in mobile, Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #top.home .slide-entry.slide-loop-3,#top.home .slide-entry.slide-loop-4,#top.home .slide-entry.slide-loop-7,#top.home .slide-entry.slide-loop-8 {
    display: none !important;
    }
    }

    Best regards,
    Mike

    #982517

    Hi,
    Thank you for the screenshots and login, I changed your vertical-align to baseline to keep it in line.
    I also changed your “red-dot-2” span to “red-dot” because you can use the same span and css for every red dot on your site, if you agree that this is working correctly, you can remove the css rule in your Quick CSS.

    For your page with the text block, I see your are using a H3 for the caption, and I assume that you like the size of the text & red dot on desktop & tablet, so for mobile I added the class “about” to the h3 and then added this css to your Quick CSS:

    @media only screen and (max-width: 767px) { 
    h3.about {
    font-size: 20px !important;
    }
    }

    Please adjust the font-size to suit.

    Best regards,
    Mike

    #982508

    Hi Mike,

    Thank you very much for your support.

    1. I added a rule to the bottom of your code to align the red dot.

    First code at the bottom of Quick CSS:

    .red-dot {
    font-size: 0.8em;
    color: #ff0000;
    vertical-align: 5.7pt
    }

    On a computer screen, it looks alright now. But on mobile devices, the red point is too high. How can I adjust this?

    2. I added the span class also to the text block, but there it doesn’t work. On a computer screen, it looks alright, but on mobile devices, both, caption and red dot, are way too big. How can I fix this?

    Second code at the bottom of Quick CSS:

    .red-dot-2 {
    font-size: 0.8em;
    color: #ff0000;
    vertical-align: 4.2pt
    }

    Best regards,
    zizibe1

    #982490

    This is the code I have:

    <div style="direction: rtl; height: auto; line-height: 18px; text-align: center;">
    <p style="font-size: 14px;"><span style="color: #000000;">ראשון, שני ושלישי 9:30 - 17:30</span></p>
    <p style="font-size: 14px;"><span style="color: #000000;">רביעי וחמישי 9:30 - 19:00</span></p>
    <p style="font-size: 14px;"><span style="color: #000000;">שיש וערבי חג 9:00 - 13:00</span></p>
    </div>

    I don’t know where you get this error from but it is NOT onsite!!
    Now why do I get the feeling we’re getting nowhere with this???

    #982441
    fabienneRedUmb
    Participant

    Hi guys,
    I am building yet another site with Enfold! Yay, I like this theme.
    I have exchanged the logo with a text logo with subtext, as described in your documentation.

    //-------------------------------
    // function - Text Logos
    //-------------------------------
    add_filter('avf_logo_final_output', 'avf_text_logo_final_output');
    
    function avf_text_logo_final_output($logo) {
      $link     = apply_filters('avf_logo_link', home_url('/'));
      $logotext = "LOGO TEXT";
      $subtext  = "A CUSTOM SUBTEXT";
      $subtext  = "<span class='subtext'>$subtext</span>";
      $logo     = "<span class='logo'><h1><a href='".$link."'>".$logotext.$subtext."</a></h1></span>";
    
      return $logo;
    }

    and here is my tweaked CSS

    /* Text logo styling */
    
    #top .logo,
    #top .logo a {  
      overflow: visible;
    }
    
    #top .logo {  
      background: none;
        display: flex;
        align-items: center;
        padding: 30px;
    }
    #top .logo .subtext {
        font-size: 18px;
        color: #808080;    
        position: absolute;
        width: 100%;
        left: 0;
        top: 30px;
    }
    
    /* Hide subtext on scroll */
    #header.header-scrolled-full .subtext {
      display: none;
    }
    
    /*  Custom size logo  */
    
    #top .logo ,
    #top .logo a {  
      width: 500px;
     }
    
    @media only screen and (max-width: 767px) {
    #top .logo ,
    #top .logo a {  
      max-width: 60% !important;
      width: 60% !important;
      height: auto;
     }}

    When my screensize gets smaller, the size of the font is staying the same and the text gets mangeled into each other. How can I prevent this from happening?

    Thank you.

    #982201

    Hey Charlotte,

    The gap can be set in the masonry settings.

    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 .av-caption-style-overlay .av-masonry-entry .av-masonry-entry-title {
        font-size: 2em;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    Hi tsvweinsberg,

    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) {
        .html_av-overlay-side #top #wrap_all .av-burger-overlay li a {
            font-size: 18px;
        }
    #top .custom-color-heading strong {
         font-size: 22px;
    }
    #top #wrap_all .av-inherit-size .av-special-heading-tag {
        font-size: 22px;
    }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #982181

    Hey wesgalvin,

    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

    
    .phone-info {
      font-size: 18px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #982011

    Hey zizibe1,
    Instead of using inline-styles, using a span class would give you more options.
    On your homepage, I changed your code for the red dot to:

    <span class="red-dot">⬤</span> 

    then I added this css to your Enfold Theme Options > General Styling > Quick CSS field

    .red-dot {
    font-size: 1em;
    color: #ff0000;
    }

    I used “1em” because it will change it’s size automatically, you could adjust if you like using fractions such as “1.3em”
    Please try using this method in the other places you have the red dot.
    Please clear your browser cache and check.

    Best regards,
    Mike

    #981983

    In reply to: Font Size Product Page

    Hi Rikard,

    yes, removing the code from titles does bring the font sizes back to normal.

    But why does this not happen to the other product?

    Theres is exactly the same code in use.

    And i’d prefer to keep these markups.

    Any idea?

    tsvweinsberg
    Participant

    Hi i have 3 Problems with my website:www.welovetoclean.de

    1. I will change the Color from the Prive table (here be yellow) http://welovetoclean.de/innenreinigung/

    2. The Menue be to big on smartphone
    See here the Screenshot https://imgur.com/a/yVtzn6V

    3. And the Size from big font ist not good on mobile
    See here the Screenshot: https://imgur.com/a/Dqybdco

    • This topic was modified 7 years, 9 months ago by tsvweinsberg.
    #981834

    Hi,

    Thanks for that, please try this in Quick CSS:

    #top .avia-slideshow-button {
        padding: 20px !important;
        font-size: 20px !important;
    }

    Adjust the values to your liking.

    Best regards,
    Rikard

    #981800

    Hi,
    Thanks for the login, I added this css to your Quick CSS:

    @media only screen and (max-width: 767px) { 
    .responsive #top.home .avia-builder-el-0 .slideshow_caption {
        padding-top: 0px!important; 
    }
    .responsive #top.home #wrap_all .container {
        width: 95% !important; 
        max-width: 95% !important; 
    }
    .responsive.av-no-preview #top.home #wrap_all .av-mini-font-size-hidden {
    display: block !important;
    }
    .responsive #top.home .avia-slideshow-button {
        padding: 10px 10px !important; 
        font-size: 10px !important; 
    }
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    #981717

    Hi,

    Your HTML is incorrect. You would want to use the following:

    <div style="font size=7px;">Recruitment</div>

    Best regards,
    Jordan Shannon

    greennrgdesign
    Participant

    Hi,
    I can’t seem to find the option to change the header colour within a slider on a particular page for a company website using Enfold Child Theme.

    The source code in chrome that I looked up reads this: font-size:64px;font-family:Arial;color:#ffffff;background:#F4823;padding-top:10px;padding-right:10px;padding-bottom:10px;padding-left:10px;

    But I cannot find this colour: #F4823 in Enfold Child Theme Options with General Styling or Advanced Styling. I will need to replace that colour with this: #bdd532.

    Can anyone assist?
    Thank you very much.

    #981516

    Hi,

    The inline styling overrides your custom css code. Please use this one.

    #header h6 a, #header h6 {
        margin: 0 !important;
        font-size: 18px !important;
    }

    You may need to push the form farther to the right.

    Best regards,
    Ismael

    #981420

    Hi,

    You have this CSS in your child theme and it’s applying on my end;

    .category-1-culturel .av-masonry-entry-title.entry-title {
        font-family: 'Raleway', sans-serif !important;
        color: #0046ad !important;
        font-weight: 900;
        font-size: 25px;
    }

    I’m guessing you managed to get it working?

    Best regards,
    Rikard

    #981397
    tonyshanks
    Participant

    I have exported pages through WordPress Exporter and imported into my Enfold Theme. The theme of my old website was DIVI. Can Enfold not convert imported XML files to Enfold themed pages? My page contents are showing shortcodes from the Divi Theme.

    [/et_pb_text][et_pb_code admin_label=”Code” max_width=”800px”]<center><h4 style=” margin-bottom: -9px;”>Top Three Performing DFS Experts -<span style=”margin-bottom: -22px; “> Updated weekly</span></h4><br /><p style=”margin-top: -13px; margin-bottom: -34px;”>Our extensive grading has proven the above industry experts can consistently produce winning lineups.</p><br /><br /> <div id=”homePageGradingRemove”><br /> [custom-tabs-table/]</center><br />[/et_pb_code][/et_pb_column][et_pb_column type=”1_4″][/et_pb_column][/et_pb_row][et_pb_row admin_label=”Row” make_fullwidth=”off” use_custom_width=”off” width_unit=”on” use_custom_gutter=”off” gutter_width=”3″ padding_mobile=”off” allow_player_pause=”off” parallax=”off” parallax_method=”off” make_equal=”off” parallax_1=”off” parallax_method_1=”off” column_padding_mobile=”on” custom_css_before=”display:none !important;”][et_pb_column type=”4_4″][/et_pb_column][/et_pb_row][et_pb_row admin_label=”Row”][et_pb_column type=”4_4″][et_pb_text admin_label=”Text” background_layout=”light” text_orientation=”center” text_font_size=”14″ use_border_color=”off” border_color=”#ffffff” border_style=”solid”]

    Hi,
    Please try this css:

    #menu-item-phone a[data-av_icon]:before {
        font-size: 20px !important; 
    }

    If you add this to your child theme style.css, please resave your theme settings to ensure your merged css is rebuilt.
    If you find it’s not helping, please test in WordPress > Customize > Additional CSS.
    Also be sure to clear your browser cache.

    Best regards,
    Mike

    #981318
    zizibe1
    Participant

    Hi,

    1.

    I added a symbol (big red dot) to the caption of a Fullscreen Slider like this:

    «Lorem ipsum <FONT style=”font-size: 27pt; color: #FF0000; vertical-align: 5pt”>⬤</FONT> dolor sit amet.»

    When I watch it on a computer screen, caption (36px) and symbol (27pt) are the correct size. On mobile devices, the caption changes to a smaller font size, which is okay, but the symbol stays the same size as before. It is way too big in comparison to the rest of the caption.

    2.

    Similar problem in a Text Block. Here I added the symbol at the end of the text like this:

    <h3>«Lorem ipsum dolor sit amet.» <span style=”font-size: 20pt; color: #ff0000; vertical-align: 4pt;”>⬤</span></h3>

    On a computer screen, caption (36px) and symbol (20pt) are the correct size. But on mobile devices, both, caption and symbol, are way too big. There the font size should be only 24px and the size of the symbol should be adjusted.

    How can I fix this?

    Best regards,
    zizibe1

    MadRhino
    Participant

    Hi, I’m currently working with your photography template and was wondering how to increase the font size for the menu items in the sidebar? I know it sounds like a stupid question, but I have tried changing the font, the font color, and the font size via the Advanced Styling options; unfortunately to no avail. It changed the font and the font color, but increasing the font size only seems to increase the line height. The actual font size won’t change no matter what.

    Many thanks for looking into that. I appreciate it.

    This reply has been marked as private.
    #981123

    In reply to: Font summary blogpost

    Hi Victoria,

    Thank you for your reply.
    If I put the blog posts element in the 1/1 container they appear very big and also under each other.
    Any other ideas?

    And how can I adjust the size of the summary under my blogposts on the homepage? Now the font is much bigger than the font on the rest on my homepage.

    Thanks in advance for all your help!
    Eefke

    #981043

    Is there any news on this

    here’s an example of what I have in the text box

    `<font size=”7″>Recruitment</font>
    </br> </br>
    We look to recruit and develop our workforce who are a representation of the clients we serve. We encourage applications regardless of race, ethnicity, gender, sexual orientation, disability religion or belief and age.

    Hello Mike,
    the website XY is it not mine, I used it as an example ;-)
    With help from people on the Enfold FB group I’ve been able to add a phone icon in the menu (not image in a widget area)
    BUT I’m struggling with the icon size I would like it to be 20px – I cannot seem to make just that menu-item larger.
    This is the test website: http://new.eaglebelgium.com

    This is the PHP

    /* Phone Icon */
    if(!function_exists('avia_append_phone_icon'))
    {
    //first append search item to main menu
    add_filter( 'wp_nav_menu_items', 'avia_append_phone_icon', 9997, 2 );
    add_filter( 'avf_fallback_menu_items', 'avia_append_phone_icon', 9997, 2 );
    
    function avia_append_phone_icon( $items, $args )
    {	
    if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
    {
    $items .= '<li id="menu-item-phone" class="noMobile menu-item menu-phone menu-item-avia-special">
    <a href="#" '.av_icon_string('phone').'><span class="avia_hidden_link_text">'.__('Phone','avia_framework').'</span></a>
    </li>';
    }
    return $items;
    }
    }
    
    function avf_default_icons_mod($icons) {
    $icons['phone']	= array( 'font' =>'entypo-fontello', 'icon' => 'ue854');
    return $icons;
    }
    add_filter('avf_default_icons','avf_default_icons_mod', 10, 1);

    The CSS to hide the phone-icon on large screens

    @media only screen and (min-width: 480px) {
    #menu-item-phone {
    display: none !important;
    }
    }

    Hi,
    To have the sub-menu extend to 768px, please try this css in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 768px)
    {
    	.responsive #top .sticky_placeholder{max-height:0px; }
    	.responsive #top .av-submenu-container{top: auto !important; position: relative !important; height:auto; min-height:0; margin-bottom: -1px;}
    	
    	.responsive #top .av-menu-mobile-active {text-align: center; }
    	.responsive #top .av-menu-mobile-active .mobile_menu_toggle{display: inline-block!important; }
    	.responsive #top .av-menu-mobile-active .av-subnav-menu{display:none!important; }
    	
    	.responsive #top #wrap_all .av-menu-mobile-active.container {width:100%; max-width: 100%;}
    	.responsive #top .av-menu-mobile-active .av-open-submenu.av-subnav-menu{display:block!important; }
    	.responsive #top .av-subnav-menu > li:first-child{margin-top:-1px;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu  li{display:block; border-top-style: solid; border-top-width: 1px; padding:0;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu > li > a{border-left:none; padding:15px 15%; text-align: left;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu > li a:before{content: "\25BA"; position: absolute; top: 15px; margin-left: -10px; font-family: 'entypo-fontello'; font-size: 7px;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu li > ul{visibility:visible; opacity: 1; top:0; left:0; position: relative; width:100%; border:none;}
    	.responsive #top .av-menu-mobile-active.av-submenu-hidden .av-subnav-menu li > ul{display: none;}
    	.responsive #top .av-menu-mobile-active.av-submenu-hidden .av-subnav-menu li > ul.av-visible-sublist{display: block;}
    	
    	.responsive #top .av-menu-mobile-active .av-subnav-menu li > ul a{padding:15px 19%;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu li li > ul a{padding:15px 24%;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu li li li > ul a{padding:15px 29%;}
    
    }

    Best regards,
    Mike

Viewing 30 results - 6,691 through 6,720 (of 18,743 total)