Viewing 30 results - 14,761 through 14,790 (of 18,733 total)
  • Author
    Search Results
  • Hi!

    Please use following code instead

    .phone-info {
    font-size: 16px;
    }
    #top .social_bookmarks li a {
    font-size: 14px;
    }

    Regards,
    Yigit

    #381533

    Topic: Price Table Font Size

    in forum Enfold
    a00109943
    Participant

    Hi there,

    I have a price table here: http://algotrading.ca/tuition-cost/ but the font size for the price is way too big and the font size for the header is to small. How do I go ahead and modify these areas?

    Thanks!

    Ben

    Hi Elliot
    Thx for the fast answer.
    I have already realised Text and menu as you have described it. Works perfectly fine.

    For the social icons I used this workaround which I found in the forum (as i wanted to use the built in icons and not mess with pictures…lazy…):

    <p align="center" style="font-size:18px; "> <a href="http://google.com"> [av_font_icon color="" icon="214" size="22px"] </a>

    This displays the logo BUT it is not centered. So is there any code to be changed which will make it appear centered?

    Cheers
    Tim!

    #381502

    Hi EuroInfoSys!

    Try this out.

    .avia-icon-list .iconlist_title {
      font-size: 12px !important;
    }

    Cheers!
    Elliott

    #381495

    In reply to: Font size + font style

    Hi nowhere!

    You can do this in Dashboard > Enfold > Advanced Styling. Just select the main menu links in the dropdown and you can then change the size, color, font, etc etc.

    Cheers!
    Elliott

    #381475

    thanks Ismael

    I also found that putting this in the mega menu column title works –

    <SPAN STYLE=”color: #_________; font-size: __ pt”>PUT TITLE HERE</SPAN>

    Regards,
    Scott

    #381445
    bigcamera
    Participant

    1/
    On my footer, i have just 1 column. This one is on the left. How put this widget on the right and on center ?
    2/
    On my socket i would like my copyright on the left, and a contact link on the right. Like on your page: http://kriesi.at/contact
    How to do it ?
    3/ When I add a text block on a page and type a text, for the text size i have the choice between: paragraph / heading 1/ heading 2/ heading 3…
    But this option set the size for all the text block. I would like to be free like on a Word document. I m looking for a solution for change the size of each sentence, each letter. Is it possible to add Font size ( 8, 9, 10, 11,12, 14,16….) ?

    Thank you for your work

    #381433

    Hi iveyeng!

    Thank you for using Enfold.

    Use this on Quick CSS or custom.css to change the color and increase the font size of the tab title:

    .main_color .sidebar_tab, .main_color .tabcontainer .tab {
    color: #02a1e5;
    font-size: 12px;
    }

    Regards,
    Ismael

    #381430

    Hi!

    Actually, the code works but the text is hidden below the header. Use this on Quick CSS:

    .logo, .logo a {
    overflow: visible;
    }
    
    span.subtext {
    position: absolute;
    top: 0;
    left: 220px;
    display: block;
    width: 150px;
    font-size: 15px;
    }

    Adjust the css values if needed.

    Cheers!
    Ismael

    #381392

    In reply to: How do I stop this?

    Hey!

    Try to enclosed the text and the icon inside a div. Something like this:

    <div class="sneak-box">[av_font_icon icon='ue801' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='' custom_class=''][/av_font_icon]<span class="sneak-text">Since my only form of ‘design’ right now is leaving a burp stain on your shoulder, I have real designers creating <strong>adorable items</strong> for us such as pregnancy T-shirts for you and personalized outfits for me.</span></div>
    

    Add this on Quick CSS:

    .sneak-box span.av_font_icon {
    width: 6%;
    float: left;
    clear: none;
    margin-right: 2%;
    }
    
    .sneak-box span.sneak-text {
    width: 92%;
    float: left;
    clear: none;
    }

    Regards,
    Ismael

    #381386

    Hi!

    Thank you for the link.

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

    .template-page .template-blog .entry-content-wrapper h2 {
    font-size: 40px;
    }

    Cheers!
    Ismael

    #381382

    Hello and thanks for answer.

    I think I found a good way to do what I want ( and possible other people want also ).
    What I would like to do is, ini my child theme, to create my custom post template using the Layout Builder, but only to create the template and not to give the user the right to use and change it. In this way, if I want to change the layout of all the custom post, I have only to change the template, and not change the setting for every single custom post.

    What i did is:
    0) Activate the layout builder for your custom post ( https://vimeo.com/64996057 )
    1) Make a page using the Layout Builder to generate the shortcode. This will be your template for the custom post.
    2) Copy the shortcode it generates and save it somewhere ( you must have the avia debug ON to see them into the admin page, just put into your functions.php file this:

    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug(){
    	return "debug";
    }

    3) Copy the template-builder.php in your child theme directory.
    4) In this file, at the beginning of the file, get all your data of your custom post from $post:
    – Your content
    – Your custom fields
    5) Now put it into a $content variable which must have all the shortcodes you copied before with your content and custom field inside. I suggest to use heredoc method:

    $content = <<<EOD
    [av_section color='main_color' ……..
    [av_video src=‘$my_video’ format='16-9' width='16' height='9']
    [av_textblock size='' font_color='' …..
    etc…..
    EOD;

    Also better if you do step 4 and 5 in a function like get_your_custom_post_template( $post ); that return $content.
    6) Now go to the line
    $content = apply_filters('avia_builder_precompile', get_post_meta(get_the_ID(), '_aviaLayoutBuilderCleanData', true));
    and make an if statement where you check if is displayed your custom post

    if ( $post->post_type == 'your-custom-post' ){
        $content = get_your_custom_post_template( $post );
        $content = apply_filters( 'avia_builder_precompile', $content );
    } else { 
        //filter the content for content builder elements
         $content = apply_filters('avia_builder_precompile', get_post_meta(get_the_ID(), '_aviaLayoutBuilderCleanData', true)); 
     }

    Everything is working, but there are something still to fix.

    1) How to make default setting fot the Layout ( right sidebar admin panel. Example set the Page Layout, and the Header setting ). I see that these settings are registered in a custom fields, like:
    _aviaLayoutBuilder_active
    sidebar
    header_transparency
    etc….
    But I don’t know where to hook to set these, if during the save or during the get of the page.
    Moreover we can hide from the user the Layout on the sidebar with css.

    2) Avoid the user to activate the Advanced Layout Editor. Infact in case he doesn’t activate it, the template is going to use the single.php ( or single-your_custom_post.php in case ) template.

    3) On the frontend I have a div with nothing inside that make a white space between the menu and the content. It is this one:
    <div class=”main_color container_wrap fullsize”>…</div>
    I think it is due to the fact that this is a post and not a page. Do you know how to avoid it?

    I thinks is all, and thanks do much for support

    #381287
    EuroInfoSys
    Participant

    Hi!

    What is the css code I need to enter in the quick css to modify the size of the text from the iconlist on a single page?

    Thanks!

    #381241
    1lizcollins
    Participant

    Hi!

    I’d like to make several small adjustments to how my site looks on iPhones and other small mobile devices.

    First, is it possible to change the order of several icon boxes? Specifically, I’d like to make the icon box called “The Nature Place Day Camp” show before the one called “Farm & Garden Days” (link below).

    Second, I want the tagline text below the rotating images on my homepage to be a smaller font size than it is on all other sized devices.

    Thank you so much!

    #381222

    Topic: Font size + font style

    in forum Enfold
    nowhere
    Participant

    Hi,

    I want to change the font size for the menu. What’s the shortcode for the quick css?

    I also want to upload a new font.(Brandon Text). How can I do that? also with the quick css?

    Regards Peter

    #381208
    tvl76
    Participant

    Hi guys
    1. All content should be 910px width except for (I changed that easily within the enfold admin panel)
    2. Blog content should be only 660px width
    3. Content will be on the same page

    I did the following changes within style.css:

    
    #top .fullsize .template-blog .post .entry-content-wrapper{text-align: left; font-size:18px; line-height: 150%; max-width: 660px; }
    
    #top .fullsize .template-blog .post .entry-content-wrapper > *{ max-width: 660px; }
    
    #top .fullsize .template-blog .big-preview img{width:660px;}
    
    .fullsize .big-preview .avia-gallery {width: 660px;}
    
    .comment_container{max-width: 660px;}

    As result I have
    – text and avia-gallery reduced to 660px and perfectly centered,
    – big preview img, related posts and comments reduced to 660px BUT oriented left,
    – Audio and Video preview NOT reduced.

    My question: Is there a parent css-style (or php) for the blog.content only which I can adress a max-with of 660px to? I could not find it yet…

    Thx for your help in advance!

    Micheal0424
    Participant

    I would like the telephone number and the social media icons in the Small bar above Main Menu to be different sizes.

    This is what I have now but it makes the entire line bar the same size:

    div#header_meta [data-av_icon]:before, div#header_meta .phone-info {
    font-size: 12px !important;
    }

    I would like the phone number to be 12 and the social media to be 18 but can’t figure out how to do it.

    Are there two codes I can put in to make this happen?

    Thank you.

    #381163

    I’m using the tinyMCE Advanced plugin which has more formatting such as font size etc. It’s a plugin that I have used on several sites using enfold up until now. Also the Media Library issue still persists, can you please help with this as well?

    • This reply was modified 11 years, 2 months ago by Snerp.
    #381151

    Hi juergmahler!

    1. Add this to your custom CSS.

    #header_main {
      border-bottom-width: 1px !important;
    }

    2. Add this to your custom CSS.

    .main-title, .main-title a { font-size: 12px !important; }
    

    Cheers!
    Elliott

    #381149

    Hi James!

    Add this to your custom CSS.

    .tab_inner_content li, .tab_inner_content p { font-size: 20px !important; }
    

    Best regards,
    Elliott

    #381138
    iveyeng
    Participant

    Could you give me the code that I can add in quick CSS to change the tab titles to #02a1e5. Also how could I increase the font size of the tab titles by 2? Thanks!

    #381060
    This reply has been marked as private.
    #381017

    Yigit, thank you. How could I control the appearance of it with css, please? Let’s just say font size 14 and white text as a place to start and then I’ll figure out the rest.

    gary

    #381002
    juergmahler
    Participant

    Hi Kriesi,
    first of all thanks for such a great theme like Enfold.
    1) How can I change the thickness of the border underneath the logo / main memu area ? (I’m able to change the color in the General Styling / Logo Area tab).
    2) I want to activate the “Display only Title” option in the Header tab, but the font size is far too large. Where or how can I change that?
    Thanks very much for your help.
    Jürgen

    #380999
    jbtaberham
    Participant

    I am trying to increase the size of the font inside my tabs (inner content) without harming the Header font.

    See: http://totalgolftravel.com/destinations/scottsdale-golf-packages/hotel-indigo-scottsdale/

    Thanks!

    #380936

    Hi sky19er!

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

    .page-id-36 ul.nested_nav:before {
    content: 'About The FPR';
    color: black;
    font-size: 18px;
    }

    Best regards,
    Yigit

    #380925
    truthbetoldmedia
    Participant

    Thanks to the Kriesi team for helping me get my accordion slider set up to accept HTML, following this thread. Those instruction worked fantastic, however, I’ve just recently noticed that I lose the HTML buttons & links when screen resolution drops below 781px wide and I can’t figure out why. The only Custom CSS being used is as follows:

    from theme options > General styling > Quick CSS:

    /*--------------SLIDER SETTINGS-----------------*/
    
    /* Accordion slider: slide black background position */
    #top .aviaccordion-preview-title-pos {
    left: 70%;
    bottom: 1%;
    }
    
    /* Accordion slider: Button CSS for use on each slide */
    .sliderButton {
    	-moz-box-shadow: 4px 4px 0px -2px #899599;
    	-webkit-box-shadow: 4px 4px 0px -2px #899599;
    	box-shadow: 4px 4px 0px -2px #899599;
    	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #b9bced));
    	background:-moz-linear-gradient(top, #ededed 5%, #b9bced 100%);
    	background:-webkit-linear-gradient(top, #ededed 5%, #b9bced 100%);
    	background:-o-linear-gradient(top, #ededed 5%, #b9bced 100%);
    	background:-ms-linear-gradient(top, #ededed 5%, #b9bced 100%);
    	background:linear-gradient(to bottom, #ededed 5%, #b9bced 100%);
    	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#b9bced',GradientType=0);
    	background-color:#ededed;
    	-moz-border-radius:9px;
    	-webkit-border-radius:9px;
    	border-radius:9px;
    	display:inline-block;
    	cursor:pointer;
    	color:#545454;
    	font-family:arial;
    	font-size:16px;
    	padding:7px 71px;
    	text-decoration:none;
    	text-shadow:0px 1px 0px #e1e2ed;
    }
    .sliderButton:hover {
    	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #b9bced), color-stop(1, #ededed));
    	background:-moz-linear-gradient(top, #b9bced 5%, #ededed 100%);
    	background:-webkit-linear-gradient(top, #b9bced 5%, #ededed 100%);
    	background:-o-linear-gradient(top, #b9bced 5%, #ededed 100%);
    	background:-ms-linear-gradient(top, #b9bced 5%, #ededed 100%);
    	background:linear-gradient(to bottom, #b9bced 5%, #ededed 100%);
    	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b9bced', endColorstr='#ededed',GradientType=0);
    	background-color:#b9bced;
    }
    .sliderButtonButton:active {
    	position:relative;
    	top:1px;
    }
    
    /* Accordion slider: removes single link and allows for HTML to be inserted into Caption field */
    #top .aviaccordion-slide-link {
    display: none;
    }

    from child theme’s style.css:

    /* tiny bit of space above logo's fist, else the logo butts right up to browser border*/
    .logo img {padding: 10px 0 !important; }
    
    /*Show Schedule active tab coloring */
    .js_active .active_tab {
    background: gray; font-size: 15px; text-shadow:-2px 1px #c6c6c6;}
    

    This error is easily reproduced on our homepage accordion slider here. Any help you could give would be greatly appreciated.
    Thanks.

    #380820

    Hey!

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

    @media only screen and (max-width: 480px) {
    h1.av-special-heading-tag {
    font-size: 36px!important;
    }}

    Best regards,
    Yigit

    #380779

    Hi!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 1400px) {
    div#header_main_alternate > .container {
    padding: 0;
    }
    .html_header_top.html_bottom_nav_header .main_menu ul:first-child>li a {
    font-size: 11px; 
    }
    .av-main-nav>li>a {
    padding: 0 7px; 
    }}

    Cheers!
    Yigit

    #380690

    Topic: Theme Options moved

    in forum Enfold
    AdDesign
    Participant

    Hi,

    Since yesterday the Enfold theme options are displayed offset. SCREENSHOT Also the font size is smaller. Do you have an ideas what happend there?

    Regards,

    Alex

Viewing 30 results - 14,761 through 14,790 (of 18,733 total)