Viewing 30 results - 13,741 through 13,770 (of 18,734 total)
  • Author
    Search Results
  • #449267

    Hey Josue,

    Got it! Thanks!

    I have one more question,

    On my website, when clicking on “Work” or Info” it looks like the font size gets bigger than whats originally on the homepage. Do you know how to keep it the same size as when its on the homepage?

    Thanks!

    http://www.cscyran.com

    ok i found it
    so you have to know the number in your custom font (or entypo font)
    and f.e.

    
    a.extlink::after {
        content: " \e801";
        font-family: "entypo-fontello";
        font-size: 12px;
        vertical-align: top;
    }

    so i gave to these links which i should mark with it a class : .extlink and then it works

    the backslash was the thing i don’t know :wink

    Thanks Ismael. That fixed the font size on testimonial grid.
    What will the CSS change to fix the font size on the testimonial slider – I am trying to change the font size on the slider to be of same style as the one on the grid.

    Thanks for your support!!

    #449164

    Hey Nicola!

    Thank you for using Enfold.

    You can try this:

    .avia-icon-list .iconlist_icon {
      height: 32px;
      width: 32px;
      line-height: 32px;
      font-size: 15px;
      margin-right: 15px;
      margin-left: 2px;
      top: 10px;
    }

    Best regards,
    Ismael

    #449161
    strengthcoaching
    Participant

    How do I adjust the default size of the font for blog post headlines?

    Hey!

    Remove this code:

    .avia-testimonial-content p {
      font-size:90% !important;
    }

    Use this instead:

    .avia-testimonial-content {
      font-size: 90%;
    }

    Best regards,
    Ismael

    #449041

    In reply to: Create Custom Element

    HI Elliot,

    Thank you for your reply.

    As I had mentioned in my original post it is for a custom element. I want to add a strong element with a larger font size. It’s a custom element not an existing one. I do not want to change the heading tags.

    My question – is it possible to create this from the Adavnced Styling area?

    #449032
    niguli
    Participant

    Despite I followed some previous tutorial, i am no able to decrease the size of the icon list with bullet in grey.
    here is my situation
    I have already successfully decreased the title
    can you help with quick css ?
    I tried to decrease the font size, but doing this way, the symbol goes outside the grey circle…

    this is the page

    #448990

    Hey Nick!

    Your final code should be like this:

    @media only screen and (max-width: 990px) {
    	#top .main_color .mobile_menu_toggle { display: inline-block; }
    	div.container.av-menu-mobile-active { text-align: center; }
    	ul#menu-main-menu.av-subnav-menu.av-submenu-pos-center { display: none; }
    	.responsive #top .av-menu-mobile-active .av-open-submenu.av-subnav-menu{display:block;}
    	.responsive #top .av-menu-mobile-active {text-align: center; }
    	.responsive #top .av-menu-mobile-active .mobile_menu_toggle{display: inline-block;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu{display:none;}
    	.responsive #top .sticky_placeholder{height:0px;}
    	.responsive #top .av-submenu-container{top: auto !important; position: relative !important; height:auto; }
    	.responsive #top #wrap_all .av-menu-mobile-active.container {width:100%; max-width: 100%;}
    	.responsive #top .av-menu-mobile-active .av-open-submenu.av-subnav-menu{display:block;}
    	.responsive #top .av-subnav-menu > li:first-child{margin-top:-1px;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu  li{display:block; padding:0;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu > li > a{border-left:none; padding:15px 15%; text-align: left;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu > li a:before{content: "\25B6"; position: absolute; top: 15px; margin-left: -10px; font-family: 'entypo-fontello'; font-size: 7px;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu li > ul{visibility:visible; opacity: 1; top:0; left:0; position: relative; width:100%; border:none;}
    	.responsive #top .av-menu-mobile-active.av-submenu-hidden .av-subnav-menu li > ul{display: none;}
    	.responsive #top .av-menu-mobile-active.av-submenu-hidden .av-subnav-menu li > ul.av-visible-sublist{display: block;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu li > ul a{padding:15px 19%;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu li li > ul a{padding:15px 24%;}
    	.responsive #top .av-menu-mobile-active .av-subnav-menu li li li > ul a{padding:15px 29%;}
    }

    Cheers!
    Josue

    #448806

    Hi David!

    nth-child won’t work on IE8, change this part in your style.css:

    #top.page-id-13 #main > div.container_wrap:nth-child(1) .av-special-heading .av-special-heading-tag {
        text-transform: none; 
       font-weight: normal; 
    } 
    
    #top.page-id-13 #main > div.container_wrap:nth-child(1) .togglecontainer .toggler {
      background-color: #2d5a9c; 
      color: #ffffff; 
      font-size: 18px; 
      font-weight: normal; 
    } 
    
    #top.page-id-13 #main > div.container_wrap:nth-child(1) .togglecontainer .toggle_content  {
        border-width: 0; 
       border-color: #2d5a9c; 
       background-color: rgba(200,216,248,1); 
       margin-bottom: 0; 
     } 

    To:

    #top.page-id-13 #main > div.container_wrap .av-special-heading .av-special-heading-tag {
        text-transform: none; 
       font-weight: normal; 
    } 
    
    #top.page-id-13 #main > div.container_wrap .togglecontainer .toggler {
      background-color: #2d5a9c; 
      color: #ffffff; 
      font-size: 18px; 
      font-weight: normal; 
    } 
    
    #top.page-id-13 #main > div.container_wrap .togglecontainer .toggle_content  {
        border-width: 0; 
       border-color: #2d5a9c; 
       background-color: rgba(200,216,248,1); 
       margin-bottom: 0; 
     } 

    Cheers!
    Josue

    #448750

    Hey Taryn!

    You can use the following CSS to change that:

    /* All alerts */
    .mc4wp-alert {
        font-size: 22px;
    }
    /* Error */
    .mc4wp-error{
        color: red;
    }
    /* Success */
    .mc4wp-succes{
        color: green;
    }

    Regards,
    Josue

    #448713

    In reply to: Edit Main Content Font

    Hey!

    You can change the body font size here – http://a.pomf.se/duitty.png

    Best regards,
    Josue

    #448712

    Hi!

    1. Go to Appearance > Menus and uncheck “Enfold Footer Menu”
    2. Add this code to Quick CSS:

    #top .social_bookmarks li a {
        font-size: 22px;
    }

    Regards,
    Josue

    #448648

    Topic: Edit Main Content Font

    in forum Enfold
    3MD
    Participant

    I can easily see how to change the font from the Enfold theme settings in the Dashboard; however, there’s not an area under General Styling / Main Content that let’s you control the Font Size. Am I missing something? How do you edit it? And if it must be done through the Quick CSS box below … what is the exact name of the main content / body content area that I need to use? For instance, is it .main-content-area or something like that and therefore would be:

    .main-content-area {
    font-size: 26px;
    color: #5f9ed3;
    }

    Thanks!

    #448645

    Hello Josue.

    I would like my megamenu stay equal to their demo. It is not like that. Very different. Letters and large widths. Box does not fit the font size.

    Menu that does not adapt to the mobile.

    No need to model to show. Just like the megamenu stay like your example. The link below mouse over the link PAGES.

    http://kriesi.at/themedemo/?theme=enfold

    #448578

    Hi!

    Defiantly possible, you can do something like this (button has custom class of “call_us”):

    .call_us .avia_iconbox_title {
        font-size: inherit;
    
    }
    .call_us .avia_iconbox_title:after{
        content: "303023023";
        font-size: 0;
    
    }
    .call_us:hover .avia_iconbox_title {
        font-size: 0;
    
    }
    .call_us:hover .avia_iconbox_title:after{
        font-size: 14px;
    }

    Regards,
    Josue

    #448510

    In reply to: Inline label colour

    Hi!

    Seems like you have already figured it out! For the second form, please use following code

    #presseserver input[type="text"] {
    	background-color:#ffffff;
    	background: rgba(255, 255, 255, 0.75)!important;
    	font-size:14px!important;
    	color:#484848!important;
    }
    #presseserver .avia_ajax_form .text_input, #presseserver .avia_ajax_form .select, #presseserver .avia_ajax_form .text_area {
    	background-color:#ffffff;
    	background: rgba(255, 255, 255, 0.75)!important;
    	font-size:14px!important;
    	color:#484848!important;
    }

    Regards,
    Yigit

    #448497

    In reply to: Create Custom Element

    Hi Vincent!

    Which element is it? If it’s a heading for example then you can give it a custom class like this.

    <h2 class = "customH2">Hello</h2>
    

    And then add this to your Quick CSS field.

    .customH2 { font-size: 24px !important; color: red !important; font-weight: bold !important; }
    

    To style it.

    Best regards,
    Elliott

    #448444
    entrepreneur41
    Participant

    Hello,

    I’ve got an H1 Special Heading and a Subheading below at size 20. How can I increase the space between the Special Heading and the Subheading. It looks just a bit cramped with the larger subheading font.

    Thank you for a great product,
    Mike

    #448439

    In reply to: Another H2 size topic

    Hey!

    Can you please try adding following code to Style.css file of your child theme in Appearance > Editor

    h2 { font-size: 10px !important; }

    Cheers!
    Yigit

    #448438

    :-)

    it will be a Subhead, but we haven’t choose the correct font size at that moment

    ssasi
    Participant

    I am having issues setting up the font size to be of consistent size on testimonial grid and sliders.

    1. On testimonial grid, the first testimonial’ font size is bigger than the rest of the testimonials.
    2. Font size on testimonial slider are much bigger than the font size on the testimonial grid

    Currently using the following CSS rule in Quick CSS

    .avia-testimonial-content p {
      font-size:90% !important;
    }
    #448315

    In reply to: Another H2 size topic

    Update: Also tried manually (ftp) adding this code to custom.css (in themes/enfold/css folder)
    h2 { font-size: 10px; }

    but no joy there either..

    #448309

    Topic: Another H2 size topic

    in forum Enfold
    ksdominant
    Participant

    Sorry for posting a question that has been answered many times but the provided solutions didn’t work so I’ve posted a link to my site below.

    I’ve tried:
    Editing enfold child, advanced styling, h2 tag, font size.
    Also tried:
    adding code to quick css under enfold child, general styling, quick css”

    h2 {
    font-size: 10px; !important;
    }

    (added the!important; bit when the rest didn’t work.
    Please help. (let me know if you need login details)

    • This topic was modified 10 years, 10 months ago by ksdominant.
    #448233

    In reply to: Inline label colour

    This reply has been marked as private.
    #448188

    Hey strengthcoaching!

    Thank you for using Enfold.

    1.) What is the current position of the social icons? We would like to see the actual page. Please post the url here.

    2.) You can edit the post then add the link manually. Use the link tag. Refer to this link for more info, scroll to the “HTML Links – Image as Link” section: http://www.w3schools.com/html/html_links.asp

    3.) Add this in the Quick CSS field:

    .avia-no-number {
      opacity: 1;mal;
    }

    4.) Use this to adjust the progress bar title:

    .progressbar-title {
      font-size: 20px;
    }

    Regards,
    Ismael

    #448175
    tarynw
    Participant

    Hi Team Kriesi,

    I’ve tried to find a solution for this, but couldn’t seem to find anything that worked. What CSS would I need to add to change the form title and success message font size?

    I would like to make the form title look like the special heading (H4) styling to tie in with the rest of the page.

    Also, I would like the form success message to be H6 and be able to change the colour please.

    Thank you so much,

    Taryn

    #448159

    In reply to: Search box resize

    Hi!

    Try to replace the code with this:

    .avia-search-tooltip.avia-tt {
    	position: fixed !important;
    	min-width:900px !important;
    	max-width: 900px !important;
    	left:10% !important;
    	top:30% !important;
    	background-color: white;
    	z-index: 99999;	
    	margin: 0 !important;
    }
    
    .avia-search-tooltip.avia-tt {
    	width: 100%;
    	max-width: 1310px;
    }
    
    #top #searchsubmit, .ajax_load {
    	width: 100px;
    	height: 100%;
    }
    #top #s {
    	width: 100%;
    	font-size: 50px;
    }
    #top #searchform div {
    	max-width: 100%;
    }

    Best regards,
    Ismael

    #448058

    Topic: Header changes

    in forum Enfold
    dabomb
    Participant

    I wanted to know how I can increase the font size of the menu text. Also in the restaurant demo, the header has a slight transparent white background with a bottom line. I am using the business demo, who do I make that change in the theme settings?

    n_elbouzidi
    Participant

    Hi,

    Is it possible to change the font size of the secondary menu to the same size as the primary menu?
    Now it is a much bigger font..

    Please see my website: http://www.farahsramadan.nl/home-2

    Thanks.
    Naima

Viewing 30 results - 13,741 through 13,770 (of 18,734 total)