Viewing 30 results - 10,531 through 10,560 (of 11,179 total)
  • Author
    Search Results
  • #201590
    EatZeBaby
    Participant

    Hello!

    I just updated both WordPress and Enfold to the latest version (2.5 & 3.8) and I am having issues with the slider and some other hover icons.
    http://www.fuckmynose.com
    On the homepage, you can see the layer slide but on the right arrow and on the stop button, you can see some extra text (‘; font-family:’) . Same thing is happening here on the categories hover image : http://fuckmynose.com/boutique/
    My knowledge in html/css is kinda limited and after 45mn, I decided to ask you if you could help me out!

    Thank you very much for your support.

    Axel

    • This topic was modified 12 years, 1 month ago by EatZeBaby.
    #201505
    zerozendesign
    Participant

    Hi guys,

    on http://codelessme.com/pt, I added two sidebar buttons using shortcodes. I’m a little confused as to the default widget styles and it is causing the styling for the button itself to not cooperate.

    For example

    .sidebar_button {
       background-color: #ecf3fb;
        font-color: #666666;
        width: 100%;
        margin-bottom: 10px;
    }

    That is what I have assigned to that button, yet it isn’t actually assigning it to the button, it is assigning it to each individual container. In other words, adding a background BEHIND the button. Right now, I have simply matched both the background and the button background to display seamlessly.

    Additionally, how do you reduce the top and bottom default padding of sidebar widgets? I was originally just going add some text to the sidebar and then add a background with padding to achieve what I am now having to do with the buttons, but I could not figure out for the life of me, how to reduce the default padding. Even when I set the padding, added important, etc, it didn’t apply. I was applying those specifically to .widget-3. It did indeed add the background color, changed the text color, etc, but would not change the padding. Even the text widget that I inserted the buttons into have a bottom padding that I can’t seem to adjust.

    • This topic was modified 12 years, 1 month ago by zerozendesign. Reason: title typo
    #201483

    1) I (or someone else) may have already requested this, don’t remember, but I really need the option to make a dropdown list of the portfolio filters. Have too many filters atm (especially for mobile), so I need it more compact. A dropdown like here would be perfect:
    http://goo.gl/jJKCDU

    2) I’m sad there’s no non-fullwidth masonry option in the latest Enfold update.

    3) If I remember correctly, for the masonry element, there was the intention of adding an automatic “load more” instead of a button for the next Enfold update. Is this still planned?

    #201449

    Hey jmalevic!

    1) Open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider.php and replace

    
                        if($show_meta && !empty($excerpt))
    					{
    						$output .= "<div class='slide-meta'>";
    						if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    
    							$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						}
                            $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
    						$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    						$output .= "</div>";
    					}
    

    with

    
            if($show_meta && !empty($excerpt))
            {
                $output .= "<div class='slide-meta'>";
    
                $taxonomies  = get_object_taxonomies(get_post_type($the_id));
                $cats = '';
                $excluded_taxonomies =  apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id);
    
                if(!empty($taxonomies))
                {
                    foreach($taxonomies as $taxonomy)
                    {
                        if(!in_array($taxonomy, $excluded_taxonomies))
                        {
                            $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
                        }
                    }
                }
    
                if(!empty($cats))
                {
                    $output .= '<div class="slide-meta-comments">';
                    $output .= $cats;
                    $output .= "</div><div class='slide-meta-del'>/</div>";
    				        }
    
                $output .= "<div class='slide-meta-time updated'>". get_the_tag_list( __('Tags:','avia_framework').' ', ',') ."</div>";
    
    						$output .= "</div>";
    					}
    

    2) Please try to use Codestyling to translate all text strings within the theme code: http://wordpress.org/plugins/codestyling-localization/
    Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to search for all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Regards,
    Peter

    #201069
    Oli
    Participant

    Hi,

    I’m using Enfold 2.4.2 and I have a lot of problems with Internet Explorer (up to date) on Windows XP :
    – when I use two “50% width” columns, the second column is under the first one…
    – The mega menu doesn’t word at all
    – The social buttons in the fixed top header are not displayed.

    For example :
    http://www-test.mines-telecom.fr/

    Could you help me ?

    Thanks

    #201016
    This reply has been marked as private.
    #200889

    Hi!

    1) Please see Kriesi’s post here https://kriesi.at/support/topic/no-gradient-in-buttons-v-2-4/#post-178780
    2) Can you post a screenshot of and show how you would like it to look on mobile?
    3) Please add following code to Quick CSS in Enfold theme options under Styling tab

    #dynamic-to-top { display: none!important; }

    Cheers!
    Yigit

    Thanks for the fix.
    I also wanna change the style of sort. I dont wanna put “/” between categories. But probably put”*” or “|”.
    Is there also a way of adding button styles to sort?

    Thanks

    #200446

    In reply to: menu color

    Hi!

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

    .header-buttons { top: 0; }
    .sub_menu { display: none; }

    It should look like this http://i.imgur.com/bSkhdZs.jpg
    Best regards,
    Yigit

    #200433

    Hi SteveRousseauDesigns!

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

    .single-portfolio .avia-post-nav { display: none; }

    Best regards,
    Yigit

    #200413

    Hi,

    Since it’s not possible to restrict the next/previous buttons to one category on a portfolio-item ( ref : post #177888 by Dude) is there a way to not display the Preview and Next buttons?

    Here is a link to my website : http://steverousseaudesigns.com/

    You will see that I use a portfolio grid on my “Colorways” page sorting on three categories. When you clic on one portfolio item from this page, this is where I would like to hide the Preview and Next buttons.

    Thank’s your help!

    By the way…the Enfold theme and all its functionalities are amazing!!!

    This reply has been marked as private.
    #200242

    In reply to: top menu

    Hey kecster2!

    1) You can go to Appearance > Menus and uncheck Enfold secondary menu
    2) Can you elaborate? If you would like to add a border under them, please add following code to Quick CSS

    .header-buttons { border-bottom: 2px solid blue; }

    Best regards,
    Yigit

    #200177

    I just found the problem. On the Enfold page, the Themeforest “You have already purchased this file. You can download it here. If you wish, you can purchase it again.” download link is for 2.1.

    I just went to my account’s download page and downloaded all the files and documentation and only the WordPress files. The version file in the “All files and documentation” folder says 2.4.2. The style.css file in the WP only file says 2.4.2.

    Now I understand why WP was saying there was an update, but then why did it say that it was up to date when I went to click on the update theme button.

    #200085

    Topic: Layer slider

    in forum Enfold
    katana
    Participant

    Hi,

    I purchased just now and unfortunately layer slider doesn’t work properly ??

    1- I try to insert the short code on page [layerslider id=”1″] but nothing appear…

    2- In transition builder your can see on top of page :
    Warning: file_get_contents(/xxxxxxxxxxxx/wp-content/themes/enfold/config-layerslider/LayerSlider/sampleslider/sample_transitions.js) [function.file-get-contents]: failed to open stream: No such file or directory in xxxxxxxxxxx/wp-content/themes/enfold/config-layerslider/LayerSlider/builder.php on line 14

    3- the slider show circle timer on preview and not bar timer (the button don’t work on global setting, stay every time on circle bar, )

    Strange start with this template , your help will be great

    Thx in advance for your quick reply

    • This topic was modified 12 years, 1 month ago by katana.
    #199236

    Hi!

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

    .avia-builder-el-1 avia-button-center { float: left; padding-right: 10px; }
    .avia-builder-el-1 .avia-button.avia-size-medium { min-width: 250px; }

    Cheers!
    Yigit

    #199209

    In reply to: Minify, Lazy Load

    Hi Devin, thanks for reply..!

    I have tried it with bwp-minify. It breaks my site. It can happen that there is a conflict with other stylesheets from Plugins, I don´t know.

    But I think that I have found a solution. Perhaps it is informative for other users.. Try out which one is the best for you.

    “AssetsMinify’s” can be a solution, but I must exclude all enfold styles and scripts to get it work without issues. Not so great.. And it´s out of the box unusable with CDN. You have to config a new path in the php-files for it.. But it seems that it is very terrible for the loading time of the website. It needs more time than the theme itself. Checked it with P3..

    “Autoptimize” works good in Chrome and Firefox, but it breaks in Safari (all OSX). Cool for usage with CDN.

    Very cool Features are included in “Dependency Minification”. After you have installed it you have to open your websites Frontpage. The rest will done from the plugin. It combine different resources inside Header and Footer. Here the same, it works very well in Chrome and Firefox, but breaks in Safari..

    My Solution for CSS: “MinQueue” .. ! After you have installed it, you have to go to the options to enable the helper. After this, open the Frontpage in a new tab in the same Browser. Now in you´re adminbar is a Button “MinQueue”. Click it. Now you can see a list of all scripts and styles been loading with you´re website in the right order.
    Select all other files without the files from enfold and put them in the box. Then create a new queue and insert just the enfold styles in it, but also in the right order.
    It works without any issue in Firefox, Chrome and Safari, the files are pulled from CDN and it has good performance values.

    I don´t config it out with the scripts this moment. Wanna do this in the next days..

    Regards

    #199208

    In reply to: textbox in sidebar

    Hi!

    You can add Promobox element without a button and remove background color by adding following code to Quick CSS in Enfold theme options under Styling tab

    .main_color .av_promobox { background-color: inherit; }

    Regards,
    Yigit

    Thank you for taking a look at the site, I passed your server suggestions down to our tech support, and the # = # issue seems to be resolved for now. Lets hope it doesn’t pop back up later down the road xD!
    I’m stuck with the prettyPhoto issue still. I am using a stand-alone html file that simply has the code (features chart) I need to display. I’m doing it this way rather than inline text, because there is a good chance I will have to create this same button on several pages. I’ve been working on the iframe and AJAX solutions, with no luck. I’ve tried everything suggested in both Enfold’s documentation and prettyPhoto’s documentation. How can I check to see if prettyPhoto is active or possibly broken? Oh and is the ‘rel’ tag supposed to be rel=”prettyPhoto” or rel=”lightbox” (I’ve tried both)??

    Enfold Documentation states:
    Lightbox: a custom pretty photo skin
    the lightbox gets automatically applied to links that contain images, youtube videos, vimeo videos, mov files and swf files. if you don’t want to activate the lightbox on any of those links add the class ‘noLightbox’. if you manually want to apply the lightbox to a link you can add the rel=’lightbox’ attribute to the tag.

    I’ve also taken the code directly from the prettyPhoto Website’s examples, which the description will state to add rel=”prettyPhoto” but then the example code shows rel=”prettyPhoto[iframes]”, so which is it?! Lol, I appreciate your time and help with this issue. Hopefully this is just an easy and simple fix.

    #199003

    Hey ShortieD!

    Can you post the link to your Enfold website?

    Cheers!
    Yigit

    #198632

    Hi!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as desired

    #menu-item-2709 a {
    padding: 5px;
    background-color: blue;
    color: white; 
    }

    Best regards,
    Yigit

    #198120

    Hi!

    You mobile menu looks fine on my end http://i.imgur.com/R5Ahw6x.png Please flush browser cache on your mobile device.
    You can make your posts private by checking ” Set as private reply (Only you and moderators will see the content of this post)” above Submit button

    Best regards,
    Yigit

    #198075

    Hey!

    Probably will not happen as Kriesi likes to have the default theme on your first install have a solid look. Since the theme doesn’t have a text only title option there would just be a bit blank space for where the logo should be.

    You would be surprised at the number of users who just install the theme, see that it doesn’t look like the demo and immediately complain :)

    Also for child themes, we recently added a import parent theme options button that appears when you install a child theme. So you can switch at any time.

    Cheers!
    Devin

    #197873
    surfagency
    Participant

    HI
    I just installed this theme Enfold. And I would now like to import the dummy data. But when I try, following text appears:
    “Import started. Please wait a few seconds and dont reload the page. You will be notified as soon as the import has finished! :)”

    … And nothing seems to happen! – This text is now there permanently.

    could there maybe be something wrong with the installation?, because in “ENFOLD > Theme options” the setting looks different than the tutorial videos.. fx the buttons: (IMPORT DUMMY DATA) just appears as a link.. etc.

    hope to get an answer:)

    – Michael

    #197059

    Hey!

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

    #bbpress-forums div.bbp-search-form {
    float: right;
    width: 100%;
    }
    #bbp-search-form #bbp_search {
    width: 75%!important; }

    Best regards,
    Yigit

    #196967

    I solved the problem. I just checked the “Enfold Main Menu” Button at Menu options.

    #196956

    Nothing…
    I didn’t work either… I truly don’t know what to do…

    I deleted the dynamic css stylesheet located in wp-content/uploads/dynamic_avia/. Deleted the file “enfold.css” within the folder and made sure that the folder is writable (777 chmod permission), Then went to the theme option page and hit the “Save” button to regenerate the dynamic stylesheet.

    At the same time, I also deleted all the .css files within that directory, related to each language: enfold_de.css, enfold_fr.css, enfold_it.css, enfold_sp.css.

    I reset all the settings of WPML and deactivated the plugin.

    I deleted all the pages previously created with WPML

    I reactivated WPML and restarted the configuration…

    When I went to click on the homepage and clicked on the flags…same result as before!

    the french homepage looks fine whereas the styles of all the other languages are all messed up like before!

    How is that possible that there is no way to reset/delete/restart from zero whatsoever?

    Please can you look into that and see if there is a hack or something that can work?

    Here are the ftp credentials:

    • This reply was modified 11 years ago by Elliott.
    #196919

    Hi!

    Please try to delete the dynamic css stylesheet located in wp-content/uploads/dynamic_avia/. Delete the file “enfold.css” within the folder and make sure that the folder is writable (777 chmod permission), Then go to the theme option page and hit the “Save” button to regenerate the dynamic stylesheet.

    Cheers!
    Peter

    #196852

    Hi!

    Please go to wp-content\themes\enfold\config-templatebuilder\avia-shortcodes folder and open buttons.php file and add nofollow in 226th line as shown in screenshot http://i.imgur.com/IPkRTFQ.jpg

    Regards,
    Yigit

    #196791

    Peter, I am not a coder and really don’t want a “work around” for this problem. I purchased the Kriesi Enfold theme as it allowed me (a business person, who cannot code and doesn’t want to code) to build a relatively basic website which includes a current blog, really easily.

    When I am writing a post/blog and I press the return key, I expect a paragraph to be entered. I shouldn’t have to, (nor should anyone else) go into the text section of the post and enter <p> & </p>, <br> & </br> tags to force a paragraph. That is the bare minimum one would expect from a wysiwyg type editor such as the one in WordPress.

    I just want to know how to fix my theme so when I hit the return/enter button the <p> or <br> tags are inserted

    Thanks

    Steve

Viewing 30 results - 10,531 through 10,560 (of 11,179 total)