Viewing 30 results - 4,891 through 4,920 (of 18,734 total)
  • Author
    Search Results
  • #1126404

    Hey rhae,

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

    .special_amp {
        font-family: inherit;
        font-style: normal;
        font-size: inherit;
        line-height: inherit;
        font-weight: normal;
    }

    Best regards,
    Rikard

    #1126251

    Hi,

    I would try 2 things further:

    1) Add “!important” to the css so it takes precedence.

    .avia-button.avia-size-medium {
        padding: 12px 24px 10px!important;
        font-size: 13px!important;
        min-width: 150px!important;
    }

    2) Check any additional custom css you might have to ensure there are no format mistakes as this can cause breaks and thus other css won’t run.

    Best regards,
    Jordan Shannon

    #1126221

    Hi Marco,

    1. I have answered it in your other thread but it’s on 1 page specifically.

    2. (last box and remove bullet points) replace this code:

    #top .widget_categories ul {
        display: flex;
        flex-wrap: wrap;
        text-align: center;
    }
    
    #top .widget_categories li {
        flex-grow: 1;
        width: 32%;
        float: none;
        padding: 15px 15px 15px 18px;
        margin: 15px 15px 8px 0px;
        border: ridge;
        font-size: 18px;
    }

    with:

    #top .widget_categories ul {
        display: block;
        text-align: center;
    }
    
    #top .widget_categories li {
        display: inline-block;
        width: 31%;
        float: none;
        padding: 15px 15px 15px 18px;
        margin: 15px 15px 8px 0px;
        border: ridge;
        font-size: 18px;
        box-sizing: border-box;
    }

    3. I could see the code if I check via page source but it’s not showing in the web inspector.
    First, remove these lines that you have (css tries to read it, just use comments like /* comments*/

    ------------------------------------------------------------

    Next, move this code to functions.php file:

    /* A seguire, questo aggiunge le foto nel mega menu */
    add_filter('wp_nav_menu_objects', 'avf_wp_nav_menu_objects', 10, 2);
    function avf_wp_nav_menu_objects($sorted_menu_objects, $args) {
    
        // check menu name
        if ($args->menu->name != 'Top Menu (Italiano)') return $sorted_menu_objects;
    
        // edit the menu objects
        foreach ($sorted_menu_objects as $menu_object) {
            // searching for menu items linking to posts or pages
            // can add as many post types to the array
            if ( in_array($menu_object->object, array('post', 'page', 'portfolio', 'products')) ) {
                // set the title to the post_thumbnail if available
                // thumbnail size is the second parameter of get_the_post_thumbnail()
                $menu_object->title = has_post_thumbnail($menu_object->object_id) ? $menu_object->title . get_the_post_thumbnail($menu_object->object_id, 'thumbnail') : $menu_object->title;
            }
        }
    
        return $sorted_menu_objects;
    }

    I think if that’s fixed, the code I gave should work.

    4. I’m not sure I understand this well, do you mean move the pics on the left and category to the right?

    Can you give a link to the page where other category widgets are showing?

    Best regards,
    Nikko

    #1126104

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    Titles:

    #footer .widgettitle {
        padding-left: 0;
        text-align: left;
    }

    Caption:

    #footer .wp-caption-text {
        font-size: 15px;
    }

    Best regards,
    Rikard

    #1125985

    Hi,

    Add this to quick css:

    @media only screen and (max-width: 767px)  {
    #top #wrap_all .avia-slideshow-button {
        font-size: 10px!important;
    }
    
    #top .avia-slideshow-button.avia-color-light {
        padding: 5px 9px!important;
        background-color: rgba(0,0,0,0.2)!important;
    }}

    Best regards,
    Jordan Shannon

    #1125896

    In reply to: Mega Menu layout

    can you first add this:

    #top #header .avia_mega_div > .sub-menu > li {
        flex: 0 1 25%;
    }
    
    #header .mega_menu_title {
        font-size: 22px !important;
    }
    
    .avia_mega_div .avia-bullet {
      margin-top: 9px;
      border-top: 6px solid transparent !important;
      border-bottom: 6px solid transparent !important;
      border-left: 6px solid #010660;
    }

    then we will see how to go on …

    #1125875

    Hi
    We have the problem, that we use some padding-top, padding-left, padding-right and padding-bottom settings in some columns of the design in the advanced layout builder. So it looks very well in the Desktop version of the website.
    Unfortunately, this padding settings breaks the Mobile version of the website.
    Is there a possibility to have different padding setting for Desktop and Mobile versions, like this is also sometimes possible for font-sizes?
    Thanks very much.
    Best regards
    Mike

    #1125790

    Hi,

    Add this to quick css:

    
    @media only screen and (max-width: 767px)  {
    #menu-item-9040 .avia-menu-text{
    font-size:8px!important;
    }}

    Best regards,
    Jordan Shannon

    #1125582
    claudipro
    Participant

    Hello,
    we have on our startpage a fullwidth slide-show header and changed the font size for the mobile version. Unfortunally the arrows on the left and the right side are to big and overlapping the text in the slides. Also the link-buttons are a bit to huge.

    Is it possible to change this?
    Thank you
    Claudia

    #1125511

    Hi,

    Please try this CSS instead if you want it to apply to the whole site:

    #top h3.slide-entry-title a {
      font-size: 18px;
    }

    Best regards,
    Rikard

    Hi,

    Thank you for the info.

    The following code is added in the style.css file, but when we try to edit the file from the Appearance > Editor panel, it’s blank. Why is that?

    #footer .widgettitle + * {
        font-size: 12px !important;
    }

    Best regards,
    Ismael

    #1125444

    In reply to: Style contact form

    Hi Mike,
    thanks for your help. I did everything your suggested concerning the placeholder, added the firefox code, cleared the FF browser cache, and it now looks fine!

    Concerning the checkbox,: it IS now in front of the sentence but it doesn’t quite look nice because it is not vertically centered in front of the line but too high.
    Can you see it?
    I also lost the 30px margin above and belove the part with the checkbox.
    Here is the code that I currently have in quick css. Do you generally recommend to cut and paste it into the custom.css of the child theme or in the WordPress Additional Css box that you told me about?

    .input_checkbox_label
    {
    font-family: Gilroy-Semibold;
    font-weight: normal !important;
    font-size: 16pt !important;
    line-height: 26pt !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    }

    #top.home .av_form_privacy_check {
    float: none !important;
    }

    #1125419

    Sorry – i think this will work – but with my method you got that little message posibility in the gradient section and –
    you can have all gradients (even images) in that second color-section without making allways another png file for it.

    create your layout in this way:
    you need for it two color-sections
    the first color-section with your image and the content – i give a custom class to it:
    background-with-content
    the following second color-section – this is only for the gradient ( and maybe one short info text) with custom class:
    background-with-message

    the image and the gradient could be done in the alb element itself as you know allready.

    put this to your quick css:

    .avia-section.background-with-content {
      border-bottom-right-radius: 200px;
      z-index: 5;
      position: relative;
    }
    
    .avia-section.background-with-message {
      position: relative;
      margin-top: -200px;
      z-index: 0;
    }
    
    .avia-section.background-with-message .container {
        height: 300px !important
    }
    
    .avia-section.background-with-message .container .content {
        vertical-align: bottom;
        padding-bottom: 20px !important
    }

    looks this way: https://webers-testseite.de/rounded-background-gradient/

    Edit: on very small screens you had to make a rule for that message in the gradient container.
    padding-bottom or font-size etc.

    #1125321

    Topic: Theme Speed Issues

    in forum Enfold
    algkent
    Participant

    Hi!

    My site is just too slow, and I’ve already switched to a premium hosting company + had a speed audit done. There are one or two things I can still do on my end, but I need to know how to make this theme faster.

    For reference, here’s my site: https://www.frugalconfessions.com, and https://www.moneyprodigy.com

    When I run a google speed report for Frugal Confessions, it takes the theme 3.5 seconds to render. Here are the theme speed issues:

    Ensure text remains visible during webfont load
    Avoid an excessive DOM size — 2,172 elements
    Minimize main-thread work — 3.2 s
    Serve static assets with an efficient cache policy — 24 resources found
    Reduce JavaScript execution time — 1.7 s
    Minimize Critical Requests Depth — 7 chains found
    User Timing marks and measures — 6 user timings
    Keep request counts low and transfer sizes small — 395 requests • 1,238 KB

    Are there any things I can do with this theme to fix these issues, before buying a faster theme instead?

    Thanks so much for your help,
    Amanda

    #1125298

    Hi,
    Oh I see, the text transform was on a page, please try this css:

    .template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
        text-transform: none !important; 
    }

    For you post font please remove the previous css and clear your autoptimize plugin, and try this css in the WordPress > Customize > Additional CSS because it has priority:

    #top.single-post h1.av-special-heading-tag {
        font-size: 34px !important; 
        font-weight: 700 !important; 
        line-height: 38px !important; 
        margin-bottom: 20px !important; 
        font-family: 'noticia text' !important; 
    }
    #top.single-post h2 {
        font-size: 33px !important; 
        font-weight: 700 !important; 
        line-height: 43px !important; 
        margin-bottom: 13px !important; 
        font-family: 'noticia text' !important; 
    }
    #top.single-post p {
        font-size: 19px !important; 
        font-weight: 400 !important; 
        line-height: 30px !important;
        font-family: 'noticia text' !important; 
    }
    #top.single-post li {
        font-size: 19px !important; 
        font-weight: 400 !important; 
        line-height: 30px !important;
        font-family: 'noticia text' !important; 
    }

    on the page your cloning from the first paragraph is italic, but on your page it’s not, so I assume we are ignoring that.

    Best regards,
    Mike

    #1125261

    Hi SandraSquires,

    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 .post-entry-1658 h3.slide-entry-title a {
      font-size: 18px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1125224

    In reply to: Style contact form

    Hi,
    Sorry for the late reply, to correct the checkbox please try this css:

    #top.home .av_form_privacy_check {
    	float: none !important;
    }

    For your placeholders and input text please disable your Fast Velocity Minify plugin and clear your Firefox cache and check.
    It also seems that you do have the ::-webkit-input-placeholder for the Chrome browser, but I don’t see the ::-moz-placeholder that Firefox uses, please try adding this:

    ::-moz-placeholder {
      font-family: Gilroy-Bold !important; 
      font-size: 16pt !important;
    }

    Are you adding the css to the Quick CSS or to your child theme stylesheet?
    Please try copying your custom css and pasting it in the WordPress > Customize > Additional CSS to see if you have any errors such as a missing bracket. The errors will show with a red “x”
    If this doesn’t help, please include an admin login in the private content area so we can be of more assistance.

    Best regards,
    Mike

    #1125200

    Hi,
    Sorry for the late reply, I have taken a look at your first image again and see that you would like to move the date to the top under the headline and move the category to the end of your menu.
    Please see the screenshot in Private Content area.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $( 'body' ).each(function() {
    $( this ).find( '.date-container' ).insertAfter( $(this).find('h2.post-title') );
    $( this ).find( '.blog-categories.minor-meta' ).insertAfter( $(this).find('.current-menu-item') );
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    and this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #header .av-main-nav > li > a,.blog-categories.minor-meta > a {
        font-size: 17px !important;
        letter-spacing: 0.04em !important; 
        font-weight: bold;
        padding: 0 10px;
    }
    

    To correct your button hover color please try this css:

    #top.single-post .avia-button-center a.avia-button:hover {
    background: rgba(204, 204, 204, 1) !important;
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    #1125132

    In reply to: Style contact form

    Hi again,

    I resolved point 1) by myself with the help of another of your posts by adding

    #top .input-text, #top input[type=”text”], #top input[type=”input”], #top input[type=”password”], #top input[type=”email”], #top input[type=”number”], #top input[type=”url”], #top input[type=”tel”], #top input[type=”search”], #top input[type=”submit”], #top textarea, #top select{
    font-family: Gilroy-Bold;
    font-size: 16pt;
    line-height: 26pt;
    }

    Now I only need help with
    2)
    The clickbox for the data protection acceptance should be in front of the sentence and not above.

    Thanks!

    • This reply was modified 6 years, 7 months ago by bm_cw.
    #1125075

    In reply to: Header phone number

    Hey grandscenewedding,

    I’m not sure I understand your intentions, but you can target the phone number using this CSS in Quick CSS:

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

    Best regards,
    Rikard

    Hi,

    The first image is the good one (footer-right.jpg). The font size of my footer is 12px. Here is the CSS and Javascript file mering and compression disabled.
    When i enable the CSS and Javascript file, the font size is much bigger (footer-wrong.jpg)

    With Regards,

    • This reply was modified 6 years, 7 months ago by phouthuijzen.
    #1125041

    Topic: Header phone number

    in forum Enfold
    grandscenewedding
    Participant

    Hi, I recently increased the font size on the header phone number option in extra elements in the header menu.

    I folowed another thread and increased the font using quick css.

    The font is too big now i would like to make it twice the size of the secondary menu font.

    I would also like to have it appear on the right of the secondary menu. is this possible?

    #1124806
    marketingnr1
    Participant

    Hello team,

    we want the sarch bar on a fixed position, but if you change the browser window size the search bar moves to the left out of the main page.

    `/* search box */
    #searchsubmit {
    display:none;
    }
    #top #searchsubmit {
    min-width: 30px;
    }

    #top #s {
    border-radius: 20px;
    border: 1px #7da1c4 solid;
    font-size: 11px;
    padding: 10px 10px 11px 20px;
    left: 45% !important;
    transform: translateX(-1%);

    }

    Maybe you can tell us what we did wrong and how we can change it in the css.
    Thanks in advance and kind regards!

    • This topic was modified 6 years, 7 months ago by marketingnr1.
    #1124753

    Hi,

    Thank you for the update.

    You have to replace it with the css code above. Here it is:

    .html_av-submenu-hidden li a .av-submenu-indicator {
        font-size: 30px;
    }
    

    Best regards,
    Ismael

    #1124693

    In reply to: Style contact form

    Hi Mike,

    thank you for your reply. I checked in another browser and saw what you mean. Strangely, I see the placeholder with the correct font in Chrome but not in Firefox.
    Maybe I did something wrong?

    These are the modification in quick css that I am using now to achieve:
    1) Placeholder font Gilroy Bold, 16pt
    2) Input font Gilroy Bold, 16pt + line-height 26pt
    3) Checkbox data security sentence. font Gilroy-semibold, 16pt, line-height 26pt with checkbox in front of the sentence (right now it is in the line above) with margin 30px above and below the sentence to the boxes above and below.

    ::-webkit-input-placeholder
    {
    font-family: Gilroy-Bold;
    font-size: 16pt;
    }

    .avia_ajax_form input
    {
    font-family: Gilroy-Bold;
    font-size: 16pt;
    line-height: 26pt;
    }

    .input_checkbox_label
    {
    font-family: Gilroy-Semibold;
    font-weight: normal !important;
    font-size: 16pt !important;
    line-height: 26pt !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    }

    #1124621

    Sorry Ismael, I currently have this CSS code in the quick add.

    .html_av-submenu-hidden li a .av-submenu-indicator {
    font-size: 20px;
    }

    Did I need to make a change to this code to have the + sign larger on the right hand side of the menu before the sub menu activation just so the indicators stand out a bit more?

    We will now be using the burger menu across our whole site now including destop.

    Website is: Peak Potential Adventures

    Warmest regards,

    Darren

    #1124431

    In reply to: Socket size

    Hey Charlotte,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #socket .social_bookmarks li a {
    width: 50px!important; 
    line-height: 50px!important; 
    min-height: 50px!important; 
    font-size: 30px;
    }
    
    #socket .social_bookmarks li {
    height: 50px!important; 
    width: 50px!important; 
    }
    
    #socket .social_bookmarks {
        height: 60px!important;
    }
    #socket span.copyright {
    	font-size: 20px !important;
    }

    Please adjust to suit.

    Best regards,
    Mike

    #1124325

    In reply to: Menu hover line

    Hi Nikko

    Thank you for your reply.
    I tried the code but can’t see any change.

    Not sure if it helps finding the source of the issue but here is the entire Quick CSS code I found on our site:

    .alternate_color strong, .main_color strong { color: black; }

    .sidebar li a {
    color: grey !important;
    font-family: ‘Ubuntu’;
    font-style: normal;
    font-size: small;
    }

    .main_menu ul:first-child>li>a {
    font-size: 16px;
    font-color: white;
    }
    .main_color tr:nth-child(even) {
    color: #121212;
    }
    #top ul:first-child > li > a {
    color: white;
    }
    #top ul:first-child > li > a:hover {
    color: white;
    }

    .avia-icon-list .iconlist_icon {
    height: 32px;
    width: 32px;
    line-height: 32px;
    font-size: 20px;
    margin: 0 30px 0 16px;
    }

    /* MENU BORDERS */
    #top .main_menu .menu ul li a {
    border-right-style: solid;
    border-right-color: #ffffff;
    border-right-width: 1px;
    border-left-style: solid;
    border-left-color: #ffffff;
    border-left-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ffffff;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-top-color: #ffffff;
    border-top-width: 1px;
    }

    /* Main Menu – SUB MENU OFF */
    #top .main_menu .menu ul li>a {
    color: #ffffff;
    font-weight:600;
    }
    /* Main Menu – SUB MENU HOVER */
    #top .main_menu .menu ul li>a:hover {
    color: #f16e50 !important;
    background-color: #ffffff;
    font-weight:600;
    }
    /* Main Menu – HIGHLIGHT BLOCK */
    #top .avia-menu-fx {
    display:block;
    position:absolute;
    top: 28px;
    border-style:solid;
    border-width:1px;
    color: #ffffff !important;
    }
    #top #avia-menu .avia-menu-fx {
    top: auto;
    bottom: 0;
    }

    #top fieldset > h3 {
    display: none;
    }

    .page-id-3542 #main img {
    border: 5px solid red !important;
    }

    .recentcomments a, .widget_recent_entries li a {
    font-style: normal !important;
    font-family: “Ubuntu” !important;
    }

    div#header_main {
    background-color: #f16e50;
    }

    .avia_mega_div * {
    font-size: 16px !important;
    }

    .home .av-masonry-date {
    display: none !important;
    }
    .avia-content-slider .slide-meta time {
    display: none;
    }

    #1124309

    In reply to: Ein Font Problem?

    Hey danielfangli,

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

    span.special_amp {
        color:inherit;
        font-family: inherit;
        font-size: inherit;
        font-style: inherit;
    }

    Best regards,
    Rikard

    #1124272
    webworm72
    Participant

    I want to create a line / separator with text in the middle to span the whole page
    Unfortunately the white space/separator element in the page builder does not give you an option for text, it only allows the use of an icon in the center

    See example site below This is what what the client is looking to do, as you scroll down on page below you will see the example
    for “Give Your Legs The rest They Need” and ” Shop All Products Now”
    https://www.loungedoctor.com/

    I would need to be able adjust the color and size of the font and the line itself as far as width , color and thickness

    I appreciate any thoughts you have on this

    • This topic was modified 6 years, 8 months ago by webworm72.
Viewing 30 results - 4,891 through 4,920 (of 18,734 total)