Viewing 30 results - 1,171 through 1,200 (of 18,702 total)
  • Author
    Search Results
  • Dear Mike,

    thanks for your reaction. Indeed, I now used the Typography panel to set the fontsize for different screen sizes, so the issue cannot be reproduced right now. However, it is good to know that the setting Enfold Theme Options ▸ Advanced Styling ▸ P should apply to all screen sizes. That was not what I found (see above), but perhaps another issue was playing a part. Yes, let’s close this thread, since my initial issue could be solved.

    Thanks a lot!

    This reply has been marked as private.
    #1414081

    Hey weblines,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet {
    	height: 0px;
    	width: 0px;
    	opacity: 1;
    }
    
    .html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet:before {
      content:'•';
      padding-right: 5px;
      color:#000 !important;
      font-size: 20px;
      top: -8px;
      position: relative;
    }
    

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

    Best regards,
    Mike

    #1414065

    Hi,
    Thank you for your patience and the link to your site, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 450px) { 
    	.phone-info {
    		font-size: 9px;
    	}
    }

    Feel free to adjust to suit.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1413922

    In reply to: Skip link

    Hi,

    Thank you for the info.

    Try to set the initial height of the link to zero, then set it back to default on focus.

    .jsf-skip-link {
        opacity: 0;
        font-size: 0;
        height: 0;
    }
    
    .jsf-skip-link:focus {
        opacity: 1;
        font-size: inherit;
        height: 20px;
    }

    If that didn’t work, try to pull the body element 20px upwards initially then bring it back to default when the skip link has been focused.

    .jsf-skip-link + body {
        margin-top: -20px;
    }
    
    .jsf-skip-link:focus + body {
        margin-top: 0;
    }

    Best regards,
    Ismael

    #1413792

    In reply to: Skip link

    Hi,

    But there is a black gap at the top of each page, where the skp-link appears. Could this be removed?

    This is why you have to move the skip link out of the div container. The black gap should not appear once the div has been removed.

    To adjust the style of the skip link, edit the css rule above and add your own properties to it.

    .jsf-skip-link:focus {
        opacity: 1;
        font-size: inherit;
    }
    

    Best regards,
    Ismael

    #1413780

    Hey Xiscoj,

    Thanks for sharing your code.
    I think it’s not working because of an extra dot in this part of your code:

    #top .a.trail-begin,

    Please try to replace it with:

    #top a.trail-begin,

    But I think you can replace it totally with:

    #top .breadcrumb-trail a, 
    #top .breadcrumb-trail span {
        font-size: 14px;
    }

    Hope it helps.

    Best regards,
    Nikko

    • This reply was modified 2 years, 6 months ago by Nikko.
    #1413745

    In reply to: Styling H2 tag

    Hi,

    Please try this CSS instead:

    .smallheading h2 {
      font-size: 29px;
    }

    Best regards,
    Rikard

    #1413730
    silviaxal
    Participant

    Hello!
    I’ve 4 menú items on left side menú and I need 4 different colors when evenry men is active.
    I’t works on hover, but do not on active state. I used these codes:

    #menu-item-118 .avia-menu-text {
    font-size: 15px!important; font-weight: bold!important; color:#4b7be5!important;
    }
    #menu-item-118 .avia-menu-text:hover {
    font-size: 15px!important; font-weight: bold!important; color:red!important;
    }
    #menu-item-118 .avia-menu-text a:active {
    font-size: 15px!important; font-weight: bold!important; color:red!important;
    }
    Thank you very much!

    #1413725
    Xiscoj
    Participant

    Hi,

    I have tried modifying the size of the text of breadcrumbs and so far I am stuck. I have used this code in general styling:

    /*TAMAÑO TEXTO DE BREADCRUMB*/
    
    /*--------------------------------*/
    #top .breadcrumb-title, 
    #top .a.trail-begin,
    #top .trail-end {
        font-size: 14px !important;
    }

    But have not worked fully, it does not work on home link.

    If i try to change it in advanced styles for breadcrumbs, it does not work at all.

    #1413673

    In reply to: Skip link

    Hi,

    Thank you for the update.

    The following css code should work, but you have to take the link out of the div element.

    .jsf-skip-link {
        opacity: 0;
        font-size: 0;
    }
    
    .jsf-skip-link:focus {
        opacity: 1;
        font-size: inherit;
    }

    Best regards,
    Ismael

    #1413661

    Hi alexs91,

    I just adjusted the font size for both the title and content inside the slider.
    I don’t know how it looks on mobile before the update, so I tried to check on webarchive how your website looks before on mobile (link in private content), that’s where I based it from.
    As for the second slide, I have adjusted it.
    These slider’s don’t really scale that well with mobile devices, so I think you can try to use layerslider for it.

    Best regards,
    Nikko

    #1413654

    In reply to: Styling H2 tag

    I used css like this
    h2 .smallheading {
    font-size: 29px;
    }
    or just
    .smallheading {
    font-size: 29px;
    }
    And in the elements advanced tab I added smallheading as a custom css class

    regards
    Nina

    #1413594

    In reply to: Styling H2 tag

    if I style it either under advanced styling or general styling/typography, the change would be site wide. Right?
    I only need to change the font-size in one place. That is why I thought giving it a custom css class would do the trick.

    #1413552

    In reply to: H2 Problem mobile

    Hi,

    Thank you for the update.

    Upon checking, it appears that the options in the General Styling > Typography panel are still set to their default or standard values. To address this, please adjust the settings according to your preferences. Additionally, you can modify the font size of the Special Heading element for different screen sizes by adjusting the options in the Styling > Font Sizes toggle.

    Best regards,
    Ismael

    #1413491

    In reply to: H2 Problem mobile

    This is my settings on QuickCSS

    @media only screen and (max-width: 479px) {
    .responsive #top h1 { font-size: 22px;}
    .responsive #top h2 { font-size: 22px;}
    .responsive #top h3 { font-size: 22px;}
    }

    What i musst set on Typography?

    #1413487

    In reply to: H2 Problem mobile

    Hi,

    Did you try setting a font size for all screen sizes for the H2 element under Enfold->General Styling->Typography?

    Best regards,
    Rikard

    #1413450

    Hi vew01,

    I have formatted your Quick CSS so it’s easier to read:

    .phone-info {
        font-size: 18px;
    }
    
    @media only screen and (max-width: 1200px) {
        .fallback_menu.av-main-nav-wrap { 
            position: relative; right: -120px;
        }
    }
    
    @media only screen and (max-width: 790px) {
        .responsive #top #wrap_all .container { 
            width: 70%; 
            max-width: 70%; 
        }
    }

    As for code’s to remove, I think you should remove:

    @media only screen and (max-width: 1200px) {
        .fallback_menu.av-main-nav-wrap { 
            position: relative; right: -120px;
        }
    }

    Because it does not seem to do anything.

    And remove this because it only makes the area for the content on mobile narrow:

    @media only screen and (max-width: 790px) {
        .responsive #top #wrap_all .container { 
            width: 70%; 
            max-width: 70%; 
        }
    }

    Best regards,
    Nikko

    #1413448

    Hi alexs91,

    I have modified the font size of the content of the homepage slider, please review your website.

    Best regards,
    Nikko

    #1413394

    Hey Klaus-Peter,

    You can change the general font sizes under Enfold->General Styling->Typography. If you need more specific settings then you can check under Enfold->Advanced Styling.

    Best regards,
    Rikard

    #1413373
    inliner68
    Participant

    Dear Support-Team,
    I have probs in changing the font size in
    • Menue
    • Text
    • Headings H1, H2, H3, H4
    I would like to increase menue and normal text to 14px and Headings to different values: H1-20px, H2-18px, H3-16px, all maybe standard or bold format
    I checked out some items from the forum and also clears cache, but only in the footer it works.
    Can you help me?
    Thx
    Klaus-Peter

    • This topic was modified 2 years, 6 months ago by inliner68.

    Hi Ismael,

    thanks for your tip! In fact, I skipped the Typography panel before because of the intro with “BETA” in it…

    It works! However, it took a while before I noticed the modifications on all screen types. I think it was only showing after I deleted the font size in Erweitertes Styling > p. I still don’t understand why an entry here would only work for screens >736px. This wasn’t before, or was it?

    Best regards,
    Cornelie

    #1413286

    Hey woogie07,

    Thank you for the inquiry.

    You can add this css code to adjust the style of the accordion element.

    .av-elegant-toggle .toggle_icon {
        left: 20px;
        right: auto;
    }
    
    .js_active .av-elegant-toggle .toggler, .avia-admin-preview-container .av-elegant-toggle .toggler {
        padding: 35px 35px 30px 55px;
        font-size: 17px;
    }
    

    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

    Hey CJGVD,

    Thank you for the inquiry.

    You can now customize the font size for various screen sizes in the Enfold > General Styling > Typography panel. If you enable the Default Content Font Size toggle for example, you will have access to different dropdown menus for adjusting the font size on desktop, medium, small, and very small screen sizes. Let us know if this help.

    Best regards,
    Ismael

    #1413261
    vew01
    Participant

    I am unable to effect any change in paragraph font sizes on the website’s homepage. It is far too small for mobile devices unless device is turned to landscape view.
    I’ve tried adding Quick CSS on Enfold, Theme Options, General Styling, Quick CSS with part or all of the below.
    (I am level zero as a web developer.)
    Nothing changes, no matter what I do.
    All I’d like is for the font size of paragraphs to be larger on the mobile version.
    I’ve tried both of these to no avail.

    @media only screen and (max-width: 790px) {
    .responsive #top #wrap_all .container { width: 70%; max-width: 70%; }}

    @media only screen and (max-width: 1200px) {
    .fallback_menu.av-main-nav-wrap { position: relative; right: -120px; }}
    .phone-info {
    font-size: 18px;
    }

    Thanks for any help you can offer.

    #1413254

    In reply to: Theme Licence

    Hi,

    Thanks for the update. You can set the default font size under Enfold->General Styling->Typography. If you need more advanced settings than the ones available there, then you can go to Enfold->Advanced Styling.

    Best regards,
    Rikard

    CJGVD
    Participant

    Dear Kriesi-Team,

    I used to set the default fontsize of p in Allgemeines Styling > Schriften. Now this option is not available anymore, so I have set the fontsize of p in Erweitertes Styling > p.

    However, the fontsize only seems to apply on bigger screens. The info via DevTools seems to be inline with this assumption:

    @media only screen and (min-width: 736px)
    #top .main_color p, #top .alternate_color p {
    font-size: 17px;
    }

    Why is this? Since there is no possibility to set a certain fontsize in Erweitertes Styling per screen type, I am confused why it only seems to apply on screens >736px. I would like this setting to apply to all screens.

    Thanks a lot for your help.

    Best regards,
    Cornelie

    #1413223

    In reply to: Theme Licence

    This reply has been marked as private.
    #1413185

    In reply to: enlarge font in title

    Hi,

    Thank you for the update.

    The css files are currently compressed which is probably why the modifications are not taking effect. Please toggle or temporarily disable the Enfold > Performance > File Compression settings. By disabling the file compression settings, you will be able to make the necessary adjustments and updates without any conflicts. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website.

    If the css code above is still not working after disabling the file compression, please replace it with this css code before re-enabling the file compression.

    #top .title_container .main-title {
        font-size: 30px;
    }

    Best regards,
    Ismael

    #1413183

    In reply to: Theme Licence

    Hi,

    Thank you for the update.

    Do you know why the new theme has caused the top bar and the text size to display differently?

    This issue is likely caused by modifications made in the header.php file. It is possible that the previous developer edited the template, and those changes were lost when you replaced it with the current version.

    To adjust the text size, please modify the settings in Enfold > General Styling > Fonts or make changes to the element styles in the Advanced Styling panel.

    Best regards,
    Ismael

Viewing 30 results - 1,171 through 1,200 (of 18,702 total)