Viewing 30 results - 1,651 through 1,680 (of 18,727 total)
  • Author
    Search Results
  • #1369218
    Chrilles
    Participant

    Dear support
    Can you help to see why the font size changes when hovering over the menu text on my site – see URL in Private content?
    There is no custom CSS

    Best,

    Chrilles

    #1369187

    Hi,
    thanks this looks great now.

    Did you change some settings to get there, because now every page is showing only the the shortcuts in edit mode, e.g. :

    [av_button label='Anmeldung' icon_select='yes' icon='ue80c' font='entypo-fontello' link='page,1167' link_target='' size='small' position='left' label_display='' title_attr='' color_options='' color='#af0000' custom_bg='#af0000' custom_font='#ffffff' btn_color_bg='#af0000' btn_custom_grad_direction='vertical' btn_custom_grad_1='#000000' btn_custom_grad_2='#ffffff' btn_custom_grad_3='' btn_custom_grad_opacity='0.7' btn_custom_bg='#444444' btn_color_bg_hover='theme-color-highlight' btn_custom_bg_hover='#444444' btn_color_font='theme-color' btn_custom_font='#ffffff' btn_color_font_hover='white' btn_custom_font_hover='#ffffff' border='' border_width='' border_width_sync='true' border_color='' border_radius='' border_radius_sync='true' box_shadow='' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' hover_opacity='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' id='' custom_class='' template_class='' av_uid='av-30n9kq' sc_version='1.0' admin_preview_bg='']

    #1369136

    Hey Lene,

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

    .iconlist_icon span.iconlist-char {
      font-size: 60px; 
    }

    Best regards,
    Rikard

    #1369117

    Hey woogie07,

    Please try this in Quick CSS:

    .widget_recent_entries li a {
        font-family: inherit;
        font-size: inherit;
        font-style: normal;
    }

    Best regards,
    Rikard

    fkm
    Participant

    Hi Enfold team,

    with the following CSS code I was able to reduce the vertical distance between the entry titles of the ajax portfolio preview (and also adjust the left margin and the font size) that I´m using on my page:

    .grid-entry-title {
    font-size: 17px!important;
    margin-top: -14px!important;
    margin-left: -20px!important;
    }

    The settings for the left margin and the font size also affect the smartphone view.
    However, the vertical spacing between the titles in this view remains unchanged.

    I also tried the following one but it doesn´t work:

    @media only screen and (max-width: 767px) {
    .grid-entry-title {
    margin-top: -40px!important;
    }}

    So please let me know how to decrease the vertical distance between the entry titles on mobile view (smartphones).

    Thank you very much in advance.

    Best regards,
    fkm

    #1368902

    Hi Mike,
    now I use:

    #top .alternate_color .av-open-submenu.av-subnav-menu li>ul a:hover, .alternate_color #submit, .alternate_color .avia-menu-fx, .alternate_color .avia-menu-fx .avia-arrow, .alternate_color .image-overlay .image-overlay-inside:before, .alternate_color input[type=submit], .responsive #top .alternate_color .av-open-submenu.av-subnav-menu>li>a:hover, div .alternate_color .button {
    background-color: white;
    border-color: #234029;
    font-color: #234029;
    border-color: #234029;
    font-size: 19px;
    }

    font size ist fine now, I was not successful re. modifying hover background color – what would be the correct css addition acc?

    Thx a lot, Tilman

    #1368875

    In reply to: RESPONSIVE 2022

    Hi,

    Website 1
    I checked your website on my iphone in landscape mode but it looks fine to me. Title font size is big however if you decrease it by referring to our previous replies, it should look great.

    If I did not understand the issue, could you please post a screenshot and show the changes you would like to make? You can upload your screenshots on imgur.com and post the links here.

    Website 2
    5) Sidebar
    It seems like “Do not show sidebar on smartphones” option not enabled in theme options. Could you please confirm that? If it is not enabled, then please check your custom CSS for following code

    
      @media only screen and (max-width: 767px)
    .responsive #top #main .sidebar {
      display: none;
    }
    

    You can add following code to Quick CSS and change page ID (“page-id-6968” in example below) to display sidebar on mobile on specific pages

    
     @media only screen and (max-width: 767px) { 
    .responsive #top.page-id-6968 #main .sidebar {
      display: block;
    }}
    

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

    
    @media only screen and (max-width: 990px) { 
    #header_meta {
      display: none;
    }}
    

    Best regards,
    Yigit

    #1368829

    ah, ok. And then I can add addtl specs as

    font-size: 22px;

    etc?

    #1368824
    oestersund
    Participant

    Dear Team,
    on my page below I´ve tried to modify the send button appearance using this CSSS as recommended in another post. But at my end it is not working:

    /*Formular Senden Button*/
    .main_color input[type=’submit’] {
    background-color: orange;
    color: black;
    border-color: orange;
    }
    .main_color input[type=’submit’]:hover {
    background-color: red;
    color: white;
    border-color: red;
    }

    Furthermore, I want the font buttons size bigger.

    It would be great if you can help me acc. Thx a lot & best regards Tilman

    #1368823

    Hey Ivana,

    Thank you for the inquiry.

    Did you add this css code somewhere in the site?

    #top #wrap_all .av-inherit-size .av-special-heading-tag {
        font-size: 0.8em;
    }
    
    #top #wrap_all .av-inherit-size .av-special-heading-tag {
        font-size: 1em;
    }

    Please remove the css temporarily, then toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    Hey marcyt3,

    Thank you for the inquiry.

    Looks like the css files are compressed. Did you install a css compression plugin? This is the style of the h2 element when we checked, applied in the Enfold > Advanced Styling panel.

    #top #wrap_all .all_colors h2 {
        color: #800009;
        font-size: 19px;
        font-weight: lighter;
        text-transform: none;
    }
    

    Please try to disable the css compression plugin temporarily and see if it helps.

    Best regards,
    Ismael

    #1368801

    Hi Tilman,

    Please try to add this CSS code:

    #top #wrap_all .main_color .grid-entry-title {
        font-size: 18px;
    }

    Best regards,
    Nikko

    #1368772

    Hey Tilman,

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

    h3.grid-entry-title {
      font-size: 18px;
    }

    Best regards,
    Rikard

    #1368764
    oestersund
    Participant

    Dea team,
    on my draft page below I use in the section “Ausgewählte Projekte” the grid portfolio. The item titles as “Treppenanlage Stadtvilla …” are too big. A custom CSS as the following does not help.

    .portfolio-preview-title {
    font-size: 12px;
    }

    How to I need to modify this?

    thx a lot & best regards Tilman

    #1368511
    Jason
    Participant

    Please see this link:

    https://dev.galaxypress.com/?s=stephen+king

    When you do a search the short code is showing up. Is there some CSS I can use to hid these?

    For example would not want to see:
    [av_button label='Trade Paperback' icon_select='no' icon='ue800' font='entypo-fontello' size='small' position='left' label_display='' title_attr='' color='theme-color-subtle' custom_bg='#444444' custom_font='#ffffff' link='product,20615' link_target='' id='' custom_class='' av_uid='' admin_preview_bg=''] [av_button label='Audiobook CD' icon_select='no' icon='ue800' font='entypo-fontello' size='small' position='left' label_display='' title_attr='' color='theme-color-subtle' custom_bg='#444444' custom_font='#ffffff' link='product,20527' link_target='' id='' custom_class='' av_uid='' admin_preview_bg='']

    Thank you, Jason

    #1368477
    doug123
    Participant

    hi! Can you show me how to make a linked phone number in the top bar larger?

    Thank you!

    Doug

    Well events calendar comes with a huge css rules amount – and has its own settings for widget titles

    But they come for the titles with h6 title tag. To just synchronize the settings you can do that:

    .tribe-common .tribe-common-h6 {
      border-style:solid;
      border-width:1px;
      padding:10px 0;
      border-left:none;
      border-right:none;
      margin-bottom:15px;
      border-color: #000000;
      color: #222222;
      text-align: center;
      text-transform: uppercase;
      font-weight: 600 !important;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 1.1em;
    }

    if you like to have h3 title tag on those headings too – there are ways to do it via jQuery – or have a look into settings of tribe events if you can switch the tag inside ( then the rule has to be adjusted )

    #1368249

    Hi
    i tried it here here:
    .html_av-overlay-side #top #wrap_all .av-burger-overlay li a
    {
    line-height: 1.3em;
    height: auto;
    padding: 15px 50px;
    display: block;
    text-align: left;
    text-decoration: none;
    font-size: 20px;
    }

    I would like to reduce the distance between the navigation points.
    best regards – Stefan

    #1368121

    Hello Rikard
    Thanks for your help, I deleted the plug in. When I change the font size in the CSS Hamburger Menu nothing happens. what can this be?
    Best regards Stefan

    • This reply was modified 3 years, 5 months ago by sroetheli.

    Hi,

    Thank you for following up.

    1.) You can use css to pull the combo widget upwards and position it closer to the widget title. Each widget has its own unique ID which can be used to style them.

    2.) You don’t have to keep the file compression disabled forever, only while editing the site. We actually increase the size of the text, default is 0.85em. Please try this again.

    #top .news-content {
        font-size: 0.5em;
    }
    

    OR

    #top .news-content {
        font-size: 11px;
    }
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    1.) Above the combo widget, you can add another text or html widget and use it as the title of the widget below.

    2.) Which fonts or text? The font size of the text inside the combo widget is actually quite small. You can adjust it with this css code if you like.

    #top .news-content {
        padding: 7px 0 3px 0;
        line-height: 1.7em;
        position: relative;
        overflow: hidden;
        font-size: 1em;
        display: block;
        clear: both;
        margin: 0;
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    #1367852

    Hey stefpasi,

    Could you try adjusting the font sizes for all screen sizes in the element options please? Check under Styling->Font Sizes.

    Best regards,
    Rikard

    #1367653

    In reply to: Shortcode doesn't work

    Hi,

    Thank you for the info.

    We are still not sure why the icon shortcode is not rendering inside PUM but we managed to work around the issue by applying the PUM ID directly as the class name of the h2 element.

    Example:

    
    <h2 class="popmake-6441" style="font-size: 16px;">[av_font_icon icon='ue84d' font='entypo-fontello' style='' caption='' link='' linktarget='' size='16px' position='left' color='' av_uid='av-hxbli8-1'][/av_font_icon]Grundriss KG</h2>
    

    Best regards,
    Ismael

    #1367583

    Hi,

    We are sorry for the late reply!

    1- I edited your Grid Row element and set the minimum height to 500px.

    2- Setting minimum height took care of this one as well because you already set the alignment to bottom

    4- I edited your custom CSS code and changed it to following

    
    .staffBio {
     background: rgba(255,255,255,0.6); 
      padding: 10px;
      color: #000000!important;
      font-size: 13px!important;
      line-height: 18px;
    }
    

    Please review your website :)

    Best regards,
    Yigit

    #1367539

    In reply to: Elegant blog slider

    Hi,

    Thanks for that. Please try this in Quick CSS:

    .avia-content-slider h3.slide-entry-title {
        font-size: 16px;
        color: #fff;
    }

    Best regards,
    Rikard

    #1367520

    In reply to: Shortcode doesn't work

    Hi Ismael,
    we didn’t change the login URL. You will find it in “private”.

    I’ve integrated the custom code in the functions.php (not a child), but it didn’t work:

    This is a sample of the shortcode combination:
    [popup_trigger id=”6441″ tag=”span”]
    [av_font_icon icon='ue84d' font='entypo-fontello' style='' caption='' link='' linktarget='' size='16px' position='left' color='' av_uid='av-hxbli8'][/av_font_icon]Grundriss KG
    [/popup_trigger]

    Thank you!
    Jan

    #1367427

    In reply to: RESPONSIVE 2022

    Hi,

    We are sorry for the late reply!

    Website 1
    1- Ismael’s suggestion should have fixed this. To make sure that we are on the same page, you can edit your slide and go to Styling > Font Sizes and then click on the icons to set different font size for different screen sizes – https://imgur.com/a/4BWqPWN. If this is not working for you, could you please create temporary admin logins and post them here privately so we can look into it?
    2- Glad you figured it out!

    Website 2
    1- That is because of the following custom CSS code

    
    .logo img {
      padding: 25px 0;
    }
    

    Please add following code to Quick CSS field in Enfold theme options > General Styling tab to override it on smaller screens

    
    @media only screen and (max-width: 767px) { 
    .logo img {
      padding: 5px 0;
    }
    }
    

    2- Ismael’s suggestion should work here as well. If it does not, please post WP admin logins for this website privately as well.
    3- You have couple of custom CSS code to adjust the top padding on #main. If the issue is only on Careers page, please add following code to Quick CSS

    
    @media only screen and (max-width: 480px) {
    .responsive #top.page-id-6968 #wrap_all #main {
      padding-top: 121px !important;
    }}
    

    If it is on all pages in portrait mode, please use the code as following instead

    
    .responsive #top.page-id-6968 #wrap_all #main {
      padding-top: 121px !important;
    }
    

    4- There is not enough space in your 3rd custom HTML widget area. You can either use following code to display cut off part

    
    @media only screen and (max-width: 767px) { 
    #footer .widget {
      overflow: visible;
    }
    }
    

    Or use following one to switch column to fullwidth on screens below 820px

    
    @media only screen and (max-width: 820px) { 
    #footer .flex_column {
      width: 100%;
      margin-left: 0;
    }
    }
    

    For the pages with sidebar, please go to Enfold theme options > General Layout > Dimensions and adjust “Content | Sidebar Ratio”

    Best regards,
    Yigit

    #1367425

    Thanks a lot Yigit. This worked nicely.
    For the 3rd issue where you suggest adjusting it manually on the Styling:

    3. Is there some easy way how to make Author name smaller but still match the picture size nicely? I’ve tried to set 10px but it did not change anything at the end

    3- Please edit your element and go to Styling > Font Sizes and edit “Testimonial Name Font Sizes”

    it does not work. I’ve tried few time. I’ve also configured it now and you can see it’s still big one. If I set the Name of testimonial to be 10px, nothing happens. The name is always same size for no reason..
    Any ideas why it can be and if I can somehow overcome this?

    #1367421

    Hi,

    1- Please add following code to Quick CSS field in Enfold theme options > General Styling tab and adjust padding as needed

    
    @media only screen and (max-width: 767px) { 
    .responsive #top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial {
      padding: 0px 30px;
    }
    }
    

    By default, side paddings are 70px.

    2-

    
    @media only screen and (max-width: 767px) { 
    #top .av-large-testimonial-slider .avia-testimonial-meta .avia-testimonial-image {
      width: 50px;
      height: 50px;
    }
    }
    

    Default is 80px

    3- Please edit your element and go to Styling > Font Sizes and edit “Testimonial Name Font Sizes”

    4-

    
    @media only screen and (max-width: 767px) { 
    .avia-testimonial-image {
      display: none;
    }
    }
    

    Best regards,
    Yigit

    Hey Tilman,

    Thank you for the inquiry.

    We edited the css code a bit and added the unique class name of the content slider. Please try it again.

    .av-l8rqkilm-a1c9f18a125a30ce747daaadf300bf94.avia-content-slider .slide-entry-title {
        font-size: 25px !important;
        color: white !important; 
    }

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.

    Best regards,
    Ismael

Viewing 30 results - 1,651 through 1,680 (of 18,727 total)