Viewing 30 results - 6,121 through 6,150 (of 18,738 total)
  • Author
    Search Results
  • #1019437

    Hi Katharina,

    Thanks, I was looking at the wrong page, it’s always a good idea if you link directly to where we can see the element in question. Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
    .responsive .avia_responsive_table .avia-data-table td:before {
        display: block;
        font-style: none;
        font-size: 16px;
        text-transform: uppercase;
    }
    }

    Best regards,
    Rikard

    #1019430

    Hi Victoria,

    ive changed already allot posts whit setting the align to the left that worked but offcorse u can check my css.

    in custom css ive added the follow:

    
    .single-post strong, .blog strong { color: black!important; }
    #footer strong { color: #aaaaaa!important; }
    
    #top #wrap_all ins:before {
    display: none !important;
    }
    
    .small-preview {
    width: 180px;
    height: 180px;
    }
    
    #top #wrap_all #main h3.widgettitle {
    font-size: 20px;
    font-weight: bold;
    }
    
    #top .fullsize .template-blog .post .entry-content-wrapper > * {
        max-width: 100%; !important;
    }
    
    .big-preview img {
        max-height: 400px !important;
    }
    
    @media only screen and (max-width: 767px) {
        max-height: 150px !important;
    } }
    

    Hi Carsten,

    For the font-size you can use the css snippets you have and it should work, if it doesn’t use the !important after the value to make sure it isn’t overriden by other css.
    As for the color, you can use the css placeholder for that:

    #top .main_color input[type="text"]::-webkit-input-placeholder {
      color: #35bcd1;
    }
    
    #top .main_color input[type="text"]::-moz-placeholder {
      color: #35bcd1;
    }
    
    #top .main_color input[type="text"]:-ms-input-placeholder {
      color: #35bcd1;
    }
    
    #top .main_color input[type="text"]:-moz-placeholder {
      color: #35bcd1;
    }

    Best regards,
    Nikko

    Good Evening Folks,

    because that the thread isn’t already closed I come up with two new short questions
    to the same theme. :-)

    How can I change the font-size in the text-fields? And how can I change the colour
    of the words: Name / E-Mail / Message / etc.?

    I already have these css-snippets from you:
    ———————————————————————————————–
    #top .main_color input[type=”text”] , #top .main_color select
    {
    background-color: #ffffff;
    color: #35bcd1;
    }
    #top .main_color textarea{
    background-color: #ffffff;
    color: #35bcd1;
    }
    ———————————————————————————————–
    But with them I only can change the colour of the typing text. ;-) So, hwo can I
    change the other two things?

    Best regards
    Carsten

    Hi Rikard,

    I tried your suggested code. Still didn’t work. Am I missing something?

    Appreciate your help on this.

    Nik

    
    /*Change caption title size and position, remove dash*/
    
    .home .avia-caption-title {
      font-size:15px !important;
    }
    
    .home .avia-caption-title::after {
      display:none;
    }
    .home .avia-caption-title { 
        position: absolute;
        left: 0 px;
        bottom: 10px;
    }
    #1018922
    ronaldalexander
    Participant

    Hey,

    i just used this CSS to display the “MENU” Text before hamburger menu.

    /*————————*/
    /* Add word menu next to hamburger icon
    /*————————*/
    .av-hamburger strong {
    display: block!important;
    position: absolute;
    left: -90%;
    top: 0;
    font-size: 20px;
    transform: translate(-90%, -44%);
    }

    ———————-
    My questions are …

    1.) How can i change the Text?
    2.) How can i remove the MENU when i click onto the menu? I use the fly out menu, an if I click the menu, the menu text is overlapping the menu. If the menu is active, i want to remove the text.

    3.) I use the submenu on mobile too, can i get those links to buttons only on mobile?

    thanks for helping me, ronald

    #1018747

    Hi,

    Thanks for the update.

    Adjust the code a bit.

    .single-post h1 {
      font-size: 16px !important;
    }

    You can set the font in the Enfold > General Styling > Fonts panel.

    Best regards,
    Ismael

    #1018707

    this is the CSS:

    .header_color .main_menu ul:first-child > li > a {font-weight: 400; font-size: 16px; font-family:’Helvetica Neue’}
    .header_color .main_menu ul:first-child > li > a:hover { color: #03558f; }
    .header_color .main_menu ul:first-child > li.current_page_item > a { color:#03558f; }

    .main-title a {
    color: #03558f !important;
    font-size: 24px !important;
    }

    .avia-menu {
    border-right: 0px !important;
    }

    .iconbox_content_title {
    font-size: 15px!important;
    }

    #footer a {
    padding: 0;
    }
    #footer input {
    margin-bottom: 0;
    }

    .leaflet-control-attribution.leaflet-control {
    display: none;
    }

    @media only screen and (max-width: 767px){
    .responsive #socket .sub_menu_socket {
    display: block !important;
    }}
    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
    display: block !important;
    }}

    @media only screen and (max-width: 1100px) {
    #mobile-advanced, #advanced_menu_toggle, #advanced_menu_hide { display: block; }
    nav.main_menu { display: none; }}
    #wrap_all {
    position: relative !important;
    }

    #footer .iconbox { margin-bottom: 10px!important; }
    #footer .iconbox p { margin-top: 0 !important; }
    #footer .iconbox .iconbox_content .iconbox_content_title { margin: 0!important; }

    #footer .mc4wp-form-fields input[type="text"] {
    margin-bottom: 0 !important;
    }

    #header_main_alternate {
    border-top-color: transparent;

    #1018687

    In reply to: additional button

    Hey MarcusEls,
    If I understand correctly, you would like a button to reset the form after it’s been submitted so it can be used again. To do this we will create a button that will reload the page, please enter this code in a code block element:

    <script>
    jQuery('.reload').click(function() {
        location.reload();
    });
    </script>
    [av_button label='Refresh' link='manually, link_target='' size='medium' position='center' label_display='' icon_select='yes' icon='ue88f' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-76dew' custom_class='reload' admin_preview_bg='']

    and place the code block under your form.

    Best regards,
    Mike

    marihonaa
    Participant

    Thanks

    #1018620
    biteandsip
    Participant

    It should be easy but it’s not working.

    I’ve changed the font size in the General Styling section under the Fonts tab.

    I changed the font size in the Advanced Styling section.

    Please advise! Thank you.

    L.R.

    Hi Jordan,

    Thanks for your suggestion. They work when I view the page on Edge and IE, but not Firefox. Still couldn’t remove the dash line. I used the coding below.

    Any tips is much appreciated.

    Nik

     .home .avia-caption-title::after {
      display:none;
    }
    
    .home .avia-caption-title {
      font-size:15px !important;
    }
    
    .home .avia-caption-title { 
        position: absolute;
        left: 0 px;
        bottom: 20px;
    }
    
    #1018402

    Hey flylanddesigns,
    Thank you for the mockup, to make the page full width, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #main .template-shop .container:first-child {
    	max-width: 1800px !important; 
    	padding: 0px !important;
    }
    #top #main .template-shop .container:first-child .page-thumb img {
    	width: 100% !important; 
    }
    #top #main .template-shop .container:first-child div .products .product {
        width: 14.25% !important; 
    }

    this should give you room for two sidebars, please add them so we can make final adjustments.
    If I could suggest making the sidebars hidden on tablet and smaller screens, because it will be easier to look at, and be easier to navigate.

    To make the post titles smaller, try this css & adjust to suit:

    h2.woocommerce-loop-product__title {
    	font-size: 14px !important;
    }

    To remove the grid border, try this css:

    .main_color div {
    border-color: transparent !important; 
    }

    Best regards,
    Mike

    #1018385

    Hi,
    Sorry for the late reply, to change the font style for the blog page and all blog posts we can help with some css to effect only those pages. For example:

    #top.page-id-18 p,#top.page-id-18 h2 a, #top.single-post p,#top.single-post h1 a,#top.single-post h2,#top.single-post h2 span{
    font-family: "HelveticaNeue" !important; 
        color: #222 !important; 
    }

    The “page-id-18” is your blog page, and all posts will have “single-post” in them, Then we just add the elements that you want to effect, such as paragraphs (p), links, (a), and headings (h1,h2)
    So you can use this css to try setting your own styles, or if you explain what you would like we can assist.

    You can set your default sidebar settings at Enfold Theme Options > Sidebar Settings in combination with choosing a sidebar in the widgets area to have only certain sidebar on pages vs posts or archives. For further control you can use the plugin Widget Options easily assign pages visibility and restrict each widgets on different pages, posts, custom post types, categories, tags and custom taxonomies.

    To change the “next” and “previous” posts order you can go to your posts listing and use the “Quick Edit” option under the title if you hover over them and change the date or time to change the order.
    2018-10-05_225810
    Or you can use the plugin Post Types Order to drag & drop the order.

    I logged it to look at your top phone number, and I tested with many sizes, and recommend adding this code in the General Styling > Quick CSS field instead of your current css to manage your phone number font size:

    @media only screen and (min-width: 500px) { 
    #top #header_meta .phone-info a,#top #header_meta .phone-info span {
    	font-size: 30px !important;
    	line-height: 30px !important; 
    	padding: 0px !important;
    }
    }
    @media only screen and (max-width: 499px) { 
    	#top #header_meta .phone-info a,#top #header_meta .phone-info span {
    	font-size: 17px !important;
    	line-height: 17px !important; 
    	padding: 0px !important;
    }
    }

    For mobile device sizes it’s the max size without breaking the singe line, and it’s much larger for larger devices.
    Feel free to adjust the sizes to suit.

    Best regards,
    Mike

    #1018079
    scotthco
    Participant

    Hi Guys:

    I’m using a table element, Table Options / Table Design = Default. On the Edit Table tab, the font looks normal for the Heading Row and the Default Row, but for the Pricing Row it’s HUGE. And this is in Edit mode; it’s fine in the front end. Any idea why this would be and if there’s a way I can fix it? The table in question is going to need more rows like this, and while it’s fine for site visitors, it’ll be a pain for admins and editors. FYI – I’m not actually using this for prices. I’m using it so I can target those rows with CSS. I can’t use Default or Heading row as I’m using those already for headings and regular text, and I can’t use Button row because that automatically inserts buttons. I’m pasting a link to a screen shot in the private content below.

    Thanks!

    Scott

    #1017995
    hylandgraphics
    Participant

    Hey guys,

    I am trying to hide the buttons and text on the full scree slider but have been unsuccessful. I had this CCS from while back but it does not seem to be working now. Can you assist? Thanks!

    @media only screen and (max-width: 768px) {
    .slideshow_caption { padding: 5px; }
    h2.avia-caption-title {
    font-size: 20px;
    }
    #top .avia-slideshow-button { margin-top: 5px; }}
    @media only screen and (max-width: 480px) {
    .slideshow_caption {
    display: none;
    }}

    #1017994
    NeilJC
    Participant

    Hi everyone,
    I have been asked to paste the below the home page of a customers website. We want the fields to display on one line at the top of the home page. We have been playing with the code and although we can get the fields to display on one line using an html tester (Tryit Editor), we cannot get it to display on one line when pasted into the code block element.

    Can someone tell us where we are going wrong please?

    <form id=”onvioSignIn” action=”https://onvio.co.uk/api/security/v2/sessions/login&#8221; method=”post”><input name=”firmId” type=”hidden” value=”552604″ />

    <style>#onvioSignIn>{display:inline;margin:7px;}#onvioSignIn>a{font-size:.7em}</style><label for=”onvioEmail”>Email</label>
    <input id=”onvioEmail” spellcheck=”false” maxlength=”250″ name=”username” required=”” type=”text” />
    <label for=”onvioPassword”>Password</label>
    <input id=”onvioPassword” autocomplete=”off” maxlength=”50″ name=”password” required=”” type=”password” />
    <input type=”submit” value=”Sign In” />
    Forgot Password?
    </form>

    Thank you
    Neil

    #1017988

    Hi Mike,

    thank you very much for the fast reply! It works well!
    I added three parameters to change the line height as well as the font size. It looks okay, but maybe you could double check it :)

    
    @media only screen and (min-width: 767px) { 
    #socket .sub_menu_socket {
        float: none !important;
    }
    #socket .sub_menu_socket ul {
        text-align: center;
        margin-bottom: 6px;
        font-size: 14px;
    }
    #socket .sub_menu_socket li {
        float: none !important;
        display: inline;
    }
    }
    
    @media only screen and (max-width: 766px) { 
    #socket .sub_menu_socket li {
        float: left !important; 
        display: block !important; 
        width: 100% !important; 
        text-align: left !important; 
        font-size: 14px;
        line-height: 1.5;
    }
    }
    

    Best regards and thanks
    Max

    Edit: Should I save this CSS addition in a separate file in the child theme or is it sufficient to place it in the “Quick CSS” area?

    #1017736

    Hey marihonaa,

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

    .single-post * {
      font-family:verdana !important;
      font-size:16px !important;
    }

    Best regards,
    Rikard

    #1017681

    Hi,

    In addition to my questions above. I need help with the top header bar with the Phone number. I found some CSS code and added it to the top of my CSS quick settings which made the bar it’s in taller which is good. However, I need to make CALL US NOW: and the phone number larger font.
    In mobile, the phone number gets chopped and needs to be on the same line and with a good working font. It’s messed up for some reason.

    This is the code I added to quick CSS:

    /*Added below code for top header phone number */
    #header_meta .container, #header_meta { min-height: 20px; height: 45px; }
    #top #header_meta a,
    #top #header_meta li,
    #top #header_meta .phone-info {
    font-size: 24px;
    padding: 15px;
    }
    @media only screen and (max-width: 990px) {
    #top #header_meta a,
    #top #header_meta li,
    #top #header_meta .phone-info {
    font-size: 16px;}
    }

    #1017619
    Max
    Participant

    Hi everyone,

    I am trying to display the footer menu in a left aligned style on mobile devices.
    I added the following code to the CSS area to customize the footer menu. That looks fine:

    
    #socket .sub_menu_socket {
        float: none !important;
    }
    #socket .sub_menu_socket ul {
        text-align: center;
        margin-bottom: 6px;
    }
    #socket .sub_menu_socket li {
        float: none !important;
        display: inline;
    }
    footer a {
    font-size: 14px;
    }
    

    But what do I have to add to show the menu left aligned on mobile devices?

    Thanks a lot in advance!
    Best regards
    Max

    #1017584

    Hi there!
    I have a shortcode button [av_buttonrow_item label='REQUEST FREE CONSULT' link='manually,https://app.acuityscheduling.com/schedule.php?owner=16684187?iframe=true' size='medium' label_display='' icon_select='no' icon='5' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-3y48lo']
    [/av_buttonrow]

    It is not opening the iframe, just reloading the page to the new one.

    Is there anything I need to change in the shortcode for the target or link to make this open in a pop up?

    I created a thread specific to this question but did not get any feedback and I need to finish the site today.
    Thank you!

    CloudChoice
    Participant

    Hi,

    I’m using this code as fix header in all pages.
    It’s basically some elements inside a Code Block, which is inside a Color Section

    [av_section min_height='custom' min_height_px='100px' padding='no-padding' shadow='no-border-styling' bottom_border='no-border-styling' id='bback' color='main_color' custom_bg='#32a5d2' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' custom_class='' av_uid='av-amk7hlb']
    
    [av_codeblock wrapper_element='' wrapper_element_attributes='' custom_class='' av_uid='av-11xx47j']
    [av_sidebar widget_area='HAMBURGUER' av_uid='av-9p9s20f']
    <div class="centrotitulo">[page_title]</div>
    [/av_codeblock]
    
    [/av_section]

    My intention is to apply the same code in Posts, Tags and Categories. For this I used the “ava_after_main_container_mod ()”
    And with some minor adaptations resulted in this code:

    add_action( 'ava_after_main_menu', 'ava_after_main_container_mod', 10 );
    function ava_after_main_container_mod() {
    if( !is_single(15255) && !is_tag(79) && !is_category(101) ) return;
    
    	$output  = '';
    	$output .= do_shortcode("
    [av_section min_height='custom' min_height_px='100px' padding='no-padding' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='' id='bback' color='main_color' background='bg_color' custom_bg='#32a5d2' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0' av_uid='av-32zbqxs' custom_class='']
    
    [av_textblock wrapper_element='' wrapper_element_attributes='' av_uid='av-2gpcv34' custom_class='']
    [av_sidebar widget_area='HAMBURGUER' av_uid='av-bm8mys']
    <div class='centrotitulo'>[page_title]</div>
    [/av_textblock]
    
    [/av_section]
    
    [av_hr class='invisible' height='100' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' custom_class='ajuste-espaco' admin_preview_bg='' av_uid='av-1ofdwyo']
    
    ");
    	echo $output;
    
    }

    The problem is that the code breaks CATEGORIES and TAGS, and in POTS it results in something close to the OBJECTIVE, but still with problems.

    Any suggestions for code change?

    Thanks

    #1017570
    marihonaa
    Participant

    How can I change the default blog post font size and font face?

    Thanks

    #1017568

    In reply to: All my

    Hey,

    Could you please try uploading your icons in double size? Also, please see – https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons- :)

    Regards,
    Yigit

    #1017375
    OhYa1337
    Participant

    Hello,
    The Main Menu Bar background is covering the logo on hover,
    what would be the CSS for changing it to transparent?
    (Screenshot showing what I mean)
    http://prntscr.com/l1j6fi

    here is my present css for the menu area

    span.avia-menu-text {
        vertical-align: text-top !important;
        padding-bottom: -20px !important;
    }
    .sub_menu>ul>li>a, .sub_menu>div>ul>li>
    a {
    font-size: 12px;
    }
    .header_color .sub_menu > ul > li > a:hover, a:active {
        background-color: #d50000;
        color: white !important;
    }
    .phone-info {
        font-size: 12px;
    }
    span.avia-menu-text {
    text-transform: uppercase;
    }
    #1017332
    TulahStyle
    Participant

    Hi enfold team , thanks so much for your continued support ;

    Currently i am having an issue removing the date from products in my search results and in my search query .

    I Previously referred to an enfold help post where two snippets of code we’re recommended, however neither snippet of code worked

    .post-meta-infos {
        display: none;
        font-size: 12px;
        position: relative;
        top: -8px;
    }
    .header_color .ajax_search_excerpt { display: none; }
    #1017325

    Hi,
    If you are using a child theme you can edit the Enfold theme files and load them from within.
    You will want to edit two files:

    \enfold\includes\admin\register-widget-area.php
    \enfold\framework\php\class-sidebar-generator.php

    If you are not using a child theme you can still edit the two files and save copies of them to your computer and re-upload them each time you update the theme, as they will be overwritten with each update.

    In the files just change all of the “h3” to what you want:

    'before_title'  => '<h3 class="widgettitle">', 
    'after_title'   => '</h3>'

    such as “p” for example. You may want to add some custom css to make your new tag match your site style, such as color and font size.
    If you want to use some javascript to make these changes instead, just let us know, but in that case the h3 will still show in a site audit.

    Best regards,
    Mike

    #1017313

    Hi,

    Thanks for the login. About this text: “removed since requested by user”, it won’t flow all the way across from end to end at any point since the text will wrap. It looks like it will look pretty nice if you set the font size to 37 pixels instead of 40 though. Could you try that out?

    Did you get the other problem with the coming soon page sorted out?

    Best regards,
    Rikard

    • This reply was modified 7 years, 6 months ago by Rikard.
    #1017213

    Hi Florinek,

    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 (min-width: 768px) and (max-width: 1320px) {
      #top .no_margin.av_one_fourth {
          width: 25%;
          padding: 10px 30px !important;
      }
      .avia-button.avia-size-large {
          padding: 13px;
          min-width: 105px
      }
      body .av-special-heading .av-special-heading-tag {
        font-size: 20px;
      }
    }
    
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

Viewing 30 results - 6,121 through 6,150 (of 18,738 total)