Viewing 30 results - 141,751 through 141,780 (of 142,818 total)
  • Author
    Search Results
  • #125519

    Hi,

    Sorry for the delay. This css code will make phone number red and bigger., please add it to /css/custom.css file OR to quick css located in Enfold > Layout Styling (under theme options):

    .social_header .phone-info {
    color: #F00;
    font-size: 1.35em;
    }

    Add this css code to one of the two locations described by me earlier in this post. It will shrink your form

    .ajax_form p {
    float: none;
    width: 70%;
    }

    #top .ajax_form .text_input, #top .ajax_form .select{
    padding: 8px !important;
    }

    #top .ajax_form .text_area{
    padding: 6px !important;
    height: 100px;
    }

    Thanks,

    Nick

    #25156
    dswreclame
    Participant

    Hi there,

    first of all I gotta say I like the Enfold template a lot, good work.

    I was wondering if there is a possibility to place the breadcrumbs in the top of the left sidebar

    also, is it possible to make a menu in the left sidebar that works like this:

    http://www.interspire.com/content/content_images/images/buildingadhtmlmenu/dhtmlmenu.gif

    so when an item is selected, the sub items will show and, of course, disappear when another item is selected

    Thanks in advance,

    Matthijs

    #125067

    In reply to: Using Advancer Editor

    Hi!

    You can use the debug mode if you want to copy the content https://kriesi.at/support/topic/export-theme-settings-and-templates

    Regards,

    Peter

    #125798

    Add following code to the buttom of functions.php:

    // THIS GIVES US SOME OPTIONS FOR STYLING THE ADMIN AREA
    function avia_editor_fix_style() {
    echo '<style type="text/css"> .avia-modal { top: 60px !important; } </style>';
    }

    add_action('admin_head', 'avia_editor_fix_style');

    Obviously you can replace 60px with another value.

    #125802

    Open up wp-contentthemesenfoldconfig-woocommerceconfig.php and delete following line:

    if($image) echo "<div class='page-thumb'>{$image}</div>";

    If you want to replace it with the term name replace the line above with

    echo $term->name;

    Hi,

    1. Remove the top bar above the header

    Add this on your custom.css or Quick CSS

    #header_meta {
    display: none;
    }

    2. Reduce the whitespace found across all pages between the menu and text

    I’m not sure what whitespace you’re referring to since the link you gave almost have no content in it.

    .template-page.content.twelve.alpha.units {
    padding-top: 10px;
    }

    3. Reduce the white space above and below the horizontal ruler.

    You can use this

    .hr {
    height: 10px;
    margin: 10px;
    }

    Adjust the values.

    Regards,

    Ismael

    #125505

    1) See https://kriesi.at/support/topic/custom-font-with-cyrillic-symbols – you can add a new font or overwrite an existing font – a list of all supported fonts can be found in wp-contentthemesenfoldincludesadminregister-admin-options.php

    'Alice'=>'Alice',
    'Allerta'=>'Allerta',
    'Arvo'=>'Arvo',
    'Antic'=>'Antic',

    'Bangers'=>'Bangers',
    'Bitter'=>'Bitter',

    'Cabin'=>'Cabin',
    'Cardo'=>'Cardo',
    'Carme'=>'Carme',
    'Coda'=>'Coda',
    'Coustard'=>'Coustard',
    'Gruppo'=>'Gruppo',

    'Damion'=>'Damion',
    'Dancing Script'=>'Dancing Script',
    'Droid Sans'=>'Droid Sans',
    'Droid Serif'=>'Droid Serif',

    'EB Garamond'=>'EB Garamond',

    'Fjord One'=>'Fjord One',

    'Inconsolata'=>'Inconsolata',

    'Josefin Sans' => 'Josefin Sans',
    'Josefin Slab'=>'Josefin Slab',

    'Kameron'=>'Kameron',
    'Kreon'=>'Kreon',

    'Lobster'=>'Lobster',
    'League Script'=>'League Script',

    'Mate SC'=>'Mate SC',
    'Mako'=>'Mako',
    'Merriweather'=>'Merriweather',
    'Metrophobic'=>'Metrophobic',
    'Molengo'=>'Molengo',
    'Muli'=>'Muli',

    'Nobile'=>'Nobile',
    'News Cycle'=>'News Cycle',

    'Open Sans'=>'Open Sans:400,600',
    'Orbitron'=>'Orbitron',
    'Oswald'=>'Oswald',

    'Pacifico'=>'Pacifico',
    'Poly'=>'Poly',
    'Podkova'=>'Podkova',
    'PT Sans'=>'PT Sans',

    'Quattrocento'=>'Quattrocento',
    'Questrial'=>'Questrial',
    'Quicksand'=>'Quicksand',

    'Raleway'=>'Raleway',

    'Salsa'=>'Salsa',
    'Sunshiney'=>'Sunshiney',
    'Signika Negative'=>'Signika Negative',

    'Tangerine'=>'Tangerine',
    'Terminal Dosis'=>'Terminal Dosis',
    'Tenor Sans'=>'Tenor Sans',

    'Varela Round'=>'Varela Round',

    'Yellowtail'=>'Yellowtail',

    Eg if you want to use Open Sans with Cyrillic characters add following code to the bottom of functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,700,400italic,700italic&subset=cyrillic';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,700,400italic,700italic&subset=cyrillic';
    return $fonts;
    }

    2) To change the body font size insert following code into the quick css field and change the font size/line height value:

    body {
    font: 13px/1.65em "HelveticaNeue", "Helvetica Neue",Helvetica,Arial,sans-serif;
    }

    The first value is the font size, the second value the line height.

    You can change the headline sizes with

    h1 { font-size: 34px; line-height: 1.1em; margin-bottom: 14px;}
    h2 { font-size: 28px; line-height: 1.1em; margin-bottom: 10px; }
    h3 { font-size: 19px; line-height: 1.1em; margin-bottom: 8px; } /*28*/
    h4 { font-size: 17px; line-height: 1.1em; margin-bottom: 4px; } /*21*/
    h5 { font-size: 16px; line-height: 1.1em; } /*17*/
    h6 { font-size: 14px; line-height: 1.1em; }

    Here is page intended for homepage see the size of video, it’s crazy, I added width to 530 height to 315 & is still HUGE . . .

    http://essentialmessagemarketing.com/homepage

    Also, we are having great difficulty using background image, we have an image sized to 1600 x 1600 & it will only display the top half of the background, is not on homepage at the moment as it isn’t working, also where do we go to set custom css rules?

    Thank you.

    #25144
    andypeck
    Participant

    Hi there,

    I want to remove borders, spacing of a gallery but just for one part of my website. How do I write the CSS code?

    I know the page ID……. SEE BELOW

    .page-id-1739 #av_section_1.avia-builder-el-8 {

    I know the code to remove borders etc……… SEE BELOW

    #top div .avia-gallery img {

    float: left;

    border-style: solid;

    border-width: 0 !important;

    padding: 2px;

    width: 100%;

    border-radius: 0;

    }

    How do I put that together soo it only effects that page ID number section. I want the gallery to be normal everywhere else.

    Cheers

    Andy

    #125685

    Hi,

    Can you give us a link to your website?

    You can upload an image using the Image element under Media Elements tab if you are using the Advance Layout Editor. You can also use the default Add Media button on top of the editor.

    Regards,

    Ismael

    #125870

    Its Ok…. sussed it out.

    For those interested in knowing how to do the gallery with no borders without playing with CSS.

    Just add a basic text block from the builder, add media, select or upload photos, create a gallery (on top left), create gallery, Done!

    Its basic and has no rollover effect but thats how its done.

    I assume the others in the demo have been tinkered with in CSS but if I find out ill share the news although I suspect im the last yo know and youve already worked it out yourself. Still always good for someone new I guess

    cheers

    #125822

    In reply to: Quform

    Hi,

    Please add this on your custom.css or Quick CSS

    #top input[type="text"] {
    margin-bottom: 0;
    }

    .iphorm-inner.iphorm-inner-1 > br {
    display: none;
    }

    Regards,

    Ismael

    #25143
    Scott
    Participant

    I am so happy you added the Ajax Portfolio to the Enfold theme. I have had no problem adding the items I want but for some reason, when adding a video, it only opens up in lightbox. When I use the same Ajax Portfolio in the Choices theme, you click on the featured image, just like you do for a picture, and slides to the top and gives a brief description of the video. In Enfold, you click on the image and it just opens in lightbox instead of suing the Ajax feature. Hope that makes sense.

    Am I doing something wrong? I have even tried adding preview images.

    Scott

    stats4stem
    Participant

    Hi,

    Here is a link to my issue (image provided):

    http://www.helpwithstats.com/?page_id=222

    Essentially, in the enfold theme, how do I:

    1. Remove the top bar above the header

    2. Reduce the whitespace found across all pages between the menu and text

    3. Reduce the white space above and below the horizontal ruler.

    Is there is some css code that I can drop into the “Quick CSS” box to help with these modifications. For 2 and 3, I can do some trial and error with the code to find what is right.. just need some help with code :)

    Thanks!

    #25131
    andypeck
    Participant

    Hi there,

    on your demo page (ive not installed it as im building from afresh) and I see you have several galleries on this page that are different to the default regarding the thumbnail borders

    the top gallery has no border at all but has a fine margin between each image. How do I replicate but also do it so that it doesnt wreck the other galleries on that same page if I create another (with borders this time). Just like this page.

    Also, how do you replicate the others with a different margin to the borders. Am I missing a setting somewhere in the builder or does it all have to be done in CSS. Either way, how do i create this page?

    cheers

    Andy

    #25127
    DesignerKen
    Participant

    I edited the loop-index.php file by placing (includes > loop-index.php) in my child theme folder and editing the code according to this post.

    https://kriesi.at/support/topic/using-excerpts#post-119165

    This is indeed render the listing with an excerpt. But when I click the “read more” link I see in the URL its the single post but only the excerpt is displaying not the full post.

    #125530

    Thanks. I think it really seems to be intended to work that way, which is sad. Thanks again for the quick reply.

    #125415
    #125529

    Hi rhunecke,

    I believe the color section only works as a full width element. I’ll tag the topic for Kriesi to get confirmation for sure but I’m fairly sure its only intended to be a full width element in layouts.

    Regards,

    Devin

    #25123
    Daniel
    Participant

    Hello,

    I have no idea where this is in the code or how to do it, but I would greatly appreciate some help on this one.

    Basically in Enfold with WooCommerce installed, when you add a product it adds the nice ajax symbol top right of the shopping cart and then you can hover over it and see the items you have added and view cart and checkout.

    If you hover over those items you can then click on them and be taken to that product.

    Due to the fact I’m building a course website and have used ‘add to cart’ buttons and not actually the product pages. I want it so I can’t click on the items in the cart widget (ajax thing) I want it so people can just use it as a reference to see what’s in their cart and click to checkout or see cart etc..

    So in short I just want the items to still show exactly how they are but not hyperlinks or.. clicking on the items takes me straight to the cart and not the product?

    Hopefully that makes sense, been trying to find out where it’s putting the link tags then I could properly nut it out, but I’m here as a last resort.

    Cheers,

    Daniel :)

    #25118

    Topic: Mobile Tables

    in forum Enfold
    Scott
    Participant

    Hello Kriesi Team –

    I have a problem with the tables being viewed on mobile devices. I have searched the forums and read about a similar problem here:

    https://kriesi.at/support/topic/problem-with-table-layout-in-mobile-devices

    But there was no solution. I have rebuilt the table, centered the columns and still the first column header is missing and all the other headers shift and that causes a real problem. On our rope page, it appears as if our Tensile Strength is None. You can my table here:

    http://www.litrotechnologies.com/futureglo/ropes-thread/

    http://www.litrotechnologies.com/futureglo/hard-hats/

    Any suggestions? I have just updated to 1.7 and rebuilt the rope table using 1.7.

    Scott

    #125768

    Hi,

    Please follow this link, look for Nick’s instruction.

    https://kriesi.at/support/topic/youtube-icon

    The process is a bit complicated right now.

    Kriesi said he will make it possible to add your own icons on future updates.

    Regards,

    Ismael

    #125584

    Hi,

    It is a bit complicated. You should probably use the Full Width Slider.

    You can try this

    @media only screen and (max-width: 767px) {
    .ls-wp-fullwidth-container {
    height: 300px !important;
    }

    .ls-wp-container {
    height: 300px !important;
    width: 100% !important;
    }

    .ls-inner {
    width: 100% !important;
    height: 300px !important;
    }

    .ls-layer.ls-active > .ls-bg {
    height: 300px !important;
    margin-top: -150px !important;
    }
    }

    Regards,

    Ismael

    #25116
    travistrue
    Participant

    I want to remove the images on the post page and archive pages. I used the following CSS to take it off the post page (#top.single-post .big-preview.single-big {display: none;}. How would I do the same for the archive pages?

    #125725

    Hi,

    here’s a thread which explains very much in-depth how the megamenus work

    https://kriesi.at/support/topic/couple-problems-with-mega-menu-formatting-and-structure#post-112541

    Especially Devin’s answer second from bottom is very helpful.

    Best regards Katharina

    #125314

    In reply to: Button Text Color

    Hi,

    This looks like what you are looking for

    Style Attribute {
    color: #FFF;
    }

    Strange selectors, but below that there is purple, then dark grey, then electric blue. Wow a whole smorgasbord of color.

    Very nice site. You should add it to the showcase page https://kriesi.at/support/topic/enfold-showcase

    Thanks,

    Nick

    #25110
    timbaba
    Participant

    I have arranged my landing page as a group of eight categories that link to the sub-categories, which then link to the array of products in that category. But on that last page the image of that sub-category appears side to side at the top. How to remove that image and replace it with a heading? That image, which I discovered by inspecting the element with Chrome, appears to be a category-thumb…

    Thanks,

    Tim Garvin

    Enfold theme

    #25108
    DavyE
    Participant

    Hi, I have a small conflict with an admin theme. As seen here: http://i.imgur.com/UGLsPRt.jpg?1

    Basically, I would just need to increase the top padding of the Avia lightbox when adding shortcodes, so it comes below the overlaying theme panel. Could you assist me in finding where to increase that padding please?

    Thank you!

    #25102
    next_thomas
    Participant

    Hi,

    I have a static image at the top of my homepage, right under the header.

    I’d like to add transparency ‘under’ that image, so that we can see the background image.

    How could I do so?

    In the meantime, I created a colored section with a custom background, but of course we see it’s a different image and the overall layout looks like a puzzle!

    http://goo.gl/3FqWy

    Thanks,

    Thomas

    #125695

    Default gallery shortcode – also doesnt work in bbPress topic page (((

Viewing 30 results - 141,751 through 141,780 (of 142,818 total)