Viewing 30 results - 141,391 through 141,420 (of 142,740 total)
  • Author
    Search Results
  • #128156

    Hi,

    The topics are group together by theme. You can use the search box.

    Regards,

    Ismael

    #25764

    Topic: Text Box white space

    in forum Enfold
    maxosbon
    Participant

    Problem: Too much white space when using Text Block.

    I am adding a title using h1 format and subtext using paragraph format to the very top of my homepage. Right under this “Text Block” I use the slider. There is a ton of white space before my h1 title and after the subtext before the next section (slider) begins.

    Question: How do I reduce white space on my homepage when using “Text Block”? Is there a better alternative to inserting a title on my page that will save on white space?

    #127586

    Perfect Ismael, it worked!

    Thanks so much to both of you. Great team work :)

    Regards,

    jasmine

    #128117

    Add this to your custom css to fix the spacing :)

    /* Fixes Quform spacing */

    .iphorm-element-spacer {

    padding: 0 !important;

    margin: 0 !important;

    }

    .iphorm-outer p {

    margin: 0 !important;

    }

    .iphorm-outer br {

    display: none !important;

    }

    #25757
    Bluemkt
    Participant
    #127883

    As I said above, at the very smallest mobile resolution the cart stops responding to the width in order for it to not get too squished to read. So if you use the link above in iphone 4/5 there is no issue but when you get down to the ~340 pixel width the table stops reducing in size and instead expands to give better readability.

    #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

Viewing 30 results - 141,391 through 141,420 (of 142,740 total)