Forum Replies Created

Viewing 30 posts - 63,931 through 63,960 (of 66,017 total)
  • Author
    Posts
  • in reply to: Menu being squeezed on Internet Explorer 8 #134787

    Hi,

    Sorry for that. Did you remove the browser cache then reload the page after you applied the code above?

    Can you give us a link to your website? We need to inspect it.

    Cheers,

    Ismael

    in reply to: Advanced Layout Manager questions #133581

    Hey,

    Glad it worked :)

    Cheers,

    Ismael

    in reply to: Second link in post with Link Format gets stripped out #134859

    Hi,

    You can do this instead. Edit includes > helper-post-format.php, find these code on line 200 and 208:

    $current_post['content'] = str_replace($link, "", $current_post['content']);

    Remove it.

    Regards,

    Ismael

    in reply to: Turn off – hover style – linked image #134985

    Hi,

    Add .blog, or the page id of your blog page.

    .blog .image-overlay.overlay-type-extern {
    display: none !important;
    }

    Please give us a link to your blog page.

    Regards,

    Ismael

    in reply to: Changing main header #135133

    Hi,

    You can use this:

    #top .alternate_color.title_container .main-title a {
    color: #990000;
    }

    Regards,

    Ismael

    in reply to: Adding gradient background to icons #134820

    Hey,

    Glad we could help. :)

    Cheers,

    Ismael

    in reply to: Problem with LayerSlider image source link #135125

    Hi,

    On what part of the LayerSlider are you trying to use the image?

    Regards,

    Ismael

    in reply to: remove the sidebar in the webshop #134702

    Hi,

    @Hanniball: Please give us a link to your shop page. You can add this on your custom.css or Quick CSS

    .woocommerce .sidebar {
    display: none !important;
    }

    .woocommerce .template-shop.content.nine.units {
    width: 1030px;
    border: none;
    }

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .woocommerce .template-shop.content.nine.units {
    width: 760px;
    }
    }

    @media only screen and (max-width: 767px) and (min-width: 480px) {
    .woocommerce .template-shop.content.nine.units {
    width: 100%;
    }
    }

    Regards,

    Ismael

    in reply to: Chaning a:hover on link in layerslider #135022

    Hi,

    1.) You can add a unique css selector on the Attributes panel then apply the hover state on your Quick CSS or custom.css.

    2.) I’m sure this is possible but a bit complicated and is beyond of what we can do as a support team. Please hire a freelance developer to modify the Layer Slider for you.

    Cheers,

    Ismael

    in reply to: CSS for Contact Form #135016

    Hi,

    You can change specify the minimum height of the contact form fields:

    #top .ajax_form .text_input, #top .ajax_form .select, #top .ajax_form .text_area {
    min-height: 100px;
    }

    You can find the css style of the form on css > base.css > #Forms.

    Regards,

    Ismael

    in reply to: How to translate frontend text English into Dutch? #134995

    Hi,

    You can use the WPML plugin.

    Regards,

    Ismael

    in reply to: Color section with scrolling and text inside it. #134969

    Hi,

    What do you mean the “picture inside the scrollable area”? Can you give us a screenshot or a link to the page?

    Regards,

    Ismael

    in reply to: Single Blog Post – Full page instead of centred #135000

    Hi,

    You can add this on your custom.css to increase the width of the post content.

    #top .fullsize .template-blog .post .entry-content {
    max-width: 1024px;
    }

    #top .fullsize .template-blog .post .entry-content > * {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    }

    Regards,

    Ismael

    in reply to: Remove header with social buttons when scrolling #135055

    Hi,

    Just add this on your custom.css or Quick cSS

    .header-scrolled #header_meta {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Pagination doesn't work #134928

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    in reply to: Menu being squeezed on Internet Explorer 8 #134785

    Hi,

    Please try this on your custom.css or Quick CSS

    .msie8 .main_menu ul:first-child > li > a {
    padding: 0 8px;
    font-size: 12px;
    }

    or

    .main_menu ul:first-child > li > a {
    padding: 0 8px9;
    font-size: 12px9;
    }

    Regards,

    Ismael

    in reply to: Adding icons for icon boxes #134608

    Hi,

    The icons are limited to the characters you have here: http://www.entypo.com/characters/

    I think you already find a workaround to the problem. Good job.

    Regards,

    Ismael

    in reply to: dummy content will not load #134893

    Hi,

    Yes, I think installing the theme from scratch will fix it. Make sure you have the latest version of Enfold and WordPress 3.6.

    Regards,

    Ismael

    in reply to: remove the sidebar in the webshop #134700

    Hi,

    Edit the Shop page, look for “Layout” then select “No Sidebar”.

    Regards,

    Ismael

    in reply to: Colour Section Image Not showing on iPad / iPhone #134832

    Hi,

    I already tagged Kriesi and Devin. They will check this on their iPads. Please watch the thread here: https://kriesi.at/support/profile/gstar72

    Regards,

    Ismael

    in reply to: icon List Issue on iPad #134840

    Hey,

    Glad it worked. :”)

    Cheers,

    Ismael

    in reply to: Menu problem #135091

    Hi,

    Please add this on your custom.css or Quick CSS

    #top .main_menu .menu li ul a {
    line-height: 23px;
    padding: 8px 15px;
    min-height: 23px;
    max-width: none;
    }

    Can you give us a link to your website? This is not happening on our end.

    Regards,

    Ismael

    in reply to: Adding gradient background to icons #134818

    Hi,

    You can use this on your custom.css or Quick CSS

    .avia-icon-list .iconlist_icon {
    background: #bfd255; /* Old browsers */
    background: -moz-linear-gradient(top, #bfd255 0%, #8eb92a 50%, #72aa00 51%, #9ecb2d 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bfd255), color-stop(50%,#8eb92a), color-stop(51%,#72aa00), color-stop(100%,#9ecb2d)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* IE10+ */
    background: linear-gradient(to bottom, #bfd255 0%,#8eb92a 50%,#72aa00 51%,#9ecb2d 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfd255', endColorstr='#9ecb2d',GradientType=0 ); /* IE6-9 */
    }

    For the iconbox, you can use this:

    .iconbox_top .iconbox_icon {
    background: #cedce7; /* Old browsers */
    background: -moz-linear-gradient(top, #cedce7 0%, #596a72 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cedce7), color-stop(100%,#596a72)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #cedce7 0%,#596a72 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #cedce7 0%,#596a72 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #cedce7 0%,#596a72 100%); /* IE10+ */
    background: linear-gradient(to bottom, #cedce7 0%,#596a72 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cedce7', endColorstr='#596a72',GradientType=0 ); /* IE6-9 */
    }

    This is a nice website to create gradient backgrounds: http://www.colorzilla.com/gradient-editor/

    Regards,

    Ismael

    in reply to: Pagination doesn't work #134926

    Hi,

    Usually this is a plugin issue. Please deactivate them, see if it fixes the issue.

    Regards,

    Ismael

    in reply to: Turn off – hover style – linked image #134983

    Hi,

    Please add this on your custom.css or Quick CSS

    .image-overlay.overlay-type-extern {
    display: none !important;
    }

    Regards,

    Ismael

    in reply to: Trouble changing colour of menu links in styles tab. #134690

    Hi,

    You can add this on your custom.css or Quick CSS to change the menu color:

    .header_color .main_menu ul:first-child > li > a {
    color: #fefefe;
    }

    Hover State:

    .header_color .main_menu ul:first-child > li > a:hover {
    color: red;
    }

    Regards,

    Ismael

    in reply to: Not showing all menu entries #134546

    Hi,

    They are not missing, they are cut off the screen. Add this on your custom.css or quick CSS

    #top .main_menu .menu li ul a {
    padding: 4px 15px;
    }

    Regards,

    Ismael

    in reply to: Resizing space between columns #135001

    Hi,

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

    .flex_column.av_one_fourth.avia-builder-el-2.el_after_av_three_fourth {
    margin-left: 1%;
    width: 25.5%;
    }

    .flex_column.av_one_fourth.avia-builder-el-2.el_after_av_three_fourth a img {
    max-height: 230px;
    width: 100%;
    }

    Regards,

    Ismael

    in reply to: dummy content will not load #134891

    Hi,

    Please switch back to the default wordpress theme then activate Enfold again.

    Regards,

    Ismael

    in reply to: Enfold Header #134885

    Hey,

    Please give us a link to your website or a screenshot. We need to inspect it.

    Regards,

    Ismael

Viewing 30 posts - 63,931 through 63,960 (of 66,017 total)