Forum Replies Created

Viewing 30 posts - 3,241 through 3,270 (of 8,514 total)
  • Author
    Posts
  • Hi NaRanJiTo78!

    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-91 .pricing-table li {
    min-height: 72px;
    }

    This will not set them dynamically and instead it sets all of the heights to a minimum height. Because each table is its own element they don’t have horizontal relationships. This means that an item in the first table doesn’t have any idea what the height of an item in the second table is.

    So setting a minimum height with the above css is the only way to expand the row heights so that they match up with that pricing table style.

    Regards,
    Devin

    in reply to: Layer Slider on Mobile #227100

    Hi!

    As far as I know LayerSlider by itself wont shrink text on mobile devices. There would need to be additional css rules for tablet/mobile break points to change the size of your text as needed.

    A good and simple workaround is to use images in place of plain text which will get scaled down.

    If the contents are getting cut off on the sides you can try using percentage placement of the elements instead of pixels when aligning them in the LayerSlider admin for that slide.

    Best regards,
    Devin

    in reply to: schema.org & custom post types #226925

    What do you mean by adding definitions to the function?

    in reply to: Multiple Questions #226922

    Hi adworks!

    You can use whitespace to also add negative margins since 2.5: http://vimeo.com/86511620

    You can use anchors to provide links for users to navigate to specific items, the color section just allows you to add them in directly to a section. See: http://www.w3schools.com/html/html_links.asp – ID attributes

    The border on color sections can be removed if you give that color section a unique name (the ID you would link to). You then target that specific section with css and remove its borders:
    #mycolorsection {border: 0 !important;}

    The border on the element before or after it may still be present depending on the layout so you may also need to remove those too.

    Best regards,
    Devin

    in reply to: Wrong paths/URLs for portfolio items #226917

    Hey COLORIT!

    The url path looks correct for how they should be output based on your permalink setting. Its werke followed by the name.

    Ex: http://kriesi.at/themes/enfold/portfolio-item/single-portfolio-23-gallery-3/ which is portfolio-item followed by the name.

    Regards,
    Devin

    in reply to: Forum manager has gone #226915

    Hi!

    I’ve tried logging in with the above credentials a few times and with variations on the capitalization but wasn’t able to log in.

    You can try updating bbPress, deleting it and re-installing and deactivating all other active plugins in case there is a conflict to try and fix the issue as well.

    Best regards,
    Devin

    in reply to: How to add an image to the top of my blog page #226912

    Hi connect4consulting!

    If you unset the blog page from the theme options you can then set your blog page by using the ALB. This will let you put a color section before the blog element.

    For the archive pages however they are generated automatically from the archive.php file so you would need to customize the php file to change its layout.

    Cheers!
    Devin

    in reply to: Portfolio Ajax URL modification #226911

    Hey Abbe!

    No, not at the moment.

    Best regards,
    Devin

    in reply to: Every 24 hours. shortcodes.js & avia.js disappear #226910

    Hopefully you find the root of the issue,definitely very strange.

    in reply to: Large blog #226904

    Hey bicounet!

    I’m not quite sure what you mean from the description. Can we see what you have now and then if you can explain a bit more how you want that to change we’ll see if its something we can assist with.

    Regards,
    Devin

    in reply to: Free translator Plugin – Enfold #226852

    The content inside pages and posts would need to be re-created for each language. As far as I know WPML is the only plugin to offer that kind of functionality. Codestyling allows you to translate the content into a single language.

    I’m not overly familiar with them but the documentation for it will have more in depth details on it.

    in reply to: Issue with Background Color #226851

    Hi!

    Another user had a similar issue and I believe its an issue with needing to re-set your stylesheet. If you switch to one of the pre-set color styles and save it will refresh them. You can open the styling tab view in another browser window before changing things over but not save it so that you have the settings on hand to then re-set them on your original ‘live’ window.

    Put another way: you will have 2 browser windows open at once and both showing the themes styling options. One will be the ‘live’ window and the other used as a reference for later. Once you’ve re-set the styles in the live window you can use the second one to quickly re-set your live window styles.

    Regards,
    Devin

    in reply to: AVIA Builder Update for Posts #226848

    Hi!

    As long as the function is in your functions.php and fired before the rest of them it will turn on the debug field. You don’t need both of them however so if you already have the debug field active then you don’t need to add the same add_action and function.

    Best regards,
    Devin

    in reply to: Simple Site Customizations #226614

    Hey!

    – Refresh your browser cache as I only see things on hover with the masonry elements.
    – I don’t see any difference in color on the masonry items and there is no code to make one side lighter than the other
    – For the social icons, you’ll need to add height and width values to the css in addition to the font size. Then the same on the li since it has a height too:

    #header_main .social_bookmarks li {
    height: 40px;
    width: 40px;
    }

    Make sure to add height and width to the social_bookmarks css from Yigit as well. You will then need to play with padding and margins to get the styling and centering you want since its now larger than intended.

    I don’t know what you mean by left and right justified but if you mean have them to the edge of the screen then no not very easily. The container could probably be set to 100% width but I don’t know how many more issues that could cause with keeping it all responsive and cross browser compatible.

    Best regards,
    Devin

    in reply to: anchor problem #226569

    Make sure to clear the cache before deactivating the plugin. It will still actually use it even when it isn’t active unless you clear it before deactivating.

    in reply to: A couple questions regarding the Enfold theme #226565

    Hey!

    The theme doesn’t have a shortcode for a newsletter submit. You would need to add it to the header.php directly and customize as needed. Most likely it would need to be done by a freelance developer to keep everything responsive and cross browser compatible.

    For a color section, you can remove it from your layout by deleting it in the avia layout builder or you can save the whole page including that element as a template from the Template button on the top right of the ALB. Hiding it with CSS on the front end won’t prevent it from loading.

    However if you want to you can try giving the color section a unique ID in the For developers only field which adds an ID to the color section. Then target it by that name:

    
    #colorsectionname {display: none;}
    

    Best regards,
    Devin

    in reply to: Replacing Ajax Search #226563

    The best thing would be to talk to a freelance developer if you aren’t sure what steps to take next. The filter allows you to replace the search function with your own but the implementation of one beyond the WordPress search is beyond what we can do through support.

    in reply to: Search box appearing in the wrong place #226562

    Hi!

    The only thing I can think of is that the code in the header.php has been changed or a function/filter is modifying the search and breaking the html structure from how it should be by default.

    Best regards,
    Devin

    in reply to: Sidebar menu #226561

    Hey nonne!

    You’ll need to remove the widgets from the rest of the sidebar areas so that there is no stacking of widgets. Pages get inherited widgets from the page sidebar so you’ll get that kind of effect.

    You can also use a plugin like this one to make specific widgets only show in some areas: http://wordpress.org/plugins/display-widgets/

    Regards,
    Devin

    in reply to: Google Maps Plugin #226558

    Hey William!

    It isn’t an often updated or full list but all recommended plugins are here: https://kriesi.at/support/topic/recommended-plugins-last-update-04-09-2013/

    Other than the themes Google maps widget there isn’t any specific plugin we recommend or know of that has good integration.

    Cheers!
    Devin

    Hi COLORIT!

    Custom post types have the ability to have a custom permalink, in this case it defaults to portfolio-items. You can change it in the WordPress Settings>Permalink settings.

    The portfolio_entries is the taxonomy base and it should be translatable with either Codestyling or WPML with the avia_framework term. You can see it in includes>admin>register-portfolio.php in this line:
    $permalinks['portfolio_entries_taxonomy_base'] = empty($permalinks['portfolio_entries_taxonomy_base']) ? __('portfolio_entries', 'avia_framework')

    Regards,
    Devin

    in reply to: contact form in template #226551

    What title and field names do you have for the form? Do any of them have accented characters?

    Hey!

    Give the snippet from Ismael a try and let us know. With Yoasts popularity we’ve done a good bit to make sure it always works with the theme but have not had a major blip in reports that it isn’t working or anything at this point.

    Hopefully it works as it did for gloopy1.

    Cheers!
    Devin

    in reply to: Video background #226548

    Hey Publicus!

    For #1 there isn’t currently a way to do that. We’ve tried a few things internally but Kriesi is still looking to add some more options for things like that once the playback bugs that are live get taken care of.

    2) HTML5 formats in general is the best bet. You can use fallback as needed for the most flexibility as long as the video files are in the same folder with the same name but a different extension.

    3) You would need to give the item either a custom class name or if its a color section its own ID and then specifiy your custom height via css. See: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    I deleted your post in the video debugging topic because it was off-topic for that specific thread. I know I step on a few toes when I do that but it helps immensely to keep single use stickied topics clear of any general questions.

    Regards,
    Devin

    in reply to: Overriding page.php in child theme #226547

    It really depends on what you are trying to do with a custom page template. The theme is designed around the idea that you don’t need to go outside the ALB for a custom layout. If you do and more specifically for a custom page template then you wouldn’t be using it since its a custom page template. It just isn’t designed around using both.

    in reply to: Show comments on Portfolio pages (child theme version) #226546

    You would need to add them in manually if you are using the ALB. If you aren’t then you can still use the regular portfolio page template file change to add comments to it.

    in reply to: post revisions #226544

    Hi!

    We’ll address separate topics in their own right. We have a massively higher than normal influx of requests right now so it will be a bit slower than normal at least for us.

    Regards,
    Devin

    in reply to: Fullslider problems in IE7, and IE8 #226542

    No, it shouldn’t be happening but it seems it is even still.

    I’ve tagged Kriesi on the topic and hopefully he can find a fix for these.

    in reply to: Layer Slider Issue with iPhone & iPad #226534

    Hey targetzero!

    No not that I know of. It may be one of the items fixed with the most recent big update to the LayerSlider plugin but which will be included in the next release of the theme (2.6) which should be out within the next few weeks.

    Best regards,
    Devin

    in reply to: Free translator Plugin – Enfold #226505

    Hey zoiestudio!

    You can use Codestyling as well: http://wordpress.org/plugins/codestyling-localization/

    Best regards,
    Devin

Viewing 30 posts - 3,241 through 3,270 (of 8,514 total)