Viewing 30 results - 18,241 through 18,270 (of 18,727 total)
  • Author
    Search Results
  • #162631

    Hi,

    You should add following code to Quick CSS

    .av_promobox .avia-button {
    background-image: none;
    font-size: 13px;
    font-weight: normal;
    transition: background 0.5s; -webkit-transition: background 0.5s; }
    .av_promobox .avia-button:hover { background-color:blue; border-color: #88bbc8; transition: background 0.5s; -webkit-transition: background 0.5s; transition: border-color 0.5s; -webkit-transition: border-color 0.5s;  }

    Regards,
    Yigit

    #162465

    In reply to: Icon Size

    Hi Fabiana,

    Please add following code to decrease the font-size and center the icon
    .avia-icon-list .iconlist_icon { line-height: 25px!important; font-size: 20px!important; }
    Can you post a screenshot showing how you would like to align the text? You can use http://imgur.com/

    Regards,
    Yigit

    #162426

    Hi Voicepro,

    You can increase font size and change text color by adding following code to Quick CSS in Enfold theme options under Styling
    .sub_menu { font-size: 13px; }
    .sub_menu>ul>li>a { color: red!important; }

    I hope that helps you

    Regards,
    Yigit

    #162342

    Hi Alex,

    This CSS will do it:

    .av_promobox .avia-button {
    background-image: none;
    font-size: 13px;
    font-weight: normal;
    }

    Regards,
    Josue

    #162295
    voicepro
    Participant

    Hello. My client http://shinecharlotte.com wants the VERY TOP HEADER TABS, “Book Appointment” and “Gift Certificates” to really STAND OUT. They wanted it “in a box to be more easily seen.”

    I have NO idea how to do such.

    Would it be possible to either (a) ENLARGE the font to somewhere between the current size of the phone number and a bit larger, or (b) create some sort of BORDER that would make it “pop” ?

    I tried making the BACKGROUND a different color, but the “secondary color” of the current site — yellow — was TOO DISTRACTING.

    Thank you!

    voicepro
    http://shinecharlotte.com

    #162177

    Hi Peter,

    I was hoping that after the conversion, it would become something small in size. But I agree with what you just said.

    So I will stick with the default fonts.

    Thank you again for spending your time answering my question and writing me detailed instructions. I really appreciate it!

    Thank you,

    #162174

    Tbh it makes no sense to use a custom font if the file size of the font file is 14mb. It probably takes 1 – 3 minutes for the browser to download the font file and the user won’t notice the font anyway because he probably leaves the webpage before the browser can load the custom font & replace the default font with your 14mb font. In addition it will slow down the website loading time and the user will see an ugly “text flash” when the 14mb font is loaded. Especially users with mobile devices and slow internet connections will leave your website because of the long loading times. If your font file is bigger than 500kb I strongly suggest to stick with the default web safe fonts (see http://www.kendraschaefer.com/2012/06/chinese-standard-web-fonts-the-ultimate-guide-to-css-font-family-declarations-for-web-design-in-simplified-chinese/ ). I also found this article: http://www.wiliam.com.au/wiliam-blog/web-design-sydney-chinese-web-fonts – maybe you can use the justfont service instead of font face fonts to embed a custom font.

    #162117

    For item #3 I found a solution that alters only the Title text font and color and doesn’t affect the breadcrumb links on the right side.

    This may not work for your site. I’m using “Fixed header with Social Icons and additional navigation” for my header.

    For title text color add to Custom CSS or Quick CSS

    #top .alternate_color.title_container .main-title a { color: #CCC; }
    change the color # to whatever value you would like.

    For title text font attributes add to Custom CSS or Quick CSS

    #top .title_container .main-title { font-size: 16px; font-weight: bold; }
    change these values to whatever you would like–the font-size affects the size of the breadcrumbs box.

    Good luck,
    Chad

    #162021

    Hi,

    1. This will change the height without affecting the dropdowns:
    #top .main_menu .menu > li > a, #header_main .container{ height: 65px !important; line-height: 65px !important}

    2. This one will change the color of the current-menu-item to red:
    #top .main_menu .current-menu-item > a{ color: red}

    3. And this will change the color/size of the text and links inside the breadcrumb container respectively.
    .breadcrumbs span{ color: red !important; font-size: 21px !important; }
    .breadcrumbs a{ color: blue !important; font-size: 21px !important; }

    Regards,
    Josue

    #161811

    In reply to: Kriesi Logo

    Hi,

    Here’s the code that makes that behavior happen:

    #top .subtext{float:left; position: relative;}
    #top .logo img{float:left;}
    .logo, .logo a{overflow: visible;}
    #top .logo-title{  
    transition: 		opacity 0.4s ease-out;
    -moz-transition: 	opacity 0.4s ease-out;
    -webkit-transition: opacity 0.4s ease-out;
    -o-transition: 		opacity 0.4s ease-out;
    font-size: 12px; color: #000; position: absolute; left:7px; top:-7px; opacity: 1; white-space: nowrap; } 
    #top .logo-subtitle{ color: #aaa; top:7px; }
    #top .header-scrolled .logo-title{ opacity: 0; filter: alpha(opacity=0); }
    

    However, i think you also need to alter the HTML.

    Regards,
    Josue

    • This reply was modified 12 years, 6 months ago by Josue.
    #161805

    Hi Yigit,

    http://imotec.nl/

    .container_wrap {
    clear: both;
    position: relative;
    z-index: 1;
    border-top-style: solid;
    border-top-width: 0px;
    }

    .main_color h2 {
    color: #0075ad;
    }

    .main_color h4 {
    color: #0075ad;
    }

    .main_color .widget_nav_menu ul:first-child>.current-menu-item, .main_color .widget_nav_menu ul:first-child>.current_page_item {
    background: #ffffff;
    }

    .widget_nav_menu ul:first-child>.current-menu-item, .widget_nav_menu ul:first-child>.current_page_item {
    padding-left: 51px;
    left: -51px;
    top: 1px;
    margin-top: -1px;
    padding-top: 1px;
    width: 100%;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    }

    .header_color .main_menu ul:first-child > li > a {
    color: #a1c0dd;
    }

    .main_menu .menu ul li a {
    background-color: #0076ad;
    color: #a1c0dd;
    }

    .header_color .main_menu .menu ul li a {
    background-color: #0076ad;
    color: #a1c0dd;
    }

    #top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a {
    color: #ffffff;
    }

    body .alignright {
    float: right;
    margin: 4px 0px 0px 20px;
    display: block;
    }

    embed {
    margin: 0px 0px 0px 20px;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    }

    Best regards,

    Pieterjan

    #161639

    For help, here is the HTML code with a strange ‘autoPlayVideos : true’ … and as you can see my iframe with “autoplay=0″.

    Thanks for help.

    <div id=’layer_slider_1′ class=’avia-layerslider main_color avia-shadow avia-builder-el-0 avia-builder-el-first container_wrap fullsize’ style=’height: 351px;’ ><script type=”text/javascript”>var lsjQuery = jQuery;</script><script type=”text/javascript”>
    lsjQuery(document).ready(function() {
    if(typeof lsjQuery.fn.layerSlider == “undefined”) { lsShowNotice(‘layerslider_3′,’jquery’); }
    else if(typeof lsjQuery.transit == “undefined” || typeof lsjQuery.transit.modifiedForLayerSlider == “undefined”) { lsShowNotice(‘layerslider_3’, ‘transit’); }
    else {
    lsjQuery(“#layerslider_3″).layerSlider({
    width : ‘100%’,
    height : ‘350px’,
    responsive : true,
    responsiveUnder : 1140,
    sublayerContainer : 1140,
    autoStart : true,
    pauseOnHover : false,
    firstLayer : 1,
    animateFirstLayer : true,
    randomSlideshow : false,
    twoWaySlideshow : true,
    loops : 0,
    forceLoopNum : true,
    autoPlayVideos : true,
    autoPauseSlideshow : ‘auto’,
    youtubePreview : ‘maxresdefault.jpg’,
    keybNav : true,
    touchNav : true,
    skin : ‘fullwidth’,
    skinsPath : ‘http://www-test.mines-telecom.fr/wp-content/themes/enfold/config-layerslider/LayerSlider/skins/&#8217;,
    globalBGColor : ‘transparent’,
    navPrevNext : true,
    navStartStop : true,
    navButtons : true,
    hoverPrevNext : true,
    hoverBottomNav : false,
    showBarTimer : false,
    showCircleTimer : true,
    thumbnailNavigation : ‘disabled’,
    tnWidth : 100,
    tnHeight : 60,
    tnContainerWidth : ‘60%’,
    tnActiveOpacity : 35,
    tnInactiveOpacity : 100,
    imgPreload : true,
    yourLogo : false,
    yourLogoStyle : ‘left: 10px; top: 10px;’,
    yourLogoLink : false,
    yourLogoTarget : ‘_self’,
    cbInit : function(element) { },
    cbStart : function(data) { },
    cbStop : function(data) { },
    cbPause : function(data) { },
    cbAnimStart : function(data) { },
    cbAnimStop : function(data) { },
    cbPrev : function(data) { },
    cbNext : function(data) { }
    });
    }
    });
    </script><div class=”ls-wp-fullwidth-container”><div class=”ls-wp-fullwidth-helper”><div id=”layerslider_3″ class=”ls-wp-container” style=”width: 100%; height: 350px; margin: 0px auto; “><div class=”ls-layer” style=”slidedirection: right; slidedelay: 13000; durationin: 1500; durationout: 1500; easingin: easeInOutQuint; easingout: easeInOutQuint; delayin: 0; delayout: 0; timeshift: 0; transition2d: all; “>Slide background<h1 class=”ls-s-1″ style=”position: absolute; top:80px; left: 300px; slidedirection : top; durationin : 1000; durationout : 1000; easingin : easeInOutQuint; easingout : easeInOutQuint; delayin : 1000; delayout : 0; showuntil : 0; font-size:45px; font-weight:normal; line-height:1.25; text-shadow:0 1px 1px rgba(0,0,0,.7); padding-top: 10px; padding-right: 10px; padding-bottom: 10px; padding-left: 10px; color: #ffffff; white-space: nowrap;”> Former </h1><h1 class=”ls-s-1″ style=”position: absolute; top:150px; left: 350px; slidedirection : bottom; durationin : 1000; durationout : 1000; easingin : easeInOutQuint; easingout : easeInOutQuint; delayin : 5000; delayout : 0; showuntil : 0; font-size:45px; font-weight:normal; line-height:1.25; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,.7); white-space: nowrap;”> Innover </h1><h1 class=”ls-s-1″ style=”position: absolute; top:210px; left: 410px; slidedirection : right; durationin : 1000; durationout : 1000; easingin : easeInOutQuint; easingout : easeInOutQuint; delayin : 9000; delayout : 0; showuntil : 0; font-size:45px; font-weight:normal; line-height:1.25; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,.7); white-space: nowrap;”> Créer </h1></div><div class=”ls-layer” style=”slidedirection: right; slidedelay: 4000; durationin: 1500; durationout: 1500; easingin: easeInOutQuint; easingout: easeInOutQuint; delayin: 0; delayout: 0; timeshift: 0; transition2d: all; “>Slide background<p class=”ls-s-1″ style=”position: absolute; top:10px; left: 50px; durationin : 1000; durationout : 1000; easingin : easeInOutQuint; easingout : easeInOutQuint; delayin : 0; delayout : 0; showuntil : 0; font-size:200px; opacity:0.2; text-align:right; white-space: nowrap;”> #1 </p><p class=”ls-s-1″ style=”position: absolute; top:90px; left: 100px; slidedirection : top; durationin : 1000; durationout : 1000; easingin : easeInOutQuint; easingout : easeInOutQuint; delayin : 1000; delayout : 0; showuntil : 0; font-size:50px; font-weight:normal; line-height:1.25; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,.7); text-align:right; width: 350px; white-space: nowrap;”> Premier </p><p class=”ls-s-1″ style=”position: absolute; top:150px; left: 100px; slidedirection : bottom; durationin : 1000; durationout : 1000; easingin : easeInOutQuint; easingout : easeInOutQuint; delayin : 1000; delayout : 0; showuntil : 0; font-size:30px; color:#fff; text-shadow:0 1px 1px rgba(0,0,0,.7); text-align:right; width: 350px; line-height: 36px; “> groupe de grandes écoles d’ingénieurs et de managers en France </p><div class=”ls-s-1″ style=”position: absolute; top:15px; left: 550px; durationin : 1000; durationout : 1000; easingin : easeInOutQuint; easingout : easeInOutQuint; delayin : 2000; delayout : 0; showuntil : 0; z-index:10; white-space: nowrap;”> <iframe src=”http://player.vimeo.com/video/39412670?title=0&byline=0&portrait=0&color=c3512f&autoplay=0&#8243; width=”515″ height=”289″ frameborder=”0″ webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe> </div></div></div></div></div></div><div id=’after_layer_slider_1′ class=’main_color container_wrap fullsize’ ><div class=’container’><div class=’template-page content twelve alpha units’><div class=’post-entry post-entry-type-page post-entry-734′><div class=’entry-content-wrapper clearfix’>
    <div class=”flex_column av_one_third first avia-builder-el-1 el_after_av_layerslider avia-builder-el-first “>
    <div class=”iconbox iconbox_left avia-builder-el-2 avia-builder-el-first “><div class=”iconbox_content”><div class=”iconbox_icon heading-color avia-font-entypo-fontello”>📖</div><h3 class=”iconbox_content_title”>A la une</h3><p>Click here to add your own text</p>
    </div></div>

    #161629

    Hi,

    Glad you figured it out :) Let us know if you have any other questions

    Regards,
    Yigit

    #161605

    Hi Peter,

    Thank you for the detailed instructions.

    I tried to upload the font but it complained it was too big to upload. The font is about 14Mb in size. Is there another way to do it?

    Thank you,

    #161595

    Got it!
    #top .news-content {
    font-size: 12pt
    }
    :-)

    #161585
    manuelredle
    Participant

    Hi,
    I’m developing this homepage: http://www.rocket-science.ch/wp
    Login: guest, guest
    In the “Latest News” section on the home screen I’d like to have font size 16pt. Is it possible to adjust this easily via quick css?
    Thx!

    #161568

    Hi,

    1.) You can add this on your custom.css or Quick CSS:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .main_menu ul:first-child > li > a {
    padding: 0 8px;
    font-size: 12px;
    }
    }

    2.) It should be full width even when you shrink the screen. You can check the demo. Did you modify anything on the css? Please check LayerSlide WP > Slide > Global Settings > Slider width. The value should be 100%. and make sure that “Full-width slider” is on.

    3.) You can add this on your custom.css or Quick CSS to adjust the table layout on mobile device.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
     .easy-table th, .easy-table td {
    padding: 3px;
    font-size: 10px !important;
    }
    
    .easy-table-header.tablesorter-headerDesc {
    width: 100px !important;
    }
    
    .easy-table-header.tablesorter-headerAsc .tablesorter-header-inner {
    width: 100px;
    }
    }

    4.) No, the feature is still not available. You can refer to this link: https://kriesi.at/support/topic/youtube-icon/

    Regards,
    Ismael

    • This reply was modified 12 years, 6 months ago by Ismael.
    #141151

    In reply to: embed twitter widget

    this is the code i’m using

    <!-- BEGIN: Twitter website widget (http://twitterforweb.com) -->
    <div style="width:236px;font-size:8px;text-align:right;"><script type="text/javascript">
    document.write(unescape("%3Cscript src='http://twitterforweb.com/twitterbox.js?username=grypmx&settings=1,0,3,236,236,f4f4f4,0,c4c4c4,101010,1,1,336699' type='text/javascript'%3E%3C/script%3E"));</script>Created by: <a href="http://twitterforweb.com">twitter website widget</a></div>
    <!-- END: Twitter website widget (http://twitterforweb.com) -->

    #138208

    Hi Andy,

    You are using !important the wrong way, do it like this:

    font-size: 2.5em !important;

    Regards,

    Josue

    #29624
    jmsfurn
    Participant

    I am trying to create an Slider with text in Tangerine. I successfully did this by changing the themes heading font to Tangerine. However this made the rest of the site become hard to read.

    Using the font change option in the Slider, if I type in Tangerine it shows as a font that looks like Times New Roman.

    Can you please help. Preferably I would like a Tangerine style font on all my headings however the size of the small headings in pages like Portfolio become unreadable.

    #140806

    Hi,

    Try changing that to:

    .avia-testimonial-subtitle { font-size: 300%; color: #ffffff !important;}

    If it doesn’t work please post a link to your website.

    Regards,

    Josue

    #141035

    Hi,

    It only happens when font size is 17px. You can change it to 18px by adding following code to Quick CSS in Enfold theme options

    h4 { font-size: 18px!important; }

    Regards,

    Yigit

    #29492
    JaakkoMedia
    Participant

    Hi,

    first of all: awesome theme!

    I have a problem though changing the font color of the testimonial subtitle. When I put the following in the custom css, the size does change but the color doesn’t.

    .avia-testimonial-subtitle { font-size: 300%; color: #ffffff;}

    Please help!

    #138917

    In reply to: Text Block font size

    Thank you Ismael.

    #141018

    Ismael,

    This is what I found from a css file of one such website that uses this “Microsoft Yahei” font.

    @charset “utf-8”;

    /* CSS Document */

    *{ margin: 0; padding: 0 }

    body, button, input, select, textarea, font { font-size:12px;font-family:”Microsoft Yahei”,tahoma, sans-serif; color:#181818;}

    h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight:normal }

    em { font-style: normal }

    ul, ol { list-style: none }

    img { border: 0 }

    *html{

    background-image:url(about:blank);

    background-attachment:fixed;}

    .clear{ clear:both}

    See it has it as part of the font-family?

    Thanks,

    #140992

    In reply to: Font Size

    Hi,

    style.css does nothing to the look of the page, add it either to the Quick CSS section or the custom.css file, regarding the option for font-size you could request it here.

    Regards,

    Josue

    #140991

    In reply to: Font Size

    I’m using a child theme. This doesn’t work if I add it to style.css. Do I need to add something else there?

    It does work if added under Styling options.

    Also it’s kind of add that there is no option for font size like a drop down or something. Any plans to do that? Thanks for your help.

    #140990

    In reply to: Font Size

    Hi,

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

    body { font-size: 18px!important; }

    Regards,

    Yigit

    #29558

    Topic: Font Size

    in forum Enfold
    omakad
    Participant

    How do you change the font size of the text in the main body? I can’t find it anywhere.

    #138980

    Try changing this custom css you have:

    .main_menu ul:first-child > li > a {
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    margin-right: 20px;
    padding: 80px 9px;
    text-decoration: none;

    instead of using 300 for the font-weight try just normal:

    .main_menu ul:first-child > li > a {
    display: inline-block;
    font-size: 13px;
    font-weight: normal;
    margin-right: 20px;
    padding: 80px 9px;
    text-decoration: none;

    That seemed to fix it on my end. Not sure why Safari has an issue with it or if that is truly the cause but it worked via dev tools.

Viewing 30 results - 18,241 through 18,270 (of 18,727 total)