Viewing 30 results - 141,181 through 141,210 (of 142,524 total)
  • Author
    Search Results
  • #127329

    In reply to: Form Working Problem

    Hi Ismael,

    thank you. Unfortunately I didn’t have the time to try Nick solution yet. But I temporarely deactivated both plugins. Please don’t close the topic if it’s possible, the problem on my site is still on. I will be able to do some more testing in a couple of weeks and report the results.

    Thank you,

    Lucia

    Nope, it’s already Stretched Layout. :(

    Hi,

    On Enfold > Styling > Use stretched or boxed layout?, select Stretch Layout.

    Regards,

    Ismael

    #127844

    Hi!

    Try:

    #top .widget .textwidget ul{
    list-style: disc inside;
    }

    Regards,

    Peter

    Hi!

    Did you find a solution? I’m asking because the topic is marked as resolved.

    Regards,

    Peter

    #114698

    Add Xing to Social media icon list.

    I can’s find it on the accepted list, but Kriesi annpounced already here: https://kriesi.at/support/topic/xing-icon

    When is it coming?

    Boris

    #127880

    In reply to: .po file compatibility

    Hi,

    They have different framework so the .po files for Abundance or Replete will not work perfectly on Enfold. You can visit this link: https://kriesi.at/support/topic/please-contribute-and-translate-enfold

    Regards,

    Ismael

    #127302

    Hi,

    If you are working on my instructions, I’ll repeat it again.

    You can replace an existing icon with the youtube icon. On Enfold > Header > Add the Tumblr social icon for example. Place your apple link. When you’re done, edit custom.css then add this code:

    #top .social_bookmarks_tumblr {
    background: url(../images/apple.png) no-repeat center;
    }

    #top .social_bookmarks_tumblr:hover a {
    color:#fff;
    background: url(../images/apple-hover.png) no-repeat center;
    }

    #top .social_bookmarks_tumblr a {
    text-indent: -9999px;
    }

    You don’t need to do Dude’s code. Yes, you need two icons for the initial and hover state. If you want a different color for the hover, you need to edit the apple-hover via Photoshop and change the background color manually.

    Regards,

    Ismael

    Regards,

    Ismael

    #127585

    Hi,

    You can use this

    .header_color li, .header_color span  {
    border-color: black;
    }

    Regards,

    Ismael

    #25739
    shortow
    Participant

    When i insert an image on a page an enlarged 2nd version of that image appears top of page

    Happens regardless of whether image is uploaded, inserted from URL, or image links settings (Custom URL, Media File, None etc)

    Doesn’t happen for posts, just pages.

    eg **http://livedealer.org/dev/test/**

    help appreaciated

    cheers

    #25735

    Topic: Header and SM Icons

    in forum Enfold
    lifeundone
    Participant

    Hi,

    Is there any way to have the header with menu below AND have SM icons in the top row with the extra navigation?

    Cheers,

    Mitch

    No I didn’t receive anything. Make sure to include a link to this topic in the body of the message or my spam filter grabs it and I can’t see it.

    Hi Devin, just wanted to make sure you got my email on the section padding on mobile / responsive layout. I got the images flush to bottom on desktop devices but the mobile side adds about 30px extra padding on bottom of each section which forces images up. Could you let me know what code to edit to remove the additional padding that is added to sections on mobile devices?

    Thanks much,

    Chris

    #25733
    lifeundone
    Participant

    Hi,

    I have looked thru all the posts on this topic and have tried every css option you have shown people and I can not get my menu color to change to white.

    http://karenfantin.com/

    I want the whole menu to be white and not orange.

    Thanks so much for your help.

    Mitch

    #126098

    I tried to create my own progress bars by customizing this tutorial: http://www.red-team-design.com/stylish-css3-progress-bars

    using this in my custom.css:

    .progress-bar {

    background-color: #fcfcfc;

    height: 25px;

    padding: 1px;

    width: 100%;

    margin: 5px 0;

    -moz-border-radius: 2px;

    -webkit-border-radius: 2px;

    border-radius: 2px;

    -moz-box-shadow: 0 1px 5px #e1e1e1 inset, 0 1px 0 #f4f4f4;

    -webkit-box-shadow: 0 1px 5px #e1e1e1 inset, 0 1px 0 #f4f4f4;

    box-shadow: 0 1px 5px #e1e1e1 inset, 0 1px 0 #f4f4f4;

    }

    .progress-bar span {

    display: inline-block;

    height: 100%;

    -moz-border-radius: 3px;

    -webkit-border-radius: 3px;

    border-radius: 3px;

    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;

    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;

    box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;

    -webkit-transition: width .4s ease-in-out;

    -moz-transition: width .4s ease-in-out;

    -ms-transition: width .4s ease-in-out;

    -o-transition: width .4s ease-in-out;

    transition: width .4s ease-in-out;

    }

    .blue span {

    background-color: #00b6f1;

    background-image: -webkit-gradient(linear, left top, left bottom, from(#00b6f1), to(#058ff2));

    background-image: -webkit-linear-gradient(top, #00b6f1, #058ff2);

    background-image: -moz-linear-gradient(top, #00b6f1, #058ff2);

    background-image: -ms-linear-gradient(top, #00b6f1, #058ff2);

    background-image: -o-linear-gradient(top, #00b6f1, #058ff2);

    background-image: linear-gradient(top, #00b6f1, #058ff2);

    }

    .orange span {

    background-color: #fecf23;

    background-image: -webkit-gradient(linear, left top, left bottom, from(#fecf23), to(#fd9215));

    background-image: -webkit-linear-gradient(top, #fecf23, #fd9215);

    background-image: -moz-linear-gradient(top, #fecf23, #fd9215);

    background-image: -ms-linear-gradient(top, #fecf23, #fd9215);

    background-image: -o-linear-gradient(top, #fecf23, #fd9215);

    background-image: linear-gradient(top, #fecf23, #fd9215);

    }

    .green span {

    background-color: #a5df41;

    background-image: -webkit-gradient(linear, left top, left bottom, from(#a5df41), to(#4ca916));

    background-image: -webkit-linear-gradient(top, #a5df41, #4ca916);

    background-image: -moz-linear-gradient(top, #a5df41, #4ca916);

    background-image: -ms-linear-gradient(top, #a5df41, #4ca916);

    background-image: -o-linear-gradient(top, #a5df41, #4ca916);

    background-image: linear-gradient(top, #a5df41, #4ca916);

    }

    and this, to call a bar inside e.g. a text-element:

    <div class="progress-bar blue">

    <span style="width: 40%"></span>

    </div>

    <div class="progress-bar green">

    <span style="width: 60%"></span>

    </div>

    <div class="progress-bar orange">

    <span style="width: 80%"></span>

    </div>

    Works great on any device tested so far. Also I would suggest to create a Shotcode for the skill-bars, since the code got changed everytime I tried to re-adjust it inside my textbox, so I had to type it in again to work.

    DEMO: http://roberthunecke.com/redesign/skillbars_test/

    #127584

    Thanks Peter,

    The code helped with most of the vertical lines. There are still lines on the left where the social icons are and one on the right next to the phone. Here is a link http://www.omglovetwins.com/test

    Would it be possible to make them black as well?

    Thanks,

    jasmine

    #126005

    The issue is apparently the Video component in the 1/3 column to the right in the color section. Once I remove that the margins are aligned properly.

    Can you verify that and provide a solution?

    #123192

    Hi,

    Is Brode even a page or just a reference mark since I don’t remember seeing any page link for it anywhere? It feels like there is an offset somewhere. If you are interested in finding out you can do a test by switching Brode with another menu item and seeing if first menu item changed, will now lose highlight color and brode gets it in 2nd or 3rd position.

    I can give you the css to fix the problem however

    #top.page-id-1740 ul #menu-item-1765 a {
    color: #001A4A;
    }

    Thanks,

    Nick

    I’m sorry, I forgot to mention that the sidebar has nothing to do with it. I only activated it to make the problem more visible. Check the links above again to see how it looks without the sidebar.

    As you can see, the fullscreen slider is still forced to a certain width instead of fullscreen. Something must still be wrong. No sidebar issue.

    #126803

    Hi!

    Yes it will remove the wpautop filter: http://codex.wordpress.org/Function_Reference/wpautop from all text elements. I’ll talk to Kriesi – maybe he can improve the the filter logic somehow.

    Best regards,

    Peter

    Hi,

    You can control them with the column layout. Set the page to “No Sidebar”. Insert the fullscreen slider. Add a 1/1 column below then insert the video. Below, add a 1/4 column then insert a Sidebar element. Beside the 1/4 column, insert the 3/4 column for the content.

    Regards,

    Ismael

    #124522

    Hi,

    Using this test site: http://responsinator.com/?url=http%3A%2F%2Ffixionmedia.com%2F

    I can see the scroll to top button.

    I’ll tag Devin to check this further.

    Regards,

    Ismael

    #127894

    Hi,

    You can add something like this on your custom.css or Quick CSS

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

    @media only screen and (max-width: 767px) {
    /* Add your Mobile Styles here */
    .avia_transform .avia_start_animation.bottom-to-top.avia_image {
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    animation: none;
    opacity: 1;
    }

    }

    Regards,

    Ismael

    #25701
    Jason
    Participant

    I created a thread the other day at but it was closed for replies before I could implement the suggestions. I had a few issues (1-4), and also have a few more questions (5-)… hope you can help.

    1. The more tag does not work in the home page news slider :( The avia slider seems to be cutting the text off on it’s own accord. Any tips appreciated!

    2. Had to use

    #top .avia-post-nav {

    display: none;

    }

    but that worked a treat, thanks. It’d be nice for page optimisation to prevent it from being generated, though…

    3. I added the new twitter code, but im getting padding at the top of it and lots of padding at the bottom. Any ideas how to pack this up?

    4. OK – may be the same issue above.

    5. New question. I have a problem with the single blog post with sidebar. If I enable the sidebar, I get a nice single post view with a left aligned image and text to the right. The problem is, the sidebar, even though configured for left, shows up on a product page in the woocommerce store. I don’t want a sidebar anywhere really, but if I disable it the single blog post view gives a centered image with text underneath that I don’t like the look of. Any ideas?

    6. New question. Is there a way to set the height of rows in each column of the multi-column table so they are all the same?

    7. New question. What’s the easiest way to get a set of social icons in the footer?

    8. New question. With a browser width of ~1024px, the action icon links on the Team Member elements at wrap around rather than pop underneath (this happens if you shrink the browser a little further). Any ideas?

    Cheers,

    Jason

    #25700
    DavyE
    Participant

    I’ve noticed that animated images (fade in from bottom to top etc.) work on my iPad 2, but they only fade in when my scrolling has stopped completely. This means they don’t appear when I keep scrolling, no matter how slow I scroll, so I don’t see any images at all then.

    To make sure people do see the images, even when slightly scrolling through the page, I would think it’s best to disable the animation just for mobile devices. Any ideas please?

    #127474

    Hi Nick,

    This is what I did:

    1) Create main menu with all the pages from the selection box on the left, as usual.

    2) Create 3 custom menu items with, indeed, a # as hyperlink so it doesn’t open any page by clicking on it.

    3) Drag all page items below it’s respective custom menu item.

    I have the mobile slide-out menu activated, but it is still the desktop menu on my iPad 2 in landscape mode. I do get the slide-out menu when turning to portrait mode, but not on landscape. Actually, I like it that way, it would be rather awkward to have that menu button in landscape mode as for me the menu fits perfectly well in landscape mode. I just need to find a way to close the menu again when you don’t want to click through to a another page.

    Let’s hope you find a fix.

    Thanks!

    #124521

    Have the same on my iPad 2.

    Sure you can! 2 versions, both with exact same content, just different ordering of the items. Version 1 has the fullscreen slider below the video, version 2 has the slider above the video. As you can see, the problem only appears when it’s below the video. And it doesn’t matter how much other content there is between the video and the slider, as soon as there is a video anywhere before the slider, it’s messed up.

    I’ve centered both the image and text in the slider so you get an idea of how wrong it is.

    Link with the problem:

    http://goo.gl/NVWBR

    Link without the problem:

    http://goo.gl/SVve1

    #127784

    Hi,

    You can add the links and social media icons on Enfold > Header. It will display the same icons with the header icons.

    Your scroll to top button looks fine. You can change the position with this

    #scroll-top-link {
    right: 100px;
    bottom: 100px;
    }

    Regards,

    Ismael

    #127300

    Dude,

    I think I understand. Please tell me if I am correct for my Apple logo and link:

    1. On Enfold > Header > Add the Tumblr social icon for example. Place my Apple link.

    2. Add this to the very end of custom.css

    #top .social_bookmarks_tumblr {
    background: url(../images/apple.png) no-repeat center;
    }

    #top .social_bookmarks_tumblr:hover a {
    color:#fff;
    background: url(../images/apple-hover.png) no-repeat center;
    }

    #top .social_bookmarks_tumblr a {
    text-indent: -9999px;
    }

    3. In header.php replace:

    $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');

    with

    $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '<a href="http://apple.com/example" class="apple" target="_blank"><img src="http://mywebsite.com/apple.png" title="Apple" alt="Apple" /></a>');

    Are these the full directions? Don’t I need 2 icons? One for hover and one regular? Wouldn’t that change the second part of the code in the header.php? I notice the color hex in the header.php is specified #fff. I want the background to be black on hover.

    Thank you,

    Jasmer

Viewing 30 results - 141,181 through 141,210 (of 142,524 total)