Forum Replies Created
-
AuthorPosts
-
Sorry, somewhere here :
/* filter menu item urls */
if(!function_exists(‘avia_menu_item_filter’))
{
add_filter( ‘avf_menu_items’, ‘avia_menu_item_filter’, 10 );function avia_menu_item_filter ( $item )
{if(isset( $item->url ) && strpos($item->url, ‘#DOMAIN’) === 0)
{
$item->url = str_replace(“#DOMAIN”, get_site_url(), $item->url);
}return $item;
}
}Hi,
Where exactly should i insert it ? some where there ?
function avia_preload_screen()
{
$class = avia_get_option(‘preloader_transitions’) != “disabled” ? ‘av-transition-enabled’ : “”;
$label = __(‘Loading’,’avia_framework’);
$logo = avia_get_option(‘preloader_logo’);
if(is_numeric($logo)){ $logo = wp_get_attachment_image_src($logo, ‘full’); $logo = $logo[0]; }if($logo)
{
$class .= ” av-transition-with-logo”;
$logo = ““;
}$output = “”;
$output .= “<div class=’av-siteloader-wrap {$class}’>”;
$output .= “<div class=’av-siteloader-inner’>”;
$output .= “<div class=’av-siteloader-cell’>”;
$output .= $logo;
$output .= “<div class=’av-siteloader’><div class=’av-siteloader-extra’></div>”;
$output .= “</div>”;
$output .= “</div>”;
$output .= “</div>”;
$output .= “</div>”;return $output;
Hi, here the screenshot links :
(nota: i use the last version of both navigator)
Safari : https://www.dropbox.com/s/w38gqkn6wguhdp8/Safari.png?dl=0
Fierfox : https://www.dropbox.com/s/orultoflnb94fht/Fierfox.png?dl=0Another things…Regarding the answer of Basilis about the question # 1…
The info about the link in the answer, i dont think its the good one anymore, cause i cant find the reference that Joshu give there ie line 441Here’s Basilis answer :
Regarding one, take a look here
https://kriesi.at/support/topic/header-logo-url-change/Thanks
Thanks Basilis,
Regarding 3, the cache that you talking about is it in wp or Enfold,(if so, i didnt found where it is) cause i already clear my Safari’s Cache…
Thanks again
January 4, 2016 at 11:23 pm in reply to: I try to insert panoramic pictures with a "satisfying size"… #559568Thanks Andy,
I’ve try on other screen and it looks acceptable…also i will try your plugin suggestion, if needed…
December 17, 2015 at 8:54 pm in reply to: I try to insert panoramic pictures with a "satisfying size"… #554641Hi Rikard,
The thumbnails is ok, i find out how to manage it.
It is the the image i got when i click on the panoramic thumbnails that cause me problem. To me, Panoramic pictures seem to appear too small. Is it possible to make them appear bigger and keeping the same proportion ? Other images have a good size. Like i said before, all images, in all categories ( photographie 360°, Grand Angle and HDR ) appear well when i click on thumbnails… also i notice that all images ( in any categories ) reach the same width no matter the image/categories.
What is the method to send a screenshop in here, do i have to upload it on my server and give you the link ? Cause it seem not possible to put it by copy/paste… ?
Yep,
The width was blocked at 1310 px… found that in the setting !!!!
changed that and it works now !!!Hi
If you mean putting the exact code (private content) IN the Code Enveloppant Element, no, no change either…
Whereever i put the code in the Code Enveloppant Element or bloc code
The width don’t exceed 1200px
I can play with the height as i want but not the widthHi,
Even with just the iframe, It seem that Enfold block the width at a certain point. It dont go as wide as i want ! The Height is ajustable as good as i want, which is fine as i need !
Hi Elliott,
Here is the code i use, but i think that my measurement are wrong for Enfold, can you help ?
As i mentionned, i would like it look the same size of the header of the One Page Portfolio Demo.Thanks
-
AuthorPosts