Forum Replies Created
-
AuthorPosts
-
Hey,
Sorry! My bad! I’m talking to Lemonpress. I forgot to address him properly.
Regards,
Ismael
Hi,
I’ll tag Kriesi about the revisions issue.
Yes, you should see the shortcodes when switching to the default editor. Please upgrade to Enfold 1.8.4. If you switch the Advance Layout Editor to debug mode, you will be able to see the actual shortcode below the ALE.
Regards,
Ismael
Hi,
You can directly add the video using the iframe code or the video shortcode.
[av_video src='http://www.youtube.com/watch?v=G0k3kHtyoqc' format='16-9' width='16' height='9' custom_class='']
For audio files, you can use the plugin haiku or compact wp player.
Regards,
Ismael
Hi,
1.) You can use FTP or go to your cpanel to edit wp-config.php.
2.) Please overwrite your wordpress installation with a new wordpress download, see if it fixes the menu. Override the whole site except the wp-content folder.
Regards,
Ismael
Hi,
This code does work on my end. It will force the iconbox to have a minimum height aligning them properly.
/*
Desktop Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the desktop view of your site */
@media only screen (min-width: 800px) and (max-width: 1024px) {
/* Add your Desktop Styles here */
.page-id-9576 .iconbox_content {
min-height: 540px;
}
}Please remove browser cache then reload the page. You need to experiment with Media Queries to align them properly on different browser width.
Regards,
Ismael
Hi,
They should not open on a new window by default. Go to Appearance > Menus, click Screen Options > Show advanced menu properties > enable Link Target. You will have the option to open a page menu to a new window and vice versa.
Regards,
Ismael
August 5, 2013 at 3:59 am in reply to: Using IE8 image hover link inside iconbox. Disappearing Image #132601Hi,
This is a short video on how to properly downgrade wordpress http://www.youtube.com/watch?v=OwNR6NVhVFQ
Regards,
Ismael
August 5, 2013 at 3:56 am in reply to: How can I translate the result-page for the search function? #133086Hi,
What do you mean by translate? Do you want to edit the template? You can edit includes > loop-search.php.
Regards,
Ismael
Hi,
Go to Enfold > Styling > scroll at the bottom, look for the Quick CSS field. Add this code.
.avia_mega_div {
width: 1024px;
}Save changes then remove browser cache and reload the page. Please give us a link to your website.
Regards,
Ismael
Hi,
Go to Enfold > Sidebar > Sidebar on Archive Pages, choose left sidebar. Go to Appearance > Widgets panel, add the Latest News widget on the Sidebar Blog widget area.
Regards,
Ismael
Hi,
You can actually do the same with fontello icons. Add a Text Block element, insert this on the text mode:
<ul>
<li><span class="entypo-fontello">✉</span>Click here to add your own text</li>
<li><span class="entypo-fontello">✉</span>Click here to add your own text</li>
<li><span class="entypo-fontello">✉</span>Click here to add your own text</li>
<li><span class="entypo-fontello">✉</span>Click here to add your own text</li>
</ul>✉ is an email icon from http://www.entypo.com/characters/.
Add this on your custom.css or Quick CSS
.entry-content li {
list-style: none;
}
.entry-content li span {
margin-right: 5px;
}Regards,
Ismael
Hi,
You can use this:
.main_menu ul:first-child > li > a {
font-size: 25px;
}Regards,
Ismael
Hi,
I checked your website using this: http://responsinator.com/?url=http%3A%2F%2Fsmartlifehealthcoaching.com%2F
It looks perfectly fine. It might be different on a native iOS environment. Let me tag Devin to check this out.
Regards,
Ismael
Hi,
On what element do you want to apply this changes? Please be specific.
Regards,
Ismael
Hi,
Unfortunately, the revision doesn’t work for the Avia Builder.
First, switch the Advance Layout Editor (ALE) to debug mode. Edit functions.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}
add_theme_support('avia_template_builder_custom_css');This will let you see the shortcode below the ALE. You can combine shortcodes like this:
[av_tab_container position='top_tab' boxed='border_tabs' initial='1' custom_class='']
[av_tab title='Tab 1' icon_select='no' icon='1']
Tab Content goes here
[av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
[/av_tab]
[av_tab title='Tab 2' icon_select='no' icon='1']
Tab Content goes here
[av_button label='Click me' link='' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='25']
[/av_tab]
[/av_tab_container]The example above are buttons inside a tab element.
Regards,
Ismael
Hi,
It is a bit complicated, you might need to hire a freelance developer to do the job for you. Anyway, this plugin gives you the ability to order post types. http://wordpress.org/plugins/post-types-order/
Regards,
Ismael
Hi,
Please refer to this link: https://kriesi.at/support/topic/translation-issue-on-search-results-page
Regards,
Ismael
August 5, 2013 at 12:54 am in reply to: White page with only "-1" saving or publishing a post #133097Hi,
Please add this on your custom.css or Quick CSS
/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
@media only screen and (max-width: 640px) {
/* Add your Mobile Styles here */
.template-page .entry-content h2, .av-special-heading h3 {
font-size: 15px;
}
}Regards,
Ismael
Hi,
Dude’s code should work. Edit textblock.php again, remove everything then replace it with this: http://pastebin.com/vdLN1kvi
Please remove browser cache then reload the page again. Can you post the code that you’re trying to add on the text block?
Regards,
Ismael
Hi,
Yes, that might be the problem. As you can see on the screenshot, it works properly on my end. Create a test installation without your sidebar plugins then Import the dummy data. Add the css code above.
Regards,
Ismael
August 5, 2013 at 12:20 am in reply to: How Did You Create the Fade-Out Hover Effect in LayerSlider? #133062Hi,
The hover effect is decreasing the opacity of the button.
#top .avia-slideshow-button:hover {
opacity: 0.7;
}This is the default css style of the button.
#top .avia-slideshow-button {
text-transform: uppercase;
color: #fff;
border-radius: 3px;
border: 3px solid #fff;
padding: 7px 16px;
margin-top: 20px;
display: inline-block;
text-decoration: none;
font-weight: bold;
background-color: rgba(0,0,0,0.2);
}Regards,
Ismael
Hi,
There is a p tag before the content. Can you please check if you unintentionally added a line break on the editor? Please add this on your custom.css or Quick CSS.
.tabcontainer div .first {
margin-top: 0;
}Regards,
Ismael
Hi,
Kriesi removed the caption on the prettyPhoto plugin. You can add a request here to turn it back. https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Ismael
August 5, 2013 at 12:12 am in reply to: Issue with dash in url when posting with post format of type Link #133057Hi,
The post format link works fine on our end. If you Import the dummy data then check the post “This is a post with post format of type Link”, it will direct you to this forum “http://kriesi.at/” without truncating the link. Can you give us a link to the post with the Link format?
Regards,
Ismael
Hi,
You can add this on your custom.css or Quick CSS to create an indent on the menus when you have a left sidebar.
#top .widget ul.sub-menu {
padding-right: 20px;
}Regards,
Ismael
August 4, 2013 at 11:32 pm in reply to: LayerSlider – Inconsistent Result from preview to final rendering #131942Hi,
You can actually implement a new slider if you find the LayerSlider difficult to use.
http://codecanyon.net/item/showbiz-pro-responsive-teaser-wordpress-plugin/4720988
Regards,
Ismael
-
AuthorPosts