Viewing 30 results - 15,331 through 15,360 (of 18,732 total)
  • Author
    Search Results
  • #344870

    Topic: Recent Posts in Footer

    in forum Enfold
    elames
    Participant

    See this testing site: http://bluemontinluray.com/

    See image here: http://imgur.com/O2CaOJm

    I don’t want these images appearing next to my posts. How do I get rid of them?
    Or alternatively, if I want to show them, does this pull from featured image? I don’t want black border around the image.

    On the same image. How do I increase the size of the font here?

    Thank you.

    #344611

    Hey!

    There is probably an easier way to do this but I could not think of it.

    Try adding both the large and compact testimonials to your page and then switch to the Text editor and add this to the bottom,

    <style type = "text/css">
    .avia-testimonial-wrapper { display: none !important; }
    .av-large-testimonial-slider { display: block !important; }
    @media only screen and (max-width: 767px) {
    .avia-testimonial-wrapper { display: block !important; }
    .av-large-testimonial-slider { display: none !important; }
    }
    </style>

    What that will do is display the large testimonial and hide the compact until the screen width hits below 767px and then it will switch them.

    As for the font size looking weird go ahead and send us a link and we’ll take a look. You can make it private in your reply if you wish.

    Regards,
    Elliott

    • This reply was modified 11 years, 4 months ago by Elliott.

    Hey connect4consulting!

    It seems like you used following code and it worked fine

    home .avia-caption-content p {
    font-size: 24px !important;
    line-height: 30px !important;
    }

    Cheers!
    Yigit

    #344198
    jorgevmed1
    Participant

    I can´t seem to change the main menu font size? I have tried this by going to “enfold”, “advanced styling”, selecting the “main menu links” and changing the font size, but it does not work?

    I have also tried pasting some code lines provided in this forum in the quick css box?

    #344113

    In reply to: slideshow captions


    I want the “business as usual” caption to be on one line, without making the font size smaller.

    #344044

    In reply to: Size Font Menu

    Hey JosepLluis!

    Add this to your Quick CSS or custom.css

    #header_main a{
      
      font-size: 20px;
      
    }

    Change th font-size value to your preferred one.

    Cheers!
    Arvish

    #344027

    Hey!

    Try this instead

    h3.widgettitle{
       
       font-size:30px !important;
    
    }

    Best regards,
    Arvish

    #343996

    Topic: Size Font Menu

    in forum Enfold
    JosepLluis
    Participant

    I need to change the font size of the main menu.
    Can you help me…

    #343982

    Hi

    Please try adding !important rule as following

    .home .avia-caption-content p {
    font-size: 60px !important ;
    }

    Cheers!
    Yigit

    #343967

    Hi!

    Add this to Quick CSS or custom.css

    #recent-posts-2 h3.widgettitle{
       
       font-size:30px !important;
    
    }

    Cheers!
    Arvish

    #343960

    And one more thing: When I increase the font size of the special headline above 55, it’s been cut at the very right edge on an iPhone 5.

    Thx for your advice!

    Jan :)

    #343893

    Hi chryseis!

    Thank you for using Enfold.

    Please use this on Quick CSS or custom.css to adjust the menu padding and font size on a tablet screen size:

    @media only screen and (max-width: 1024px) {
    #top #header .av-main-nav > li > a {
    font-size: 12px;
    padding: 0 8px;
    }
    }

    You can also adjust the size of the logo wit this:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive .logo a, .responsive .logo img {
    max-height: 65px !important;
    height: 65px !important;
    top: 5px;
    }
    }

    Regards,
    Ismael

    #343872

    In reply to: icon list size

    Hi dhuet!

    Thank you for using Enfold.

    For now, you can only modify the icon size and circle with css. Add something like this on Quick CSS or custom.css:

    .avia-icon-list .iconlist_icon {
    height: 30px;
    width: 30px;
    line-height: 30px;
    font-size: 10px;
    border-radius: 500px;
    margin-right: 30px;
    margin-left: 18px;
    }

    Adjust the values.

    Best regards,
    Ismael

    #343754

    Hi!

    Please add following code to Quick CSS

    .home .avia-caption-content p {
    font-size: 60px;
    }

    Regards,
    Yigit

    #343234

    In reply to: Alt Text Size

    Hi!

    Really quite strange.

    Please add this to your Quick CSS or custom.css

    .avia_image{font-size: 12px;}

    Cheers!
    Arvish

    #343153
    This reply has been marked as private.
    #343011

    Hey D5WDesignGroup!

    Please add following code to Quick CSS in Enfodl theme options under General Styling tab

    .rssSummary { font-size: 14px; }
    a.rsswidget { font-size: 16px; }

    If that does not work, please post the link to your page

    Cheers!
    Yigit

    #342889

    Hi!

    Please add following code to Quick CSS

    .special_amp {
    font-family: inherit;
    font-style: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    color: inherit!important;
    }

    Best regards,
    Yigit

    #342871
    #342834
    koala
    Participant

    Where is the body font size setting?

    #342795
    lzevon
    Participant

    I’ve been through a number of old tickets (some referring to code in avia.js that is no longer there) trying to figure out how to get the mobile menu to appear at 1024. Currently the menu is too long and overlaps the logo.

    Also, we would like to keep the text in the icon list no taller than the slider – is there a way to piggy-back off the responsive code used for the slider image and apply it to the icon list text? Ideally this would adjust leading, font size or both to keep the list looking nice and no taller than the slider. It’s OK too if this text drops under the slider image earlier (if that’s easier).

    #342715

    Hi!

    Please add following code to Quick CSS

    .page-id-557 form { font-size: 16px; }
    label[for="pwbox-557"] { margin-top: 15px; }
    input#pwbox-557 + input[type="submit"] { padding: 14px; min-width: 120px; font-size: 18px; border-radius: 5px; }

    Regards,
    Yigit

    Hey!

    You can use the get_footer hook, try adding this at the very end of your theme / child theme functions.php file:

    add_action('get_footer', 'add_cta_before_footer');
    function add_cta_before_footer(){
    	?>
    	<div class="container_wrap" id="cta">
    		<div class="container">
    			<?php echo do_shortcode("[av_heading heading='Hello' tag='h3' style='blockquote modern-quote modern-centered' size='' subheading_active='' subheading_size='15' padding='10' color='' custom_font='' custom_class=''][/av_heading]"); ?>
    			<?php echo do_shortcode("[av_button label='Click me' link='manually,http://' link_target='' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='']"); ?>
    		</div>
    	</div>
    	<?php
    }
    

    Adjust as needed.

    Cheers!
    Josue

    #342517
    D5WDesignGroup
    Participant

    I have an RSS Feed widget on one of my pages and I cant seem to figure out how to change the font size.

    #342236

    Hi benzrecordings!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 480px) {
    .av-masonry-entry .av-masonry-entry-title { font-size: 14px; }}

    If that does not work, please post the link to your website

    Best regards,
    Yigit

    Hey onegirlrtw!

    Thank you for using Enfold.

    Please give us a link to the actual test page with the pricing tables. We would like to inspect it. You can try this:

    <div class="price-text">$33/</div><div class="month-text">month</div>
    

    Add this on Quick CSS:

    .month-text, .price-text {
    display: inline-block;
    width: auto;
    }
    
    .month-text {
    font-size: 15px;
    text-align: left;
    margin-left: -15px;
    }
    

    Best regards,
    Ismael

    #341936

    Hi!

    This code in your custom CSS is overwriting the custom Text Block font declaration:

    body, body p {
    font-size: 15px;
    }

    Regards,
    Josue

    #341917

    Hey Munford!

    1- Please try de-activating all active plugins and check if editor appears also try switching to one of the default themes.
    You can add following code to Functions.php file via FTP

    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('a').removeAttr('title');
    jQuery('img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    2- Please add following code to Quick CSS

    @media only screen and (max-width: 480px) {
    #top #wrap_all .main_color h1 {
    font-size: 36px !important; 
    }}

    Regards,
    Yigit

    #341823
    Jason Westbrook
    Participant

    Hello,
    I am experiencing a bug where I am unable to resize font size in text blocks. I was able to do it earlier today only to have it suddenly stop working. Is this a bug or something I can do? I tried reloading theme, wordpress version and rebuild from scratch. Same effect.

    #341741

    In reply to: Numbered Menu Icons

    Hey!

    You can use following code in Quick CSS field

    li#menu-item-18 > a > .avia-menu-text:after {
    content: "1";
    font-size: 9px;
    color: #FFF;
    background: #42A0BD;
    line-height: 17px;
    width: 17px;
    display: inline-block;
    text-align: center;
    border-radius: 100px;
    position: relative;
    top: -9px;
    left: 2px;
    }

    if you would like to display the number on another menu item, please simply change menu item ID. You can right click on Chrome or Firefox to inspect elements to find menu item ID’s http://i.imgur.com/HyPTCRg.jpg

    Best regards,
    Yigit

Viewing 30 results - 15,331 through 15,360 (of 18,732 total)