Forum Replies Created

Viewing 30 posts - 7,741 through 7,770 (of 8,514 total)
  • Author
    Posts
  • in reply to: Even out the transition #id speed request #126281

    Hey Andy,

    For the color section yes its not able to go fullscreen at the moment. It needs content inside of it to stretch it to fill the screen.

    For your main question, I’m not completely clear on the question/issue. Is this in the layerslider? You can set the items within a slide to transition as slow or as quick as you want.

    On #3 I’m also not really clear on what you are looking for. There is a lot of custom css that can be added to do just about any effect with hovers but its just a matter of writing it.

    Regards,

    Devin

    in reply to: button in menu #126290

    Hi comlor,

    You would need to modify the header.php file and wrap the button in your own custom div so that you can position it with css and then add it to the responsive layout with media queries so that you can position it for the various devices.

    Regards,

    Devin

    in reply to: Centering "Special Heading" Titles #125610

    Hi Dennis,

    You would need to use the page ID class for each specific page. Eg:

    #top.page-id-70 .av-special-heading.blockquote > * {
    text-align: center;
    }

    Where 70 is the page ID.

    Regards,

    Devin

    in reply to: Enfold custom.css #125818

    We’ll need to look at the site live to see why it isn’t working. The H1 and H2 should be done on the specific page(s) you want as there are a lot of different variations of h1 and h2 tags throughout the entire theme so a blanket change would be bad.

    Regards,

    Devin

    in reply to: Enfold- Archive Exceprts #126276

    Hi mickfollari,

    You’ll need to change the way the theme actually generates the archives. In the archive.php file replace:

    get_template_part( 'includes/loop', 'index' );

    with

    get_template_part( 'includes/loop', 'archive' );

    Then you can edit the archive loop to pull the excerpt instead of the_content like you had tried before.

    Regards,

    Devin

    in reply to: Need Help #126231

    Hi Arnaudov,

    You’ll need to modify the search.php file in the theme files and change the layout with php as there is no theme setting for modifying it from the wordpress admin.

    The same with #2 except you’ll need to modify the includes>loop-search.php file. The changes are quite a bit beyond what we can help customize via support however so if you aren’t comfortable with navigating the theme functions and php/html you’ll need to look into a freelance developer.

    3) Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    .avia-post-nav {
    display: none;
    }

    Regards,

    Devin

    in reply to: Responsive Nav not right on iPad #126215

    Hey

    If you adjust the javascript for the nav menu you also need to adjust the media query. Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    @media only screen and (max-width: 1000px) {
    .responsive #header .main_menu ul {display: none;}
    }

    Adjust the media query to fit whatever you have in the js file.

    Regards,

    Devin

    in reply to: change fontello nav button to png file #126201

    Hi krzysztof_grudnik,

    Without seeing the site live and inspecting what you’ve got now I’m not sure what the issue could be.

    That looks correct and is what I would do but can’t say definitively without inspecting things and testing in IE.

    Also keep in mind support levels for IE: http://css-tricks.com/browser-support-pseudo-elements/

    Regards,

    Devin

    in reply to: Issue with child theme cont. #126189

    Hey Hugo,

    That is what this comment guides you to do: https://kriesi.at/support/topic/issue-with-child-theme#post-116432

    It should have been included in 1.7 as well so if you update the parent theme it should be already in place.

    Regards,

    Devin

    in reply to: Enfold installation #126073

    Hey romero2,

    Hopefully that helps and make sure to check out the other videos we have on the channel for some additional how-to’s for the theme :)

    Regards,

    Devin

    in reply to: Visual Editor #126185

    Hi Andrew,

    I don’t think any of us at support have any recommendations as it isn’t in our normal tool chest for working with themes but there are quite a few popular ones out there so if you do find one let us know and we’ll keep it in mind to recommend.

    Regards,

    Devin

    in reply to: Enfold Theme #125736

    If you are very new to working with premium themes or have never worked with one of Kriesi’s themes before the best thing to do would be to import the dummy data which will populate pages, posts, portfolio items and menus very similar to the demo site.

    All shortcodes can be added using the Shortcodes button in the visual editor.

    in reply to: slideshow is not auto-rotating when previewing in AJAX #126177

    Hi mgma,

    I *think* the ajax portfolio slideshows are set to change on mouseover of the individual slides so I’m not sure if the option is available for the ajax view or if Kriesi just accidentally is overriding them.

    I’ve tagged Kriesi on the topic for a definitive answer.

    Regards,

    Devin

    in reply to: Disable unnecessary thumbnails #126167

    Hi darkcanvas,

    Not sure why you would want to as space isn’t really an issue for hosting any longer. I don’t think they can be unhooked via a child theme so you would need to remove the ones you don’t want created in the functions file in the main theme.

    Regards,

    Devin

    in reply to: gallery featured 1500×430 px #126166

    Hi fdecoene,

    I’m not really sure what you mean. What effect are you looking to duplicate from the demo? Can you link to it so we can get a good reference point?

    Regards,

    Devin

    in reply to: Blog / LayerSlider changes #125586

    Hi Amirb,

    We would need to see what you’ve got now live and inspect it live just to make sure we don’t go in the wrong direction from here. So if you can provide a link we’ll take a look and go from there.

    Regards,

    Devin

    in reply to: Changing gallery border for a page ID number only #125920

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    #top.page-id-1739 .entry-content .avia-gallery-1 .avia-gallery-thumb img {
    border: none;
    }

    To break it down:

    #top.page-id-1739 – The top ID and class of .page-id-1739 to only have the css after effect *this* page.

    .entry-content – Only the entry content for this page

    .avia-gallery-1 – the specific gallery within the entry content in case you had multiple galleries within the entry-content

    .avia-gallery-thumb – Thumbnail section only

    img – The images inside the thumbnail section which has the border

    {border: none;} – border declaration with a property of none or you could use border-wdith: 0px .

    I have no idea about the permalink though.

    Regards,

    Devin

    Hey andyhoodified,

    Thank you for the write up :)

    Once the next update comes out with some needed bug fixes I’ll be done another series of tutorials on all of the new features that have been added recently as well.

    Regards,

    Devin

    in reply to: Remove header background #126156

    Hi Chris,

    You can force the header to have no background with:

    #header {
    background-color: transparent !important;
    }
    #header .header_bg {
    background: transparent !important;
    }

    However that won’t get you the same result as that page since the content below the header doesn’t actually push up behind it by default. So you’ll need to do a negative margin or something like that to actually pull the slider up behind the header so it overlaps and doesn’t just show the whole pages background.

    Regards,

    Devin

    in reply to: Entypo icon in Google Chrome #125477

    Hi Matt,

    You can use something like this if you want the icon before the phone field as I don’t think the field accepts them:

    .phone-info:before {
    content: "1F4DE";
    font-family: 'entypo-fontello';
    }

    Reference: https://gist.github.com/pnull/4510484

    Regards,

    Devin

    in reply to: Contact Form / Make Input fields thinner #126151

    Hi Doremus,

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    /*removes margin from above and below form inputs*/
    .ajax_form p {
    margin: 0;
    }

    /*padding inside the inputs*/
    #top .ajax_form .text_input, #top .ajax_form .select, #top .ajax_form .text_area {
    padding-top: 4px;
    padding-bottom: 4px;
    }
    /*re add padding to captcha only*/
    #top .ajax_form .text_input.captcha {
    padding-top: 13px;
    padding-bottom: 13px;
    }

    /*re add some space above the submit*/
    #top .ajax_form .button {
    margin-top: 13px;
    }

    Modify as needed.

    Regards,

    Devin

    in reply to: FULLSCREEN SLIDER  #126148

    Hi azabu,

    First you’ll need to make sure you are using the most recent version of the theme (1.7). Then you can add a fullscreen slideshow like the demo.

    Regards,

    Devin

    in reply to: WP or Template adds " " when I save my text. #126142

    Hi slang231,

    What version of the theme are you using and where exactly is this happening? There were some changes to the text editor in a recent update which may be the cause or it could just be wordpress being wordpress but I believe Kriesi typically functions out the wordpress paragraph issue.

    Regards,

    Devin

    in reply to: Entypo Icon Rollover – Color change effect #126129

    Hi Andy,

    Yes, generally you could use something like:

    .iconbox_icon.heading-color.avia-font-entypo-fontello:hover {
    color: black;
    cursor: pointer;
    }

    For a icon on top of an iconbox. It would need to be done with targetted css to make it only happen some places or on other instances.

    Regards,

    Devin

    in reply to: 1.7 Contact Forms Not Sending Email… #125624

    Hi FLSouthPaw,

    Our queue system actually goes from oldest to newest so each self response/bump actually pushes the topic backwards instead of bringing it to our attention. We’re considerably over normal levels of new support requests so its taking a bit longer than normal to get to items and the weekend just compounds that (since support is typically monday-friday).

    I’ve tagged the topic for Peter and Kriesi as I’m not aware of anything with 1.7 that should have or could have cause a change in the mail function but if not Peter definitely Kriesi will be able to help shed some light on the issue.

    One thing to check now however would be if you had previously made any theme changes to support SMTP. If so, a theme update would have overwritten those changes.

    Regards,

    Devin

    Hi essentialmessagemarketing1,

    It sounds like most of the issues are related to the server not having enough memory allocated for wordpress to use. Increase your php memory to at least 128mb via one or all of these: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    You’ll also need to update the theme files since you’re still on 1.3.1. See: https://vimeo.com/channels/aviathemes/67209750

    Just as an aside, our Queue system goes oldest post to newest so each self post in the same topic actually pushes it further back instead of bringing it to our attention.

    Regards,

    Devin

    in reply to: Top Margin on H3 Special Heading not consistent #126002

    Hey kcharity,

    We’ll need to see the two pages live and inspect the code on our end. If you can also give a brief overview of how the items are laid out in your visual editor/advanced layout editor that will help as well.

    Regards,

    Devin

    Hi Margarita,

    You can either just add that single file to the child theme (reference for quick how to https://vimeo.com/channels/aviathemes/67221517) or use CSS to remove those items:

    .entry-content .post-meta-infos {
    display: none;
    }

    Regards,

    Devin

    in reply to: A few questions #125988

    Hi barryocarrollphotography,

    1) If you are using a secondary lightbox plugin, you should just disable it. Otherwise you’ll need to unhook the themes prettyPhoto script from being used throughout the site and I’m not sure anything third party will be able to accurately integrated with all of Enfolds features.

    2) Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    .avia-slideshow-dots.avia-slideshow-controls {
    display: none;
    }
    .avia-slideshow-arrows.avia-slideshow-controls {
    display: none;
    }

    3) Go to the Styling tab of the theme options. Then open the Header tab and change the options there. The “Header font color” controls the menu item static color as well as the hover using a theme function to get a slight difference from the one you pick.

    So you could use the following to set the static color for all those items and then use that option to just set the hover:

    .header_color .main_menu ul:first-child > li > a, #top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a, #top .header_color .sub_menu li ul a { color: #FFF000; }

    Regards,

    Devin

    in reply to: Adding logos in footer #125985

    Hi arrt,

    There is nothing within the theme that supports that in the footer at the moment.

    You could use shortcodes within blank text widgets in the footer but it would have to be something that is already a shortcode and that fits your style.

    Regards,

    Devin

Viewing 30 posts - 7,741 through 7,770 (of 8,514 total)