Viewing 30 results - 14,941 through 14,970 (of 18,733 total)
  • Author
    Search Results
  • #371253

    Now I have compleet freedom to optimize my fonts and line distance. Thanks to you!. But I like to put my bullet lines closer together than the normal lines, so I address them separately. The next step is to increase the font size a bit of the Enfold Latest News widget I use very often.

    Cheers, Joost.

    #371205
    #371148

    Hey ML!

    Em is relative to the font size currently set to the parent element, in most cases it would be to this body rule set in css/base.css:

    body {
    	font: 13px/1.65em "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    	color: #444;
    	-webkit-text-size-adjust: 100%;
     }

    If you want to have different font sizes depending on screen size you’d need to use some media queries:

    @media only screen and (max-width: 480px) {
    body{ font-size: 18px; }
    }
    @media only screen and (max-width: 767px) {
    body{ font-size: 16px; }
    }
    @media only screen and (max-width: 989px) {
    body{ font-size: 14px; }
    }

    Regards,
    Josue

    #371145

    Yes, you can have them combined by the way:

    ul, p {
      font-size: 0.8em;
      line-height: 1.8em;
    }

    Cheers!
    Josue

    Hi,

    Try with this:

    @media only screen and (max-width: 479px) {
        .responsive #socket .sub_menu_socket { 
            display: block !important; 
        }
        #socket .container { 
            text-align: center; 
        }
        #socket .container span, #socket .container nav {
            float: none !important;
            display: inline-block !important;
        }
        #socket .sub_menu_socket li {
            float: none;
            text-align: center;
            width: 100%;
            margin: 15px 0;
            border: 0;
        }
        #socket{
            font-size: 14px;
        }
    }
    

    Adjust as needed.

    Regards,
    Josue

    #371124

    Ok, Thanks, got it working with the logo on the right and the menu left.
    I added this CSS:

    .site_title {font-size:3em;color:#ccc;position: relative;top:-15px;font-family:'Crimson Text'; }
    .av-main-nav > li > a { line-height: 190px !important; }

    However, when I activate the shrink header on scroll function, I’d like to make the site title a bit smaller, and move the menu up with a certain amount of pixels. How would I do that?

    #371121
    ML
    Participant

    Hi Guys,

    I increase my font size section to font-size: 1.250em; , another to font-size: 15px;

    it results in same font size length in my mobile. I thought px is non scable and em is?
    Is it because enfold theme features or setting?

    This reply has been marked as private.
    #371093

    Try with this code in Quick CSS:

    p {
      font-size: 0.8em;
      line-height: 1.8em;
    }

    Regards,
    Josue

    #371090

    New Enfold theme of 19 december 2014 with fixed too big font size: http://josdeurloo.nl/implantologie/

    Old Enfold theme with nicely working font size editing: http://rembrandtkliniek.com/wallen-onder-ogen/

    Thanks for your quick reply,

    Joost van der Laan

    #371083
    JoostvanderLaan
    Participant

    In my “old” Enfold theme the code: body { font-size: 0.9em; } works fine to change the basic font size. But in my last (4th) Enfold theme (of 18 dec 2014) the basic font size is way too big and this code only changes the line distance but not the font size.
    I am thinking of copying my old (2nd) Enfold theme to my new website, but I do not know if that gets .me in trouble (by using the theme twice for different websites)..
    Thanks for your solution,
    Joost van der Laan

    PS:

    #371044

    Hi JoostvanderLaan;
    I’ve done this to have 15px size

    body p{ font-size: 110% !important; margin: 0 0 0.85em 0 !important; line-height: 1.35em !important;}

    #371042

    This works on my site:
    body {
    font-size: 15px;
    }

    #371040
    JoostvanderLaan
    Participant

    Hi, I am developing my 4th Enfold website. This time the font size is much bigger than before. I can change the header sizes easely but not the font size of normal text in Advanced Styling. I tried body {font-size:14px; } in the quick CSS of Main Content, but that only changes the distance between the lines but not the font size. Please help me. Thanks
    PS: my RembrandtKliniek.com site has very small fonts; my site in development JosDeurloo.nl has too big fonts.

    Hi Elliot:

    I already had tried it as both a code-block as well as a text element, and for me the error errors in both scenarios.

    Q: Did you change the page and save it the way you think it should be?

    If not, can you make these changes, and save the results on the homepage at http://conference-app-system.com/polymash15/wp-admin/post.php?post=11&action=edit&message=1

    I have placed a code-block there, with the button code, and the error is still occurring.

    When clicking update, the Avia layout builder hangs as described…

    If you could show me the fix in action, I appreciative it hugely!

    Many Thanks, Juergen

    PS, the full HTML button code and javascript from leadpages is as follows:

    <a href="https://my.leadpages.net/leadbox/14268b373f72a2%3A147f64e27b46dc/5662329727352832/" target="_blank" style="background-color: rgb(33, 200, 199); color: rgb(255, 255, 255); text-decoration: none; font-family: Helvetica, Arial, sans-serif; font-weight: bold; font-size: 16px; line-height: 20px; padding: 10px; display: inline-block; max-width: 300px; border-top-left-radius: 2px; border-top-right-radius: 2px; border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; text-shadow: rgba(0, 0, 0, 0.247059) 0px -1px 1px; box-shadow: rgba(255, 255, 255, 0.498039) 0px 1px 3px inset, rgba(0, 0, 0, 0.498039) 0px 1px 3px; background-position: initial initial; background-repeat: initial initial;">Click Here to Download >></a><script data-leadbox="14268b373f72a2:147f64e27b46dc" data-url="https://my.leadpages.net/leadbox/14268b373f72a2%3A147f64e27b46dc/5662329727352832/" data-config="%7B%7D" type="text/javascript" src="//my.leadpages.net/leadbox-824.js"></script>

    • This reply was modified 11 years, 3 months ago by JuergenB.
    #370988

    Hey!

    You can use this CSS for the toggle titles.

    .toggler { font-size: 20px; color: red !important; }
    

    Regards,
    Elliott

    #370953

    hey,

    Font-size ist für Schriftgröße.
    Text-decoration für effekte wie unterstrichen.
    Benötigt wird hier text-transform.

    h1, h2 {
        text-transform: none !important;
    }

    Bei interesse ist hier mehr Info dazu: http://www.w3schools.com/cssref/pr_text_text-transform.asp

    #370834

    Hey!

    Open up /enfold/config-templatebuilder/avia-shortcodes/masonry-entries.php and change line 640 from this.

    $output .= 		"<a class='av-masonry-pagination av-masonry-load-more' href='#load-more' {$data_string}>".__('Load more','avia_framework')."</a>";
    

    To this.

    $output .= do_shortcode("[av_button label='Load More' link='manually,#load-more' link_target='' size='medium' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='av-masonry-load-more']");
    

    Cheers!
    Elliott

    #370827

    Hi!

    Try adding this.

    @media only screen and (max-width: 479px) {
    .av-catalogue-content { font-size: 10px !important; }
    }

    Cheers!
    Elliott

    • This reply was modified 11 years, 3 months ago by Elliott.
    #370818

    Hi addwebtoday!

    Try adding this to your custom CSS.

    @media only screen and (max-width: 479px) {
    h1.av-special-heading-tag { font-size: 16px !important; }
    h2.av-special-heading-tag { font-size: 15px !important; }
    h3.av-special-heading-tag { font-size: 14px !important; }
    }

    That will reduce their size on smaller screens.

    Cheers!
    Elliott

    #370779

    Hey bosbach!

    If this is for SEO purposes then you’ll need to open up /enfold/includes/admin/register-widget-area.php and change all of the H3 to H4. There are quite a few of them.

    echo "<h3 class='widgettitle'>" . $title . "</h3>";
    

    If your just trying to change their size then you can use CSS.

    #footer .widgettitle { font-size: 14px !important; }
    

    Regards,
    Elliott

    #370731
    addwebtoday
    Participant

    Hello,

    I have customized the back to top button but users are still having issues understanding it (unfortunately)

    I want to add font size 12px color black text to the Back To Top box like below with the arrow icon above the text

    Back to Top

    Example URL: http://schneidercentre.com/plastic-surgery/patient-testimonials/

    Below is the CSS I am using to customize it so far:

    
    #scroll-top-link {
    color: #ffffff;
    border: 1px solid #7777;
    background-color: #777;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    width: 60px;
    line-height: 60px;
    opacity: 1;
    right: 10px;
    bottom: 10px;
    position: fixed;
    }
    
    #scroll-top-link:hover {
    color: #ffffff;
    border: 1px solid #7777;
    background-color: #ff3a3a ;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    width: 100px;
    line-height: 60px;
    opacity: 1;
    right: 10px;
    bottom: 10px;
    }
    

    -I’d like to also make the arrow move up in position 5 px or so with the transition ease-out effect
    -Is it possible to swap out the arrow icon for a slightly bigger arrow? Upon hover, I’d like the arrow to expand to a larger arrow icon

    Thank you for all your help on this! I think this is a drastic UX improvement for the average user who still has issues navigating a mobile browser in general. I will be sharing an example on twitter once finished and will give a shout out to Kriesi!

    addwebtoday
    Participant

    Hello!

    I am having issues with icon alignment on mobile. I really like how the icons appear horizontally on browsers, but they align completely vertical and centered on mobile. I’d like to make it so they appear in rows.

    In my example images, I have 5 icons in a row at 40px on mobile. I am also using the following CSS to make them smaller on mobile:

    
    @media only screen and (max-width: 767px) {
    .av-icon-char {
        font-size: 20px !important;
        padding: 10px !important;
    }}
    

    -I’d like the icons to scale with the dimension of the phone and stay on the same line.
    -If you think that it may cause issues, I’d like to have the icons get pushed down to a second horizontal row and center them base don how many are there.
    -Lastly, do you have any better recommendations for handling the scale of icons from larger to smaller screens? My solution works, but isn’t exactly ideal as it’s done in pixels and doesn’t adjust per tablet -> mobile

    I believe the first solution would be the most ideal. Thank you for all your help!

    #370711
    addwebtoday
    Participant

    The special heading looks good on tesktop, but has alignment issues on all browsers on mobile. I’m using an iphone 5 iOs 8 but I also see the issues on Google page speed insights, as well as android devices.

    Is there a way to account for the special heading font size on a device specific case? Is it possible to us a % instead of a px based css styling for the font size vs the current one, or would that not be as beneficial? I really like the special headings and want them to be able to adapt appropriates on mobile. I also don’t want to just have the text snap below as it will cut the word in half. I’m looking to have it adjust vs create a line break just to fit the word.

    You can also see that the lines aren’t aligned in the center as well.

    Thank you for all your help and having a great theme!

    #370672

    In reply to: Testimonial Pointer

    Still experimenting with Enfold, so no link.

    Possibly the triangle in question would be avia-arrow? It extends from the bottom of the testimonial box.

    You can see it on http://kriesi.at/themedemo/?theme=enfold-overview in the Testimonial Slider.

    There is a tiny circular image of the person. To the right of that image is their name and title.
    Above the circle is a box with the quote from the person.

    Below that quote box, but above the circular image is a tiny little nib/triangle — that is what I’d like to increase the size of, if possible.
    Is it an image? Or part of the font?

    Thanks for checking this out!

    #370595
    birgitmonteiro
    Participant

    Dear Support-Team,

    I am currently working on a website with Enfold and several issues came up that I cannot solve. Hope you can help:

    For you information, I adjusted the css a little. The whole custom CSS is as the following:

    a:focus { background: #e2001a; color: black }
    
    .grid-entry-title {
    	font-weight: 700;
    	color: white !important;
    	vertical-align: middle;
    	text-align: center;
    	background-color: transparent !important;
    	height: 30px;
    	/*font-size: 1vh;*/
    }
    
    .grid-content {
    	background-color: #e2001a !important;
    	padding-left: 5px;
    	padding-right: 5px;
    }
    
    .title_container .main-title {
    	font-size: 24px;
    	font-weight: 700;
    }
    
    .avia-menu-text {
    	font-size: 18px;
    }

    1. The custom menu on my frontpage is broken.
    Frontpage: http://birgit-monteiro.de/
    Surprisingly it works on all other sites?!

    2. On the following portfolio-sites the post-thumbnails are not displayed:
    http://birgit-monteiro.de/portfolio-item/birgit-monteiro/
    http://birgit-monteiro.de/portfolio-item/im-parlament/

    working portfolio site for example:
    http://birgit-monteiro.de/portfolio-item/fuer-menschen-mit-behinderung/

    3. It seems to me that the changes I made on the site are not instantly visible. This seems not to be a browser related problem, because I already deleted the cache and it still remains…

    I hope you can help…

    #370549

    Hi Ismael,

    awesome, it worked!

    One more thing: How can I change the Toggle Titles font size and colour?

    Thanks and cheers,
    Jan :)

    #370450

    Hey Marcelo!

    Change your layout from 1/3 to 1/2 columns to make more space for the titles and/or reduce its font size:

    strong.news-headline {
        font-size: 11px;
        line-height: 13px;
    }

    Cheers!
    Josue

    #370440

    Hey!

    Try with this in General Styling > Quick-CSS:

    h1{
    font-size: 24px !important;
    }
    h2{
    font-size: 18px !important;
    }

    Cheers! 
    Josue

    #370390
    This reply has been marked as private.
Viewing 30 results - 14,941 through 14,970 (of 18,733 total)