Viewing 30 results - 11,401 through 11,430 (of 18,743 total)
  • Author
    Search Results
  • #624866

    Hi,

    Where did you add the code? Add it in the Quick CSS field or the style.css file. Remove browser cache or hard refresh the page to see the effect.

    .iconbox_content_container {
        font-size: 18px !important;
    }
    
    .iconbox_content_title {
        font-size: 1.6em !important;
    }

    This should adjust the font size of the iconbox title and content. This will help you better understand css: http://kriesi.at/archives/wordpress-developers-your-complete-guide-to-conquering-css-in-2016

    Best regards,
    Ismael

    #624739

    In reply to: Child Theme

    Hi,

    If you want the custom font, been everywhere use the following

    * {
    font-family: ‘din_lightregular’, Tahoma, Geneva, sans-serif;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4em;
    }

    let us know if that works

    Best regards,
    Basilis

    #624706

    In reply to: Child Theme

    Thank you i used font face method, with chid theme i but it all the files and in style.css i had :

    @font-face {
    font-family: ‘din_lightregular’;
    src: url(‘ufonts.com_din-light-webfont.eot’);
    src: url(‘ufonts.com_din-light-webfont.eot?#iefix’) format(’embedded-opentype’),
    url(‘ufonts.com_din-light-webfont.woff2’) format(‘woff2’),
    url(‘ufonts.com_din-light-webfont.woff’) format(‘woff’),
    url(‘ufonts.com_din-light-webfont.ttf’) format(‘truetype’),
    url(‘ufonts.com_din-light-webfont.svg#din_lightregular’) format(‘svg’);
    font-weight: normal;
    font-style: normal;

    }
    body {
    font-family: ‘din_lightregular’, Tahoma, Geneva, sans-serif;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.4em;
    }

    But I want the police in all of website and in enfold i don’t know where I can turn on this option ?

    #624487

    Hi!

    Your custom CSS is working correctly. As mentioned earlier I too see that the font weight is 100 please check attached screenshot . If you have any doubts please right click on the h1 and inspect it and scroll down a bit until you see the below css :)

    h1 {
        font-size: 48px!important;
        line-height: 65px!important;
        margin: 0px 0px 0.37em 0px;
        font-weight: 100!important;
        font-style: normal!important;
        font-family: "Lato"!important;
        color: #ffffff !important;
        text-transform: none !important;
    }

    Cheers!
    Vinay

    #624306

    Hi,

    It’s not working because you have this code in the Quick CSS field:

    #top #wrap_all .header_color h2, #top #wrap_all .main_color h2, #top #wrap_all .alternate_color h2, #top #wrap_all .footer_color h2, #top #wrap_all .socket_color h2 {
        font-size: 24px;
        text-transform: none;
    }

    Best regards,
    Ismael

    #624129
    andreki
    Participant

    Hello!!

    So I am displaying a text in a fullwidth slider, which works fine on a desktop screen but cuts off the text on smartphones. I did check in the forum for solutions and found this code:

    @media only screen and (max-width: 768px) {
    .slideshow_caption { padding: 20px; }}
    @media only screen and (max-width: 480px) {
    .responsive #top .slideshow_caption h2 {
    font-size: 14px !important;
    }}

    @media only screen and (max-width: 768px) {
    .avia-slideshow-inner, .avia-slideshow-inner img {
    height: 1000px !important;
    }
    }

    .av_slideshow_full li img {
    width: 150% !important;
    max-width: 150% !important;
    margin-left: -25%;
    }

    I changed it a bit and it does kinda work but now it still cuts off a little bit of the text. How can I tweak that?

    Thank you!

    Thanks Jordon but it doesn’t work.

    I put in the following. The phone number color is correct and the right size font, but the background color of the top phone/social media bar color did not change. See private content below. Whatever color you make the menu dropdown hover, is the color it makes the top phone bar background. I need it to be a different color than the hover color. Not sure why these aren’t separate color choice settings. See site below. Thanks.

    .phone-info span {
    color:white !important;
    font-size: 14px;
    }
    #top #header_meta .phone-info {
    color: #8cc43d !important

    yes9310
    Participant

    I would like to make the top phone bar color a different color then the menu hover color. This is what I have in the Quick CCS, Can you tell me what I need to add to this? Many thanks.

    .phone-info span {
    color:white !important;
    font-size: 14px;
    }

    #623700

    Try reducing the amount of horizontal padding here:

    .responsive #top .av-menu-mobile-active .av-subnav-menu > li > a {
        padding: 6px 10%;
        font-size: 14px;
    }
    #623461

    Hey!

    1.
    To re-size fonts only and not images please use a plugin like
    https://wordpress.org/plugins/wp-font-resizer/screenshots/
    https://wordpress.org/plugins/zoom-widget/
    https://wordpress.org/plugins/font-resizer/

    2.
    To re-size logo please use the below CSS

    .responsive .logo img {
        margin: 0;
        max-width: 160px;
    }

    3.
    To make the mu look like the example link

    Change menu position in Enfold > Header > Header Layout > Menu and Logo Position > Logo Left, Menu Below

    Then add the following CSS in Quick CSS

    #top #wrap_all .header_color .av-menu-button-colored > a:hover .avia-menu-text {
        background-color:#000;
    }     
    #top #wrap_all .header_color .current_page_item > a:hover .avia-menu-text {
        background-color:#000;
    }

    4.
    In page layout options please remove breadcrumbs.

    5.
    The reason you lose custom modification is because the theme files get over written and the solution for this is to use a child theme and add your modifications. please check http://kriesi.at/documentation/enfold/using-a-child-theme/

    Request you to kindly open new tickets for new issues if they are not related so we can keep the focus on main topic and avoid confusion.

    Regards,
    Vinay

    #623439

    Hi!

    Not a problem. We added a extra bit of code for large monitors

    
    @media only screen and (min-width: 1400px) {
    #top #wrap_all .header_color h1 {
        font-size:70px;
    }
    }

    Please review the site now and let us know…

    Cheers!
    Vinay

    #623311

    If you are using either Chrome or Firefox, use the developer tools to show you which css element has the font-size attached to it, then change the font-size for the active selector in either quick css or your child-theme’s style.css file. If that doesn’t work, post a link to your site and temporary admin login credentials in the private content area so that a moderator can give you more specific directions.

    HTH.

    #623226
    DickZirkzee
    Participant

    Cant seem to find how I can change the font size of the active menu item. Looking for an hour nw and it should be simple
    http://www.debeweging.info/wordpress I want to make “Dick Zirkzee Coaching” in the grey area as bog as the menu font size
    thanks in avance
    Dick

    #622843

    I would like to style the heading on the blog category page to match the heading on the standard site pages.

    The heading style I am using throughout the site has the thin line following the text that runs to the edge of the page.

    As I can’t use a drag and drop special heading on the category pages I have edited the archive.php file and address some additional styling.

    I can match the font size and color on the category page, but don’t know how to get the line also.

    Any ideas?

    Thanks for your assistance.

    Ben

    #622803
    scheitmann
    Participant

    Hi,

    I am trying to get the slider buttons on a Content Slider to look the same as on a Simple Slider.

    Simple think to do: I just copied the following code snipet from the Simple Slider to quick css:

    #top .avia-smallarrow-slider-heading {
    top: 50%;
    position: absolute;
    }
    
    #top .avia-smallarrow-slider .avia-slideshow-arrows a {
        display: block;
        text-decoration: none;
        color: #fff;
        visibility: visible;
        position: absolute;
        width: 60px;
        text-align: center;
        height: 60px;
        line-height: 62px;
        font-size: 25px;
        top: 50%;
        margin: -30px 15px 0;
        z-index: 99;
        overflow: hidden;
        text-indent: -600%;
    }

    It is indeed working as intendet. Just the small white arrow doesnt align centered, but aligned to the top. Any idea how to change that?
    Here is what it looks like: http://i.imgur.com/c4cFCAk.png

    edit: Seems like I am getting an “invalid property value” for the “margin: -30px 15px 0;” but I don’t know why or how to fix it.
    edit2: Fixed the margin error. Arrow still not moving.

    Thanks in advance,
    Christian

    • This topic was modified 10 years ago by scheitmann.
    #622745

    Hey mcraig77,

    You can try something like this in Quick CSS:

    #layerslider_1 .avia-color-dark {
    color: red !important;
    font-size: 30px !important;
    }

    Regards,
    Rikard

    #622698

    Hey!

    We are working on your ticket please wait while we update the results here soon.

    Please hard refresh to clear the browser cache and review the site now we have added the below CSS

    .html_header_top.html_logo_center .logo {
        width:100%;
        text-align:center;
        padding-top:20px;
    }
    
    @media only screen and (max-width: 970px) {
    .html_header_top.html_logo_center .logo {
        left: 10%!important;
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important;
        padding-top: 40px;
        text-align:left;
    }}
    
    #header #header_main_alternate .container {
       background-color: #2C3E50; 
       min-width:100%;  
    
    }
    
    #top #wrap_all .header_color h1 {
        color: #e74d3c;  
        font-family: 'Gruppo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        white-space: nowrap;
        font-size:4vw;
    }
    
    .avia_mega > li:nth-child(1) > a:nth-child(1) {
    display: none!important;
    }
    #top .av-submenu-container {
        height: 65px;
        position: absolute;
        width: 100%;
        border-bottom-style: solid;
        border-bottom-width: 1px;
        -webkit-perspective: 1000px;
        -webkit-backface-visibility: hidden;
        font-size: 14x;
        color: #585c96!important;
        font-family: 'Questrial'!important;    
    }

    Best regards,
    Vinay

    • This reply was modified 10 years ago by Vinay.
    #622556
    Eleina_Shinn
    Participant

    See Landing Page here: http://thejourneythrough.com/splintered-hearts-book-opportunity/

    In Advanced Settings: changed H5 and H6 Fonts and Sizes… and they are reflected in this landing page in the first 4 White Text Sections… then at the bottom of the page, I’ve tried over and over again to replicate what I’ve done in those sections, using h5 and h6, but text size will not change – I’ve tried switching out columns and color sections, doing it a zillion different ways… no cigar.

    Just updated this theme to 3.5.4 today.

    #622512
    Itai
    Participant

    Hello,

    I’m trying to use the thin weight (100) variant of lato for my H1 but I can’t get it display with the correct weight on my pages. Be it in a text block or a special heading

    https://www.google.com/fonts/specimen/Lato#charset

    I have tried defining h1 in an external style sheet (enfold child) but none seem to work. They seem closer to the ‘normal’ 400 weight
    My definition is :
    h1 {
    font-family: “Lato”;
    font-weight: 100 !important;
    font-size: 36px;
    text-transform: none !important;
    }

    thanks,

    #622463

    Hey Prenko!

    can you please try the !important rule also?
    SO if you add

    .avia-slideshow .avia-caption .avia-caption-title {
    font-size: 20px !important
     }

    does that fixes the issue?

    Cheers!
    Basilis

    #622441
    Prenko
    Participant

    Hi.

    I have not been able to find the answer to my specific problem in the forums (please correct me if I have missed something!) so I am opening this thread in the belief that it is not already covered.

    For some reson I cannot change the font size in the Easy Slider (not full witdh). If I enter the following tag in the quick style editor, in the admin interface, I can change font style but not the size:

    .avia-slideshow .avia-caption .avia-caption-title { }

    If I enter the code directly in the stylesheet in the “dynamic_avia”-folder I can change the font size but since that stylescheet is dynamically updated, that is no permanent solution.

    Could anyone please help me realize how I could permanently change the font size.

    The site is: http://frakka.se/
    Wordpress version: 4.4.1

    #622041
    Krissieg
    Participant

    Hey guys,

    How do I make the footer smaller? The font size is fine in general, I just want to change the font size within the footer. How do I do this?

    #621962
    sberendss
    Participant

    As I want to show a logo and the site title and tagline in the header, I used the quick css code below. Everything looks fine now, but not in responsive mode on a small screen. Can you help mee with the proper code so the content keeps centered, the margins stay and the image doesn’t shrink too much?

    strong.logo { 
    padding-top: 30px;
    font-size: 36px !important; 
    text-align: center;
    display: block;
    width: auto;
    }
    
    strong.tagline { 
    padding-top: 70px;
    font-size: 24px !important; 
    text-align: center;
    display: block;
    width: auto;
    }
    
    .logo img {
    height: 375px;
    width: 630px;
    }
    
    #621952

    Hey!

    Please don’t use the customizer because you can’t change the theme options or element configuration there:

    http://officechanges.com/newwebsite/wordpress/wp-admin/customize.php?return=%2Fnewwebsite%2Fwordpress%2Fwp-admin%2Fpost.php%3Fpost%3D720%26action%3Dedit%26message%3D1

    .Add this in the Quick CSS field to change the iconbox content and title font size:

    .iconbox_content_container {
        font-size: 18px;
    }
    
    .iconbox_content_title {
        font-size: 1.6em;
    }

    Best regards,
    Ismael

    #621852

    HI

    What you did works perfect as long as i dont hide Title and breadcrumbs. My idea to insert a breadcrumb manually as short code is to be able to apply fonts sizes and colors and not have the typical breadcrumb in small text (please see the page where i did it manually)
    In my pages i have to hide almost all headers and so as i have 4 different logos according to the branch of the business witch i insert manually according to the page. That’s why i’m looking for breadcrumb that i can insert and change fonts etc.. according to the page. Not sure if possible.

    Thank you

    #621789
    shreinmedia
    Participant

    I am trying to adjust the font size in the icon list element to match what shows in your demo on this page…

    I adjust the font size in the element but it doesn’t render on the front end. Please advise. Thanks.

    #621732

    Hey!

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

    .html_header_sidebar #header .av-main-nav > li > a .avia-menu-text { font-size: 18px; }

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Regards,
    Yigit

    #621729

    Hi!

    Please change following code

    .html_header_sidebar .logo {
        max-width: 200px;
    }

    to following one

    .html_header_sidebar .logo img {
        max-width: 100px;
    }
    .subtext {
        font-size: 20px;
    }

    To add a second line, you can use HTML

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
        $sub .= "Your name, PhD <br><span class='my-second-line'>text for the second line</span>";
        return $sub;
    }

    Then you can target that second line using following selector in Quick CSS

    .my-second-line { font-size: 12px; }

    Cheers!
    Yigit

    #621709

    In reply to: Submenu item padding

    I was able to get it with this css. It’s a submenu.

    #top .av-subnav-menu > li > a {
    padding: 0px 0px 0px;
    font-size: 1.3em;
    }

    #621696

    Hey!

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

    .title_container {
        background: #d6d6d6;
    }
    .title_container .main-title a {
        color: black!important;
        font-size: 20px;
    }

    Best regards,
    Yigit

Viewing 30 results - 11,401 through 11,430 (of 18,743 total)