Viewing 30 results - 233,761 through 233,790 (of 244,284 total)
  • Author
    Search Results
  • #193825
    baiker
    Participant

    Hi
    Unfortnuately, I need to add a html page to the theme, because my customer wants a specific design for one page. What is the easiest and best way, to do that?

    René

    #193822

    Hey!

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

    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
    border-color: #e1e1e1;
    background-color: white;
    color: #909090;
    }
    
    #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select {
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    }

    Regards,
    Ismael

    #193807

    Hey Ismael,

    thanx, the update is shown yet. Now I have to figure out how to back up my Enfold Style customizations and how to get them into the updated theme…

    Regards
    Andreas

    #193801
    baiker
    Participant

    Hello
    I use the contact form of the enfold theme with quit a lot of fields. When sent, it comes with a very basic layout by email. How can I change this email layout, so it is better readable for the recipient?

    Thanks, René

    #193785

    Ok,

    Editor
    it’s very strange that we can’t use default editor if we used your theme’s editor… I have never see that…
    it’s very hard for me because It’s more simple and quickly to edit page with html instead of open each one element in your editor… I think it’s not good thing for person who make website all the days…

    HR
    For HR elements, Ok, well I search this : http://kriesi.at/themes/enfold/shortcodes/hr/
    Where it is if it’s not HR element ? As you can see it’s grey on your website and not white…

    THUMBNAIL GALLERY
    Your fix doesn”t work (you have my admin access to see Quick Css zone)

    Finally : please can you delete the link to my website or publish in private.

    Thanks for your help

    • This reply was modified 12 years, 3 months ago by stane.

    Closing this topic since there is already one on the same issue getting addressed here: https://kriesi.at/support/topic/big-problem-impossible-to-add-new-element/

    Hey!

    I like the use case example. Makes sense to have some options for post styling but I think there needs to be a different implementation than how the advanced layout editor works with pages so that a user wouldn’t potentially lose blog post data/formatting when switching themes.

    I’ll bring it up for a future release and see if we can come up with something.

    Regards,
    Devin

    #193767

    Hi medienvirus!

    Solche Anpassungen lassen sich leider nicht einfach vornehmen, da WooCommerce uns die Template vorgibt und wir diese nur minimal mittels hooks (actions und filters – siehe: http://docs.woothemes.com/document/hooks/ ) anpassen. Der Code hierzu findet sich in /wp-content/themes/enfold/config-woocommerce/config.php.

    Entweder du versuchst die Templates in /wp-content/plugins/woocommerce/templates/single-product/ anzupassen oder du arbeitest ebenfalls mit Hooks um diese zu verändern. Ich würde zu letzter Lösung raten, da sich die WooCommerce Templates oft ändern (va nach Plugin Updates) und daher die Lösung mit den Hooks nachhaltiger ist. Ich würde den Arbeitsaufwand dabei auf etwas mehr als 1 Stunde schätzen…

    Cheers!
    Peter

    #193761

    Hi agarkitekter!

    You could select the “Don’t show the images at all and display the preview text only” option: http://www.clipular.com/c/6453051829256192.png?k=5TIdSdjsRn87CQytVuQeUU4899A

    By going this way Enfold will stretch the content area of the ajax preview to 100% width and you can use the new space to build your custom layout. I.e. use the columns shortcode and the “Easy Slider” shortcode to build the layout/template you requested in your post (different slideshow transition, etc.).

    Cheers!
    Peter

    #193760
    This reply has been marked as private.
    #193759

    Hi!

    The only way to change the separator with a child theme would be to overwrite the entire portfolio shortcode file. Crreate a “shortcodes” folder within the child theme directory, then copy the /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php into the child theme “shortcodes” folder and modify the code based on Ismaels instructions (see last post). Then add following code into the child theme functions.php file

    
    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }
    

    It will make sure the the shortcode file of the child theme is loaded first and you can overwrite the parent theme files.

    Best regards,
    Peter

    #193746

    In reply to: Make Top Icon Linkable

    There are serveral ways to achieve this depending on your php skills.

    Easy, but not that good idea is to copy all related files to the child so your modified iconbox.php will be loaded. You need to traverse this back to the file, where the shortcode is executed. In case of Enfold (individual framework) I wouldn’t recommend that.

    Easiest way is simply modifying the original files and track the changes (file, linenumber, etc.). So it’s quite fast to readd the changes in a new version of the theme.

    If you’re familiar with oop, you can write your own code straight into functions.php. In this specific case you should extend the avia_sc_icon_box class overwriting/redefining the shortcode_handler function. Be aware of the ShortcodeHelper reference (removing the wpautop).

    And finally, if you’re familiar with jQuery, go this way. :) Create your own custom.js, append it to the footer, read out the href of each iconbox element and wrap whatever you like to have a link on.

    #193729

    Hi!

    It will probably be fixed after you upload it on a live server. Please give us a link to the website when it becomes live.

    Cheers!
    Ismael

    #193723

    Hi Niels!

    You can add this on your custom.css or Quick CSS to modify the look of the gallery tooltip:

    .avia-tooltip {
    background: #000;
    background: rgba(255, 3, 4, 0.8);
    color: blue;
    }
    
    .avia-tooltip .avia-arrow {
    background: rgba(255, 3, 4, 0.8);
    border: none;
    }

    Make sure that the background of .avia-tooltip and .avia-tooltip .avia-arrow is the same. :)

    Best regards,
    Ismael

    #193720

    Hi MarcG5!

    Enfold is a completely different theme compare to Avisio. The framework is different and it has become more complicated because of the Advance Layout Editor. You might need to recreate a lot of your content manually.

    Cheers!
    Ismael

    #193701

    Hi Michae1!

    To disable the search icon, uncheck this option in Enfold > Header:

    Best regards,
    Josue

    #193683
    This reply has been marked as private.
    #193657
    Kevin
    Participant

    I have several custom defined user roles that I’d live to be able to use in conjuction with enfold’s conditional menu functionality. I’ve enable the conditional menu feature, but the only user roles that I’m being given as options are the stock WordPress user roles. Is there anything that can be done to allow custom defined user roles to be displayed as an option via mega menu? There are several plugins that allow for this but the hard coded conditional menu functionality in enfold creates a conflict that prevents them from working.

    #193651

    In reply to: Widget Area problems

    Hey!

    You can add following code to Quick CSS in Enfold theme options under Styling tab

    #dropdown-2 .widget li {
    clear: none;
    }

    Regards,
    Yigit

    #193650

    Hey Nora!

    Please refer to Peter’s post here https://kriesi.at/support/topic/wpml-flags-of-fixed-menu-with-social-icons-as-dropdown/#post-130278
    You can edit Header.php file in Appearance > Editor.

    Best regards,
    Yigit

    #193646

    Hey!

    LayerSlider shortcodes does not work on Enfold unless you have LayerSlider WP as a standalone plugin. You should go to Media Elements in Avia Layout Builder and add Advanced LayerSlider element to your page http://i.imgur.com/fEEJvap.jpg
    I have added it for you to your contact page

    Cheers!
    Yigit

    #193643
    jazbird
    Participant

    hi,

    is there a way to send an HTML auto responder from the standard Enfold form builder?

    jaz

    #193626
    blueunderground
    Participant

    I am very impressed with how well Enfold is working for us, and we are in the process of purchasing licenses for various client projects.

    Now I have a client that very much wants Flash objects/animations on a couple of pages of her website. She is insistent. I have explained all of the reasons not to, the problems on iOS devices, needing to have graphics in place of Flash when Flash is not supported, the advantages of HTML5, etc. Despite that she still wants Flash on a couple of pages. Experimenting with our own install, I am having difficulty inserting the object code into the text field of a text block.

    So, what options do I have for Flash objects with your Enfold theme?

    Thanks for your help with this!

    #193610
    This reply has been marked as private.
    #193603
    Premanjali2
    Participant

    Is it possible to set up a video gallery that would show thumbnails of videos and when one was selected, it would open to full-screen? I see how the gallery lets you do that with still images, but the video content element only inserts the video at the full size. I’d like to show 3 or 4 columns of videos.

    In the video content element, if you enter a youtube link, is it possible to display the video title and description under or next to the video thumbnail, as is displayed in search results on youtube? Or is it possible to display a bunch of videos based on a youtube playlist?

    I found a WP plugin that lets you display a playlist in a single player and embed that in a WP page or WP Post,

    http://www.cfcms.nl/youtube-auto/

    If I wanted to use that in the Enfold theme, what kind of content element would I use to place the code for that player?

    Or, an even better youtube video gallery, is this one:
    http://www.codehandling.com/2013/02/youmax-10-show-complete-youtube-channel.html

    How can I get that into a page with the Enfold theme?

    Thanks in advance.

    • This topic was modified 12 years, 3 months ago by Premanjali2.
    #193594

    Topic: Lightbox issues

    in forum Enfold
    JaredBurnett
    Participant

    1, I am trying to remove the default lightbox so I can use a custom lightbox like Nivo or simple lightbox.

    After commenting out the line below I deleted the cache, history, etc and the lightbox is still active.

    //activates the prettyphoto lightbox
    //$(container).avia_activate_lightbox({callback:’avia_lightbox_callback’});

    What should I do?

    2. In addition, going to wp-content\themes\enfold\js\prettyPhoto\js and changing allow_resize:true,allow_expand:true to resize:false I got no change and still have the resize option when I do not want it.

    Advice?

    website is http://www.jaredburnettphoto.com

    #193591

    In reply to: Main Menu

    Hi!

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

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

    Best regards,
    Yigit

    #193584
    This reply has been marked as private.
    #193583

    In reply to: woocommerce order-view

    It fixed the problem initially but then it appeared to regress again. After some further investigation it appears that the setting for .woocommerce-account dt{width:30px; display:block; font-weight: bold;} in wp-content/themes/enfold/config-woocommerce/woocommerce-mod.css is limiting the width of the element to 30px.

    I updated the CSS you supplied to the following to resolve it:
    .customer_details dt { margin-right: 10px;
    width: inherit;}

    Neil

    #193582
    sitesme
    Participant

    Some CSS are not displaying properly and I am not able to center the tables properly.

    Check here how the preview is showing on Choices: http://d.pr/i/fU3d/4S81O10o and how it is showing on Enfold: http://d.pr/i/IZIS/5pkka1lD
    The rows are much thinner on Enfold.

    Any quick fix?

    The plugin I’m using is “CSS3 Web Pricing Tables Grids”

    Is there also a way to centre the table on the page? I tried center alignments with <p> and <div> but nothing worked so far.

    Thanks a lot.

Viewing 30 results - 233,761 through 233,790 (of 244,284 total)