Viewing 30 results - 136,051 through 136,080 (of 142,938 total)
  • Author
    Search Results
  • #201635

    Hi Yigit,

    thanks for your help. The problem was, that I haven’t refreshed my WordPress-Pages within WordPress.

    Topic is closed! :)

    Best regards
    Chris

    #201633

    Topic: Breadcrumb problem

    in forum Enfold
    cyrtocara
    Participant

    Hello,
    i have an issue with breadcrumb on post,
    they do not work on some topic; but not all

    i used WP3.8 and latest Enfold version

    #201627
    JPOsteen
    Participant

    I have created a blank page with a single fullscreen slider image to display while I am designing the website. There is a small line or border appearing at the bottom of the image when I view the page in Safari browser on my MacBook and iPhone. When I use Firefox, the line is at the top of the page. http://www.LoveRescues.org

    How can I remove these lines?

    #201626
    Yeowza
    Participant

    Hello, really having fun with Enfold.

    I noticed that if you use the blog shortcode ( single author style as seen here, http://kriesi.at/themedemo/?theme=enfold ), with no sidebar then it displays differently with the image being on top instead of floating left.

    Is there anyway to have it display the same with or without a sidebar?

    If it means I have to mess with PHP then that’s okay, don’t worry about it.

    • This topic was modified 12 years, 4 months ago by Yeowza.
    #201608

    Hey!

    Do you mind creating a temporary admin login and posting it here privately so i can take a look?
    I think it will be easier to remove title and add Special Heading element on top of your page with title then to customize using CSS

    Cheers!
    Yigit

    #201597

    I added a \ and it worked!

    #top .ls-nav-next:before {
    content: '\\E87d';
    font-family: 'entypo-fontello';
    }

    Thank you very much for your help!

    • This reply was modified 12 years, 4 months ago by EatZeBaby.
    #201593

    Hey Lili!

    It is ok. Thank you for your understanding. I am marking this thread as resolved. I will answer your question in your other topic

    Regards,
    Yigit

    #201591

    Hi EatZeBaby!

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

    #top .ls-nav-next:before {
    content: '\E87d';
    font-family: 'entypo-fontello';
    }

    Regards,
    Yigit

    #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, 4 months ago by EatZeBaby.
    #201581

    Hi Yigit,

    Thanks very much.

    Also sorry for opening up another support request earlier. I had no idea how your system works – I thought because I already had, had a response from someone the request for help may not still be being dealt with. I will work out how to fix the Hexagon issue with that tutorial.

    I am still struggling with the lines issue in the other topic I started here https://kriesi.at/support/topic/css-tweaks-and-misc-theme-queries/

    I have tried everything I can think of and any help would be much appreciated when you get the time.

    Kind regards

    Lili

    #201576
    baiker
    Participant

    Since I updated on WP 3.7.1 (de) and enfold 2.4.2, I got problems with navigation between portfolio sites. On portfolio pages with a advanced slider on top, followed by a color section with content, the side navigation on the portfolio site is not shown, so I can not navigate between the portfolio items. Without slider, it works.

    See closed topic https://kriesi.at/support/topic/problems-with-avia-sliders-in-portfolio-items/#post-195717

    I changed to enfold 2.5 as recommended by Peter, but unfortunately, the problem still exists. What can I do?

    Thanks, René

    • This topic was modified 12 years, 4 months ago by baiker.
    #201574

    Hey!

    To change font size of job title, see H3 font size in my previous post and add following code to change its color

    .main_color h3 { color: red; }

    it will change color of all H3 elements using main color you can also use

    .alternate_color h3 { color: blue; }

    Blog titles are H2 elements, you can see font size in my previous post as well. You can add following code to Quick CSS to change color

    #top h2 a { color: purple; }

    Regards,
    Yigit

    #201567

    In reply to: "change style" widget

    Hi!

    I have not used such plugin but you can search it on WordPress repository http://wordpress.org/plugins/
    Here are the recommended plugins list https://kriesi.at/support/topic/recommended-plugins-last-update-04-09-2013/

    Regards,
    Yigit

    #201562

    Hi xxl!

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

    .html_boxed #main { padding-top: 30px; }
    .content { padding-bottom: 80px; }

    Regards,
    Yigit

    #201552

    Hey Lilipie!

    I see that you already have opened topics regarding to both of your questions. Please do not start the same topic more than once, it makes it harder for us to follow up. I am closing this one.

    Regards,
    Yigit

    #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, 4 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, 4 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, 4 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/

Viewing 30 results - 136,051 through 136,080 (of 142,938 total)