Viewing 30 results - 1,351 through 1,380 (of 18,717 total)
  • Author
    Search Results
  • #1404739

    Hey René,

    Did you try adding the text that you want smaller on a different row below the pricing row? If you want to keep the text in the same cell, then you can format the text like this instead:

    <span style="font-size:14px;">per kwartaal</span>

    Best regards,
    Rikard

    #1404658
    Ernie4President
    Participant

    Hi,

    I would like to embed a princing table similar to the demo site.

    The pricing row contains the text “€ 67,50 per kwartaal” in large text. I would like the text ” per kwartaal” in small font similar to the Enfold demo site.

    Can you tell me how to achieve this?

    thank you,
    René

    #1404482

    have a look to the docu:
    https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options

    i do often prefer the option a little bit under the snippet: “Using images or non-Fontello icons” – so you can have multicolored icons

    this to child-theme functions.php:

    function avia_add_houzz_social_icon($icons) {
    $icons['Houzz'] = 'houzz';
    return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_houzz_social_icon', 10, 1);
    

    and f.e. something like this to your quick css:

    #top #wrap_all .av-social-link-houzz a:before{
        content: "";
        width: 20px;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
        background: url(url-to-your-houzz.png) no-repeat center center;
        background-size: contain;
    }

    you find the new entry on the end of the drop-down list.

    and on blog-layout options you will see too that new social option

    #1404477

    Hi,
    For the down chevron icon I believe that you mean like this:
    Enfold_Support_1761.jpeg
    If so try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .portfolio-preview-title::before {
      content: "\e883";
      font-family: entypo-fontello;
      font-size: 40px;
      position: relative;
      top: 6px;
      display: inline-block;
      padding-right: 10px;
    }

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

    Best regards,
    Mike

    Hey guychalk,
    Thanks for your question but this is not a feature and would not be easily achieved.
    I see that on mobile your secondary menu is at the top and the link text is large, two options that I can think of would be to decrease the font size to make the links easier to read, or make each link full width so the links are stacked instead of side-by-side. If you would like help to achieve one of these let us know.

    Best regards,
    Mike

    Hi,
    Thanks for the link to your site, in your text element you have 8 extra div’s, perhaps you copied them in error, please go to the text element and click the text tab:
    Enfold_Support_1741.jpeg
    But please note that you have set the option at Enfold Theme Options ▸ Advanced Styling ▸ P to a font size 15px that will override the text element font size:
    Enfold_Support_1743.jpeg
    so you should remove this customization first so you can choose the font size of text elements individually.
    Or you could try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #main.all_colors .avia_textblock p {
        font-size: 30px;
    }

    adjust the number to suit, after applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1404084

    Hi,

    Thank you for the update.

    In the layer slider, you can use the Device Visibility options to toggle the visibility of a specific layer. For example, you can duplicate the current text, increase its font size, and set it to be visible only on mobile view. Then, you can adjust the visibility of the original text and display it on larger screens only.

    Best regards,
    Ismael

    hyrion
    Participant

    hello, I can’t understand, I create a block of text and change the font size, only instead of having a bigger font I get more line spacing… why?

    #1403959

    In reply to: Menu font size

    Hi,
    Thanks for your patience and the link to your site, I see in your Enfold Theme Options ▸ Advanced Styling you have the Main Menu Links element with a font size three times:
    Enfold_Support_1717.jpeg
    Enfold_Support_1715.jpeg
    please try removing the two you don’t want to use and save and then clear your browser cache and check.

    Best regards,
    Mike

    #1403932

    Hi,

    Try this instead:

    .avia-content-slider .slide-entry-title a {
      font-size: 32px;
      color: red !important;
    }

    Best regards,
    Rikard

    #1403922

    Hey Julien,
    Thanks for the link to your site, have you tried placing your shortcode differently in your temple file, it sounds like the shortcode is outside the main container, or perhaps there is an unclosed div. Unfortunately your theme editor is disabled so we can’t see your child theme files.
    Please note that I would not recommend using a footer.php or a header.php in your child theme, because every so often we change these files and it becomes the top issue after updates.
    For you adding fixed content like an accordion FAQ at the bottom of a single post, I recommend injecting the shortcode, for example to add an accordion before the footer of every single post, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function insert_before_footer(){
    	if(is_single()) {
        echo do_shortcode("[av_toggle_container faq_markup='' initial='0' mode='accordion' sort='' styling='' colors='' font_color='' background_color='' border_color='' toggle_icon_color='' colors_current='' font_color_current='' toggle_icon_color_current='' background_current='' background_color_current='' background_gradient_current_direction='vertical' background_gradient_current_color1='#000000' background_gradient_current_color2='#ffffff' background_gradient_current_color3='' hover_colors='' hover_font_color='' hover_background_color='' hover_toggle_icon_color='' size-toggle='' av-desktop-font-size-toggle='' av-medium-font-size-toggle='' av-small-font-size-toggle='' av-mini-font-size-toggle='' size-content='' av-desktop-font-size-content='' av-medium-font-size-content='' av-small-font-size-content='' av-mini-font-size-content='' heading_tag='' heading_class='' alb_description='' id='' custom_class='' template_class='' element_template='' one_element_template='' av_uid='av-lg8glvl5' sc_version='1.0' admin_preview_bg=''][av_toggle title='Toggle 1' tags='' custom_id='' element_template='' one_element_template='' av_uid='av-lg8glhnz' sc_version='1.0']Toggle 1 content[/av_toggle][av_toggle title='Toggle 2' tags='' custom_id='' element_template='' one_element_template='' av_uid='av-lg8glpqw' sc_version='1.0']Toggle 2 content[/av_toggle][/av_toggle_container]");
      }
    }
    add_filter( "ava_before_footer", "insert_before_footer" );

    Enfold_Support_1705.jpeg
    Try adjusting this to suit your needs.
    Here is a link to our Hooks & Filters

    Best regards,
    Mike

    #1403916

    Hey Kathy Evans,
    Thank you for your patience and the link to your site, when I check your slider it seems the only issue is with the second slide text font is too large, please note that you can adjust the font size for each screen size in the element options:
    Enfold_Support_1703.jpeg
    changing a huge font size down for tablet will allow the buttons to show.

    Best regards,
    Mike

    #1403893

    In reply to: Blog issues

    Hi,
    To use the exact same font for the category links under each Blog entry in the grid layout as in the sidebar widgets category links I recommend this css:

    .html_modern-blog #top div .main_color .blog-categories a {
    	font-family: 'open-sans', Helvetica, Arial, sans-serif;
    	font-weight: lighter;
    	text-transform: none;
    	color: #567483;
    	font-size: 16px;
    }

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area of the expected results.

    Best regards,
    Mike

    #1403884

    Hi Rkard,
    thx- font size works, but color not with this code. Any idea?

    Best regards

    Tilman

    #1403866

    Hi,

    Please try this instead:

    .avia-content-slider .slide-entry-title a {
      font-size: 32px;
      color: red;
    }

    Best regards,
    Rikard

    #1403825

    hey Richard,
    for content and excerpt it’s fine

    -> what is the code for modifying post titles font size & color accordingly?

    I have tried
    .avia-content-slider .slide-entry-title {
    font-size: 32px;
    color: red;
    }

    … but this does not work

    Thx again & best regards Tilman

    #1403791

    Hey Tilman,

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

    .avia-content-slider .slide-entry-excerpt {
      font-size: 14px;
      color: red;
    }
    
    .avia-content-slider  a.more-link {
      color: yellow;
    }

    Best regards,
    Rikard

    #1403754

    In reply to: Menu font size

    if you sitch off your merging we can better inspect your site – but there is a rule inside your css:

    #top #header .av-main-nav>li>a {
     font-size:14px
    }

    and i think that this comes from advanced styling. And this is not your intention ?
    how did you load the cormorant garamond font?

    Kerstin
    Guest

    Hi,

    the fontsize of my frontpage on a mobile device is very small …
    Is it possible to increase the fontsize only on the frontparge and only for a mobile phone?
    If yes, how can I do this?

    Many thanks in advance again!
    Best Regards,
    Kerstin

    #1403688
    oestersund
    Participant

    Dera Team,
    on my page below I want in the blog post grid to make the title font smaller plus a different color. And a different color for the “read more” link, too

    I did not find in the forum / docs how to get this done

    Thx a lot & best regards

    Tilman

    #1403654

    Topic: Menu font size

    in forum Enfold
    grwebs
    Participant

    Hi I am having a problem increasing the font size on the main menu.

    I went to advance styling and change it under:

    Main Menu Links
    Main Menu sublevel Links

    but has not changed the size. I did clear my cache etc but cant.

    Also I want to use a different font that is not there this time.

    this is the archived look of the original site:
    https://web.archive.org/web/20220622013136/https://poshpartyeventrentals.com/tent-rentals/

    and here is the site in progress.
    posh2.bananatreenews.today

    thanks for your prompt help.

    #top .mfp-title {
      font-size: 24px;
      font-family: …
    }

    btw. for the counter:
    #top .mfp-counter

    Butterfly44
    Participant

    Hello Yigit,
    Also can you explain me where we can change size and font family for “title” under images when lightbox is open please ?
    Thank you for your answer ! Have a nice day :))
    Vanessa

    #1403371
    Butterfly44
    Participant

    Hello,
    I cant find where to change text size for buttons ? Is there a place where I can define for button, size, font weight, etc. ?
    Thank you very much and have a good day ! :)
    Vanessa

    #1403031

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

    #top .av-control-minimal .avia-slideshow-arrows a:before {
        line-height: 26px;
    }
    .responsive #top .av-large-testimonial-slider .avia-slideshow-arrows a {
        font-size: 15px;
    }

    please clear your browser cache and check.

    Best regards,
    Mike

    #1402937
    Monika
    Participant

    Hey There,

    I have some Css for the contact field and I would like to change the Color of the outline when an error happens._
    Now it’s orange but i would like to get a nice red, like the burger Icon.

    a small thing that would also be great to change:
    The lines are not straight at the ends. It looks like there are still some rounded edges working..

    thank you!

    Here’s my CSS:
    `/*kontaktformular nur Linien*/

    #top div .av-dark-form .input-text, #top div .av-dark-form input[type=text], #top div .av-dark-form input[type=input], #top div .av-dark-form input[type=password], #top div .av-dark-form input[type=email], #top div .av-dark-form input[type=number], #top div .av-dark-form input[type=url], #top div .av-dark-form input[type=tel], #top div .av-dark-form input[type=search], #top div .av-dark-form textarea, #top div .av-dark-form select, div div .av-dark-form .button {
    border-style: none;
    border-bottom: solid;
    border-color: black;
    }

    #top div .av-dark-form .input-text, #top div .av-dark-form input[type=”text”], #top div .av-dark-form input[type=”input”], #top div .av-dark-form input[type=”password”], #top div .av-dark-form input[type=”email”], #top div .av-dark-form input[type=”number”], #top div .av-dark-form input[type=”url”], #top div .av-dark-form input[type=”tel”], #top div .av-dark-form input[type=”search”], #top div .av-dark-form textarea, #top div .av-dark-form select, div div .av-dark-form .button {
    border-width: 3px !important;
    }

    /*kontaktformular ohne Schatten beim Eingeben*/
    #top input[type=”text”]:focus, #top input[type=”password”]:focus, #top input[type=”email”]:focus, #top input[type=”number”]:focus, #top input[type=”url”]:focus, #top input[type=”tel”]:focus, #top input[type=”search”]:focus, #top textarea:focus {
    box-shadow: none;
    }

    /*kontaktformular Button*/
    .avia_ajax_form .button {
    padding-bottom: 18px!important;
    border-radius: 0px !important;
    border: 4px solid black!important;
    text-transform: uppercase;
    font-size: 0.9em!important;
    font-family: miller-text, serif;
    font-style: italic!important;
    font-weight: 400;
    font-style: italic;
    font-size:2em;
    text-decoration: underline;
    text-underline-position: under;
    }

    .avia_ajax_form .button:hover {
    margin-left: 5px;
    padding-bottom: 18px;
    color: white !important;
    background-color: black!important;
    opacity: 1!important;
    letter-spacing: 0.05em;
    }

    #1402803

    In reply to: Slider isues

    In the screenshot you cand see in the left that the font size of the caption content is different from the size in the right. Both slides are in the same element witch is visible only on mobile version.
    Also, in the same picture you can see my second problem, witch is the black/grey transparecy behind this caption text witch I want to change it. Change de colour, change the level of transparency.

    #1402797
    Eleina_Shinn
    Participant

    Hi,

    I’m having an issue where I’ve made the top bar larger, using CSS provided in this Forum in other places, and also increased the font size and centered the text. So now the top bar looks great, but it appears to be stealing the extra space from the logo header area and cutting off whatever is beneath the header, which appears to be up and behind the header. See screenshot: https://nimb.ws/RrGBfh

    You can see on all pages that whatever is under header area is coming up underneath it, either the slider on the home page or the title bar is getting cut off if there is one, whateverr is right underneath the header. Here’s a page with a title bar: https://seekaquatics.com/my-account/ – and

    Her’es the CSS I’ve used:

    /*STYLE TOP BAR */
    #header_meta {
    min-height: 60px;
    }

    #header_meta .phone-info {
    line-height:47px; font-size: 18px

    }

    #top #header_meta .phone-info {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);}

    I have a coming soon page up so will provide credentials. Site home page is here: https://seekaquatics.com/

    #1402627

    Hi,

    Thank you for the update.

    We are not able to reproduce the issue on Edge but you can try this css code to create more space for the fb icons on smaller screens.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      #top .phone-info div a span {
          font-size: 11px !important;
          margin-left: -5px;
      }
    }
    

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

    Best regards,
    Ismael

    #1402615
    GavinGriffiths
    Participant

    I want to make the header transparent on mobile as well as desktop. I’ve added the code in the Header documentation and it’s not showing on my phone (safari browser). On my desktop (using chrome browser) I can inspect it in mobile size and it’s working but it’s not overlaying the transparent header set-up (white font and white logo).

    Many thanks in advance!

Viewing 30 results - 1,351 through 1,380 (of 18,717 total)