Forum Replies Created

Viewing 30 posts - 1,081 through 1,110 (of 1,282 total)
  • Author
    Posts
  • in reply to: Preview page function does not work #134843

    Hey!

    Yes the preview currently doesnt work with the layout builder, since the builder uses custom fields to save its data, which are not tracked by the wordpress preview function. I am already thinking of ways to fix this, however I cant give an ETA yet…

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

    Hey!

    Sometimes it happens that the font changer becomes unresponsive, for a reason I have yet to find. The issue is usually fixable by simply reloading the styling page and then trying to change the colors again. Did you already try this?

    2.) If you post us a link to your site that would help a lot with any css modifications since I am not sure yet what exactly you are trying to do :)

    in reply to: boxed layout margin on top and bottom #134361

    Hi!

    weird. it works fine for me in chrome.

    you can try the following instead:


    #wrap_all {
    margin: 40px auto;
    }

    Regards,

    Kriesi

    in reply to: Remove breadcrumb on all pages #127876

    Hey!

    closing this now. if you have any more questions feel free to open up a new thread ;)

    Best regards,

    Kriesi

    Hey!

    Yes thats currently not possible, i will try to make previews and revisions work with a future release but at this moment the template builder uses custom input fields to save the data which are not tracked by either revisions or the wordpress preview

    in reply to: Issue with Layer Slider Images #134422

    Hi!

    When editing a layer switch to the attributes tab:

    http://cl.ly/Qlxm ;)

    Regards,

    Kriesi

    in reply to: Please contribute and translate Enfold #114964

    Hey!

    Unfortunately Enfold was coded new from the ground up and we don’t really have a close theme :/

    Regards,

    Kriesi

    in reply to: Icon Box loses unordered list upon save #134870

    Hey!

    Since I cant reproduce the issue on my server please try the following:

    First of all update the theme to the latest version (1.9.1)

    Make sure that you run the latest version of wordpress (3.6)

    The debugging info tells me you are running 4 plugins: any of those able to interfere? try deactivating them one by one.

    If none of this helps let us know, we will then investigate further :)

    in reply to: Reduce Spacing between elements in layout builder #134101

    Hey!

    add this to your custom.css stylesheet in folder /css/ or to the quick-css panel located in your wordpress backend at Enfold->Styling:


    body .column-top-margin{
    margin-top: 10px;
    }

    that should to the trick :)

    in reply to: Responsive Tabs #134656

    Hi!

    this is already on the todo list for the theme. we will add this with an update soon ;)

    Regards,

    Kriesi

    in reply to: date format #134651

    Hi!

    Hey! Which list of posts do you mean. could you provide us with a link?

    Regards,

    Kriesi

    in reply to: Accordion : Hide "All" Category #133938

    Hey!

    Unfortunately at this point its indeed not possible to set the default filter to a category of your choice. One of the later updates added an easier way to edit the “All” Keyword however.

    you can add this to your themes (or better: child themes) function.php file:


    add_filter('avf_portfolio_sort_first_label','avia_change_label');

    function avia_change_label()
    {
    return "Name of your label";
    }

    I will see if there is an easy option to set a default category without rewriting too much of the theme code…

    in reply to: Contact From Not Scrolling To Top #2 #132623

    Hi!

    Will try to find a screenshot tool that has safari 5 available and give it a look. not sure how this could be solved. :)

    Regards,

    Kriesi

    in reply to: Gallery image order ignored #134498

    Hi!

    Yep, that seems like the cause of the issue ;D

    Regards,

    Kriesi

    in reply to: Image Slideshows and strange things … #134557

    Hey!

    the slideshow always tries to make the images fit to the available width. in your case those images are too small and are therefore blown up.

    you can add this to your custom.css stylesheet in folder /css/ or to the quick-css panel located in your wordpress backend at Enfold->Styling to always display the original width:


    div .avia-slideshow li img {
    width: auto;
    }

    in reply to: Edit the archive page template #134514

    Hey!

    There is a taxonomy-portfolio_entries.php in your theme folder that allows you to set a few variables: you can edit them and also add the image size parameter like i did bellow:


    $grid = new avia_post_grid(array( 'linking' => '',
    'columns' => '3',
    'contents' => 'title',
    'sort' => 'no',
    'paginate' => 'yes',
    'image_size' => 'portfolio',
    'set_breadcrumb' => false,
    ));

    you can also find an array of available image sizes in the functions.php file around line 80

    in reply to: Replacing Social Icons #134555

    hey! There is an action hook in the header.php file that can be used to inject additional content into the theme. you can add content by placing something like this function in your functions.php file:



    add_action('ava_after_main_menu', 'kriesi_header');

    function kriesi_header()
    {
    echo "<div class='my_div'>This is some text</div>"
    }

    and then position/style it with a few custom.css rules

    in reply to: Twitter RSS widget: Twitter follower count doesn't update #134366

    Hey! The counter should actually work fine even with the new twitter widget api since it does only need to fetch an xml file that is available without api.

    The widget should indeed update on its own but it has a cache meachanism included so that it doesnt check that xml file every few minutes ;)

    in reply to: GoogleMaps with predefined height #133996

    Hey!

    Are you using a plugin for the map? Are you sure you cant change the height of the map in the plugin settings?

    If thats not the case. I checked the source code of your maps plugin and its got a class of sabai-googlemaps-map:

    you can use that class to set the height like this:



    #fullwidthmap .sabai-googlemaps-map{
    height:500px !important;
    }

    in reply to: Selecting a transition for an image on layer slider #134495

    Hey!

    If you click on a transition a checkmark should appear beside and stay, even if you click the close button. If that doesnt happen there might be a javascript conflict in your theme.

    Are you running the latest version of wordpress (3.6) as well as the latest theme version (1.9.1)?

    in reply to: Button Label Bug…adding phantom elements #134506

    Ok not sure if the forum formating messed up your post but these two lines look exactly the same to me…

    Actually the label is not meant to be used with html code. An easy fix to not display the unnecessary brs is by add this to your custom.css stylesheet in folder /css/ or to the quick-css panel located in your wordpress backend at Enfold->Styling:


    .avia-button br{ display:none; }

    in reply to: Embeded audio problem – Enfold 1.9 / WordPress 3.6 #133356

    Will be out this week. my goal is to release it in the next 2-3 days ;)

    just waiting for some login data of other users with other bugs that i want to get fixed with this update as well ;)

    in reply to: Mega Menu #134541

    Hi!

    Hope it helps ;)

    Regards,

    Kriesi

    in reply to: boxed layout margin on top and bottom #134359

    Hey!

    Hey!

    add this to your custom.css stylesheet in folder /css/ or to the quick-css panel located in your wordpress backend at Enfold->Styling:


    .boxed#top {
    margin: 40px auto;
    }

    Cheers!

    Best regards,

    Kriesi

    in reply to: frontpage sidebar setting ignored after 1.9 update #133420

    Hey!

    I tried to reproduce the issue and wasnt able t. can you describe your problem in detail? which settings are you using and what exactly is the problem. also a link to your page would help a lot :)

    Cheers!

    Kriesi

    in reply to: Reduce vertical whitespace in colored section #134396

    The page you linked to is no longer available and I see that you have already modified a similar text block on your front page.

    I guess this issues can be marked as resolved then?

    Cheers!

    in reply to: Image Cropping #133476

    Hey!

    Great, thanks for the follow up :)

    Will close this thread for now :)

    Regards,

    Kriesi

    in reply to: Traslation #134435

    Hey! Unfortunately I cant help with this issue. I have no idea why this error occurs and other translation plugins work fine with the theme.

    The plugin says its compatibly with poedit which we used to create the translation files in the first place. I would recommend to simply download poedit and use it instead to translate the strings…

    in reply to: Big Problem: MEGA MENU #134543

    Hey!

    Since the menu is aligned with a javascript its likely that at page load it takes a few hundred miliseconds to execute the script. after that it should align fine. if it doesnt it is likely that there is a javascript error on your page.

    Are you running any plugins that might interfere? If so please deactivate them one by one and see if that sovles the problem. Otherwise we will need a link to your site to investigate further

    in reply to: Not showing all menu entries #134544

    Hi!

    Are those menu entries still visible in your backend?

    Also are there any plugins active that might interfere?

    Regards,

    Kriesi

Viewing 30 posts - 1,081 through 1,110 (of 1,282 total)