Viewing 30 results - 13,771 through 13,800 (of 18,734 total)
  • Author
    Search Results
  • #447908

    Hi strengthcoaching ;
    In order to insert my own css classes I would type (or paste) my text in “Text” part of the bloc text.
    Then insert my classes (For Example ; “span”)
    The example with your page http://strengthinnumberscoaching.com/test/
    I’ve inserted :
    “my-big-text”
    “my-italic-text”
    “my-underline-text”
    one or two of theme. (By separting two (or more) classes you can have more ability to target

    And added into custom css file :

    .my-big-text{font-size: 20px !important;}
    .my-italic-text{font-style: italic !important;}
    .my-underline-text{text-decoration: underline !important;}
    

    See the image below
    Custom classes

    • This reply was modified 10 years, 10 months ago by begrafiks.
    #447852

    Ok thanks for your answer! I would like to point out though that it is possible to do it. What I did was that I added this code at the end of my child theme’s functions.php file:

    // Add close window functionality
    function add_custom_script(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
        	$('.close-window .avia-button').on('click', function(){
    				 window.open('', '_self', '');
                     window.close();
            });
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Then I added my button through the visual editor and added the close-window css class into the custom CSS field.

    Then in my single.php template file I used the do_shortcode wordpress function and I copied the shortcode created from the visual editor and pasted like this escaping the ‘ character:

    <?php echo do_shortcode('[av_button label=\'Close window\' link=\'manually\' link_target=\'\' size=\'small\' position=\'center\' icon_select=\'yes\' icon_hover=\'aviaTBicon_hover\' icon=\'ue813\' font=\'entypo-fontello\' color=\'theme-color\' custom_bg=\'#444444\' custom_font=\'#ffffff\' custom_class=\'close-window\']'); ?>

    Thanks again for your help!

    #447851

    In reply to: Default Font Size

    Hi Derek!

    Thank you for coming back.

    Goto Dashboard -> Enfold -> General Styling -> Tab Fonts and select a fontsize from the selectbox Default content font size.

    Best regards,
    Günter

    #447814

    1. Thanks. Sometimes though I want to do more than one thing with the text (underline and italic, just change font size in another situation, etc.). Also, I don’t know how to create a custom class. I’m not a coder. I just know basic html and what I can find on google. :)

    2. I’ve tried using that (per my basic html knowledge) and it’s not been successful. Hence why I asked. Is there another solution?

    3. Thanks for the clarification. Am I able to do half measures? (ex. 2.5px)

    #447794

    Hi!

    1- You can wrap your text inside a span with custom class and then add following code to Quick CSS

    .your-class { font-size: 20px; }

    2- Please use BR tag http://www.w3schools.com/tags/tag_br.asp
    3- 5px = top padding, 0 = right padding, 5px bottom padding, 0 left padding. Adjust as needed


    @begrafiks
    thanks :)

    Best regards,
    Yigit

    #447785

    1. Thanks! I should have been more specific. What about when I want to use mixed font sizes not change the font size for the WHOLE text block? That’s what I mean

    2. You didn’t answer this one. Create line breaks in Descriptions of elements and in text blocks. (Ex. italics is )

    3. That helps a lot thanks! If I ever wanted to adjust the spacing which number in that code do I change? I don’t understand why “5px 0” repeats twice.

    #447784

    Hello Yigit.

    With the code you sent me does not solve my problem 100%.

    I need to control the height and width of the box, font size and text placement. Kind of like the code below.

    Is that correct?

    #top #header .mega_menu_title the {
       font-size: 12px! important;
       line-height: .3em! important;
       min-height: 12px;
    }
    span.mega_menu_title the {
       text-align: center! important;
    }
    #top .avia_mega_div #header> .sub-menu {
       border-top-style: solid;
       border-top-width: 2px;
       display: table;
       padding: 3px 3px 2px 2px;
    }
    #top #header .avia_mega_div> .sub-menu.avia_mega_hr {
       padding-top: 5px;
    }

    #447777

    Hi mleite1!

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

    #header .mega_menu_title {
      margin-bottom: 4px;
      font-size: 14px;
    }

    Best regards,
    Yigit

    This reply has been marked as private.
    #447655

    Hey chrisheath28!

    Please try this instead:

    .js_active .top_tab .tab {
      background: red !important;
      font-size: 16px !important;
      color: black !important;
    }

    Cheers!
    Rikard

    #447583
    strengthcoaching
    Participant

    More little tweaks…

    How do I…?
    1. Enable Social icons/links in mobile layout/menu (not the footer)
    2. Have the images that are from a blog post which show in the blog roll link to their respective posts. I’m new to blogging so maybe i’m not writing the post right? I usually have one main image at the top of the post instead of a featured image. I don’t use those.
    3. In animated numbers the commas and other special characters (such as $) have a different more faded color than the animated element. How do I change this to have them match?
    4. Change Progress Bars font size

    #447522

    Hi!

    If you use the button shortcode, you won’t be able to add the onclick attribute as suggested on the previous post. You need to create a custom code then you can apply the button shortcode style to it. Use google inspector or firebug to get the css codes for the button shortcode. This is the css code of the small button shortcode:

    body div .avia-button {
      border-radius: 3px;
      padding: 10px;
      font-size: 12px;
      text-decoration: none;
      display: inline-block;
      border-bottom-style: solid;
      border-bottom-width: 1px;
      margin: 3px 0;
      line-height: 1.2em;
      position: relative;
      font-weight: normal;
      text-align: center;
      max-width: 100%;
      color: #ffffff;
      border-color: #0b3a66;
        background-color: #2d5c88;
    }

    Best regards,
    Ismael

    #447477

    Topic: Default Font Size

    in forum Enfold
    dpilling
    Participant

    How do I change the default font size? I’m a rookie so I really appreciate your help.

    Hey!

    Please add following code to Quick CSS

    .widget_recent_entries li a { font-family: inherit!important; font-size: inherit!important; font-style:inherit!important; color: inherit!important; }

    Cheers!
    Yigit

    #447273
    sugarwayltd
    Participant

    Hi guys, I’ve Googled this to death and no result that works for me.

    I have some text in a post where I need to write ‘I <heart icon> something’
    Using the icon shortcode, I adjusted size etc but it always aligns to left of the ‘I’ !!!!

    I [av_font_icon icon='ue806' font='entypo-fontello' style='' caption='' link='' linktarget=''  block:none; color=''][/av_font_icon] Rhodia because:

    Looking at the styling with an inspector when I disable these items;

    .avia-icon-pos-left {
    float: left;
    margin-right: 0.5em;}
    
    .av_font_icon {
    display: block;
    text-align: center;}
    

    It displays how I want it too!
    Can you help?

    A

    #447239

    Hey!

    Please try adding following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .shipping_de.shipping_de_string small span {
      font-size: 14px;
    }

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

    Regards,
    Yigit

    #447146
    marximo.lider
    Participant

    Hi,

    I really like the feature of responsive tables that adjust to the screen size in Enfold, but I’ve got a problem with that:

    In smartphone resolution the content of the colums’ headings (th) is displayed in a smaller font above the cell’s content. But in my case the headings are shifted: The fist responsive cell has no small th content, the second responive cell has the th content that belongs to the first,….

    I guess the problem is, that in my case, since I have a product colum and a heading row the first cell on the top left is empty, and the script, that generates the table for smartphone resolution starts to insert th from the very first cell of the th-row?

    Is there a way to let it start with the second cell? Otherwise I have to use the scrolling responsive table, which I think is not a very user-friendly solution…

    Thanks

    #447121

    Maybe try adding !important

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

    #447101
    chrisheath28
    Participant

    Hi,
    I have read many of the posts on this topic but none of the Quick CSS changes seem to make any difference to my page layout. I simply want to make the tab labels stand out against the page background. Ideally I want to have coloured borders, modify the font and colour background – especially the non-active tabs.

    I have put the following in the quick css box although I will change the colours when I get it working.

    /* change tab colour/
    .tab{
    color:red important!;
    font-size:16px !important;
    background-color:blue !important;
    border-color: blue;
    }

    .active_tab{
    color:yellow important!;
    font-size:18px !important;
    background-color:black !important;
    }
    div .main_color .tabcontainer .active_tab {
    color: #212121!important;
    }

    #447078
    slui
    Participant

    Hi,

    I would like to know how to format a single line of text in a text using a class. I’m able to format using an entire element but I want to focus on a specific text.

    Here is the visual text: The fox is a lazy jumper.

    I want to change a specific word in color and size. Here is what I have in the code now

    The fox is a <p class=”word”;>lazy</p> jumper.

    In my custom CSS, I have the following class:

    .word {
    color: red;
    font-size: 20px;
    }

    I’ve tried this and am unable to get this to work. Please advise what I could be doing wrong.

    sl

    #447010

    Awesome, it looks great!

    Is it possible in the future you could add an option inside of the elements to customize font’s and sizes? That would make this theme the greatest.

    #446954

    Hi Rshaules!

    Thank you for using Enfold.

    The page doesn’t exist. Did you remove it? You can change the default post title size with this:

    .entry-content-wrapper .post-title {
      font-size: 40px;
      line-height: 1.5em;
    }

    Best regards,
    Ismael

    thanks Begrafiks, I’ve tried that but although the italics slant disappears, the font is still weird and doesn’t look like the body text which should be Source Code Pro font size 15px.

    I agree on the ‘hover’ state not looking good – how can I change that to just bold the text instead of changing it to red?

    #446779
    This reply has been marked as private.
    #446737

    In reply to: Schriftgröße

    Unfortunately this does not solve the problem.

    My problem is, that, no matter which font-size I define, it does not change the size of the font in the blog entries on the main page. Only the spacing between the lines becomes bigger.

    There is no difference if I define the font-size in the theme settings or if I add it as a custom CSS.

    #446721

    Hi I have tried above code but didnt work and need to change size of the fonts as well.

    Second option as you mentioned: Can you please send me full instruction how to important it and where?

    Regards
    Q

    • This reply was modified 10 years, 10 months ago by DigitalBerg.
    #446675

    In reply to: Tab Font Size

    Hi!

    Please add following code to Quick CSS as well

    body div .avia-button {
      font-size: 16px!important;
    }

    If you have bunch of other questions, please split them into 3 or 4 questions and start new threads. Long list of questions can get confusing sometimes :)

    Regards,
    Yigit

    #446652

    Thanks for getting back to me. I followed your instructions, turned off the minify css and added the code to the quick css. That change did not work. Its seems margin is coming from the class/css below, and Im not sure how to change that.

    Looking at the code and CSS, I see:

    class=”template-page content twelve alpha units”

    and CSS

    border-bottom-color: rgb(68, 68, 68);
    border-bottom-style: none;
    border-bottom-width: 0px;
    border-image-outset: 0px;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    border-left-color: rgb(68, 68, 68);
    border-left-style: none;
    border-left-width: 0px;
    border-right-color: rgb(68, 68, 68);
    border-right-style: none;
    border-right-width: 0px;
    border-top-color: rgb(68, 68, 68);
    border-top-style: none;
    border-top-width: 0px;
    box-sizing: content-box;
    clear: left;
    color: rgb(68, 68, 68);
    display: block;
    float: left;
    font-family: ‘Open Sans’, HelveticaNeue, ‘Helvetica Neue’, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-stretch: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    height: 635px;
    line-height: 21.4500007629395px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    min-height: 1px;
    padding-bottom: 50px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 50px;
    position: relative;
    vertical-align: baseline;
    width: 910px;
    z-index: 1;

    #446556

    Hi!

    Please enable custom CSS field for ALB – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then give your text block element a custom CSS class and then add following code to Quick CSS in Enfold theme options under General Styling tab

    .your-custom-class { font-size: 100px; }

    Best regards,
    Yigit

    #446553

    Hi,
    thanks for your quick reply!

    The thing is that I know the styling settings and the option in the text block to set the font size.
    But its limited to a size of 40 resp 25. (And doesn’t even show a reaction when I apply the function).

    What to do if want to have a 100 or 150?

    I really appreaciate your help.
    Sandra

Viewing 30 results - 13,771 through 13,800 (of 18,734 total)