Forum Replies Created
-
AuthorPosts
-
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…
August 13, 2013 at 7:19 am in reply to: Trouble changing colour of menu links in styles tab. #134688Hey!
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 :)
Hi!
weird. it works fine for me in chrome.
you can try the following instead:
#wrap_all {
margin: 40px auto;
}
Regards,
Kriesi
Hey!
closing this now. if you have any more questions feel free to open up a new thread ;)
Best regards,
Kriesi
August 12, 2013 at 10:59 pm in reply to: Adding/modifyin element when using a saved template is not showing up in preview #134737Hey!
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
Hey!
Unfortunately Enfold was coded new from the ground up and we don’t really have a close theme :/
Regards,
Kriesi
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 :)
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 :)
Hi!
this is already on the todo list for the theme. we will add this with an update soon ;)
Regards,
Kriesi
Hi!
Hey! Which list of posts do you mean. could you provide us with a link?
Regards,
Kriesi
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…
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
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;
}
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
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
August 12, 2013 at 8:47 pm in reply to: Twitter RSS widget: Twitter follower count doesn't update #134366Hey! 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 ;)
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;
}
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)?
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; }
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 ;)
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
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
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!
Hey!
Great, thanks for the follow up :)
Will close this thread for now :)
Regards,
Kriesi
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…
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
-
AuthorPosts