Viewing 30 results - 135,961 through 135,990 (of 142,833 total)
  • Author
    Search Results
  • #201528

    Hey!

    Please refer to this post https://kriesi.at/support/topic/footer-socket-question/#post-193649

    Best regards,
    Yigit

    #201523
    logishkas
    Participant

    Hello!

    First of all, what a great theme it is. Thanks to the whole team for the effort : )

    I’ve encountered some problems using it and here are my solutions:

    1) There was a discussion earlier about a table bug which results in wrong order of row labels on mobile devices (https://kriesi.at/support/topic/table-bug-enfold/). As I understand, there is no element zero in CSS, so changing line 282 in \config-templatebuilder\avia-shortcodes\table.php
    $responsive_style .= ".avia-table-".self::$table_count." td:nth-of-type({$counter}):before { content: '".$row['content'][$counter]['content']."'; } ";
    to

    $fix = $counter + 1;
    $responsive_style .= ".avia-table-".self::$table_count." td:nth-of-type({$fix}):before { content: '".$row['content'][$counter]['content']."'; } ";

    should fix the problem.

    2) I was also annoyed by the resulting quality of scaled logo images in Firefox. Adding
    .logo img{image-rendering: auto;}
    to \css\custom.css should improve it (https://developer.mozilla.org/en-US/docs/Web/CSS/image-rendering).

    Hope it helps someone. Good luck!

    • This topic was modified 12 years, 3 months ago by logishkas. Reason: Typos
    #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, 3 months ago by zerozendesign. Reason: title typo
    #201466

    In reply to: Scrollmenu

    Hi Josue,
    now the scroll-menu is at the top. Thanx.
    Is there a way that it starts after scrolling 200 px?

    And i got another porblem.
    Can someone take a look with the internet Explorer?
    It´s not scrolling, it´s “jumping”.

    Cheers,
    Markus

    • This reply was modified 12 years, 3 months ago by der_mueller.
    #201465

    Hey!

    This makes it really difficult to give you specific instructions. A general hint would be to increase the size of the social icons: https://kriesi.at/support/topic/add-youtube-social-icon-to-header/#post-199839 – by going this way you’ll increase the height of the social icon bar and then you’ll have enough space for the dropdown.

    Cheers!
    Peter

    #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

    #201429

    Topic: Boxed layout in mobile

    in forum Enfold
    markbener
    Participant

    I would like to have a boxed layout in my desktop version of my website however do NOT require it in mobile i.e.. iPhone iPad etc.
    I would appreciate code to exclude boxed layout in mobile.

    Regards,

    Mark

    #201417

    Hi allaboutapps!

    That topic is for a different theme and is not applicable. For right now there is unfortunately no method for adding tracking to the form builder element but it is something that is in the pipeline for a future feature.

    Regards,
    Devin

    #201411

    Hi!

    I’ve tagged the topic for Peter so if he has a fix he’ll be able to respond easily.

    Regards,
    Devin

    #201398

    Thank you.

    I just saw another missing vertical line. I think its because of update to 2.5 today.

    It supposed to be be left, from top to bottom, parallel to the line that cuts the menu to the content right. Sorry for my bad english, hope you know what I mean.

    And in addition if you know, is there any way to add an option under login, like “register”? Because theres only standing “forgot password?”

    Thank you Yigit

    milatch

    #201387

    Topic: logo covering menu

    in forum Enfold
    genkidesign
    Participant

    Hello, I have been using the Enfold them and have been really happy.

    My client has been telling me that she’s having a problem with the way the logo is viewing though next to the menu. It is fine on all computers that I have looked at it but she says that the logo loads in and moves down over the top of the menu and stays there. I have gotten her to update her browser (she was using Explorer and is now on Chrome on a PC) but the only other thing I can think of is maybe she has a slow internet connection.

    She said that the logo used to eventually settle into place but now it stays sitting over the top of the menu. I am at a loss as to how to fix this for her or what to suggest. I can’t see the problem myself on my computer, phone or ipad.

    Can you help in any way?

    The website is: http://www.cw.genkidesign.com.au

    Thank you!!

    #201383

    Hi!

    Please try flushing browser cache and refresh your page a few times. Slide out menu is displayed on my end.
    You can refer to the first part of this post to change the width to switch to mobile menu https://kriesi.at/support/topic/browser-issues-in-firefox-and-ios-ipad/#post-198342

    Cheers!
    Yigit

    #201368

    Hi!

    Please add following code to Quick CSS as well

    #pw_login_widget-2 { padding-bottom: 0; }
    #top input[type="text"] { margin-bottom: 10px; }

    Best regards,
    Yigit

    #201347

    In reply to: Scrollmenu

    Hey!

    Try adding this code to the Quick CSS:

    .header-scrolled #header_main{
    margin-top: 0  !important;
    }

    Cheers! 
    Josue

    #201345
    Stormsource
    Participant

    In the Enfold settings page, I have “Frontpage Settings” set to a page called Home, and Blog set to a page called Blog.

    The Blog page loads fine, but the actual post does not load beyond the top nav. I’m not getting any errors (at least not that I can see), but the code just ends at <div id=’main’>

    Any thoughts on where the issue could be?

    In the blog I created a parent category “Blog” and sub categories under that.
    There are also a number of plugins installed, but haven’t disabled them all yet to test.
    Here’s the link: http://www.appointmentplus.com/blog/

    Hey K!

    You’ll need to re-add in the entire parent function with your new sizes in the array. For reference: https://kriesi.at/support/topic/generate-new-image-sizes-in-child-theme/?replies=4#post-125496

    Best regards,
    Devin

    #201331
    MHM
    Participant

    Hi there, I have a couple of pages that I decided to make top-level pages in my menu. I manually changed this in the menu, but I am unable to reorder it when I edit the page. Consequently, my page slug still shows <parent-name/page> instead of just <page>. I set it to “no parent page,” and it looks fine, but after I click update, the page is back where it was before I tried to edit it.

    PS – In case it is relevant, my site is translated (using WPML).

    #201324

    Thanks buddy, that worked perfectly.
    Could you tell me how to get the Login fields on the the left side at the top closer to each other. They look too far away from each other. Also the distance to the next “Search Field Widget” is too far. I dont know how to fix that.

    Would be awsome!

    Thank you

    milatch

    #201323

    In reply to: Animation

    Re-updating didnt fix it. The spinning animation wouldn’t stop the problems on the other page though. No one knows what is going on here?

    #201322

    This topic is what helped me, for anyone having this need:
    https://kriesi.at/support/topic/fullscreen-element/

    greg

    #201280

    Topic: Structured Data 2

    in forum Enfold
    Mono14
    Participant

    Hi,
    some days ago I posted this topic: https://kriesi.at/support/topic/structured-data/
    Today, the message from google webmaster tools is still the same: http://i.imgur.com/hbD1UlT.png
    Could you check for the same in your own enfold sites to check this?

    Is there another way to verify structured data? Sorry, I know almost nothing about this topic!
    Thx!

    #201274

    Topic: Links and pages

    in forum Enfold
    dsauce
    Participant

    Hello,

    I added “Research” to the main header menu. This page has topics which will be links. I have created pages for these topics and want to know how to link to them and have them open within the site. I do not want the page to open in a separate browser window. I just want it to open the page within the site. How do I link to the pages?

    Any assistance is deeply appreciated

    #201259

    You are welcome, glad we could help :)

    Regards,
    Josue

    #201249
    This reply has been marked as private.
    #201234

    Greetings Josue:

    Okay, just rebuilt it and got it working again. Thanks for your speedy work!

    Best Wishes,

    Bob

    #201230

    Hi!

    The “Side List” Widget is empty: http://rudimovie.org/webworks/wp-admin/widgets.php

    It may be caused due to the WP upgrade.

    Best regards,
    Josue

    WEBIGAMI
    Participant

    Hi there,

    the logo and the image in the header are being displayed not correct installing after the updates. Could you please help quickly?

    It’s about these two quick css lines:

    1) Logo not too big when normal and when responsive:
    @media only screen and (max-width: 480px) {
    .responsive .logo { height: 45px; }}

    2) Position of the image in the header:
    .bok { margin-right: 120px; }

    Here you find the last topic: https://kriesi.at/support/topic/header-in-different-colors-and-portfolio-image-size/#post-194364

    This is the website: http://www.webigami.de/skcc

    Thank you!

    Cheers,
    Jan

    #201205

    In reply to: White Space Height

    Hey!

    Please try adding following code to Quick CSS

    .main .content { padding-top: 0; padding-bottom: 0; }

    Best regards,
    Yigit

    #201169

    Hey Peter,

    thanks for having a look into this topic. I waited for the theme update, but unfortunately the update didn´t do as expected. Maybe I wasn´t clear with my previous description.

    This picture shows how the photo meta should be displayed: “alt” text above and “description” below the picture (at least this is the normal behaviour within this theme).

    But with product images it is totally different – and even worse after the update:

    With enfold 2.4.3 the “title” is shown above the image instead of the “alt” text.
    And instead of the “description” below the photo, the “alt” text is displayed.

    Thanks for your help!

    #201167

    In reply to: Logo Größe

    :) great, it works!

    Maybe you can help me with my other problem or reopen the topic?
    https://kriesi.at/support/topic/seltsamer-fehler/

Viewing 30 results - 135,961 through 135,990 (of 142,833 total)