-
AuthorSearch Results
-
March 17, 2016 at 8:33 pm #599938
In reply to: Create Mobile Friendly Custom Background Image
Hmm I’m having the same issue but when I tried your code it wasn’t working for me.
The image is perfect on the desktop but the top and sides get cut off on mobile – help!March 17, 2016 at 8:03 pm #599926In reply to: exclude specific sections on mobile devices
Hey Vinay,
I understand why it should be so simple, but….
When I resize your page, I see it change, so that works yes, but not with my page! :-S
And I see your page work on my desktop, but not on my mobile! There the section doesn’t dissappear!? I have an Iphone 6 with iOs 8Below are a few screenshots to show the problem.
So I know how it works and it should be simple, but I’m doing the same thing as you guys are, but with my things, it’s not working, that is strange, right? Ppffff tiring…
grt Boris
March 17, 2016 at 7:44 pm #599922In reply to: Remove hash value (#top) from url
Hi,
If you are on the homepage(Startseite) and click the startseite from the navigation a hash value of #top will appear in the url. Is it possible to remove the hash and the value after the link is clicked just to have a clean url. Same also with the ‘scroll to top’ button.
March 17, 2016 at 7:41 pm #599921Topic: background image error in chrome on mobile
in forum Enfoldaescribano4
ParticipantI’m triying to put a fixed backgroung image but I can’t see it like I expect on android chrome on smartphone
On firefox on smartphone it works correctly and on desktop all browsers it works well.I’m using endfold wedding demo
March 17, 2016 at 7:39 pm #599920Topic: Enfold Portfolio grid – Title and hover effect on mobile
in forum EnfoldCatherineCBrand
ParticipantHello,
I modified my porfolio grid CSS, following one of your treads (https://kriesi.at/support/topic/portfolio-grid-add-excerpt-under-title/), to have the title of the portfolio item appear on hover, instead of the default arrow. Everything works well, but I would like to add a padding on both sides of the title to make sure that it doesn’t appear too close to the right and left borders, as shown in the link below, but wraps instead on the next line.
I would also like to make sure that when the user clicks on the image on a mobile device 1) the dark blue background and title appear 2) the user clicks a second time 3) the user sees the portfolio item page. Currently, the user is directly directed to the portfolio item page, without seing its title, as the hover effect doesn’t work on mobile devices.
Could you please help me on this?
Many thanks,
CatherineMarch 17, 2016 at 7:12 pm #599902Topic: How to remove the main menu when scroll down
in forum Enfoldmauer
ParticipantHello Support,
my configuration:
Quick CSS:.main_menu ul:first-child > li > a { font-size: 30px; } .main_menu ul:first-child > li > a { font-family: menu-font-f; font-weight:lighter; } .av-main-nav > li > a > .avia-menu-text { position: relative; top: 75px; }– Use stretched or boxed layout?: Boxed Layout
– Logo and Main Menu: Top Header
– no header transparencymy enfold theme settings:
https://drive.google.com/open?id=0B8TTtO0FJi8xOWpwRkRCRjN6Tnc
https://drive.google.com/open?id=0B8TTtO0FJi8xekJIbldEUUM4aWc
https://drive.google.com/open?id=0B8TTtO0FJi8xY3NQVHMwTm5TcUkIs it posible to remove the main menu (see picture) when scolling down?
https://drive.google.com/open?id=0B8TTtO0FJi8xcG9vdHVlQmxGZlE
thank you
March 17, 2016 at 6:59 pm #599897Topic: Remove hash value (#top) from url
in forum Enfoldpandaweb
ParticipantHi, good day.
How to remove the hash value #top from the url? or any link that contains hash(#) with value?
Thanks.
Regards,
PandawebMarch 17, 2016 at 6:42 pm #599881In reply to: header overlapping checkout
Hey!
We have already replied you as you can see above. Have you tried using following code
.modal_content { top: 160px!important; }Cheers!
YigitMarch 17, 2016 at 6:38 pm #599877In reply to: Backup Buddy updates
Hi Patrick!
I already replied to your existing thread – https://kriesi.at/support/topic/backup-buddy-updates/.
Please do not create duplicated threads as it is making it harder for us and for other users to followCheers!
YigitMarch 17, 2016 at 6:28 pm #599864In reply to: Google Event Tracking
For anyone experiencing the same issue, I have just gone into the PHP file and re-written the code for the fullwidth button to allow the addition of onClick attributes. Please see below for the full replacement php code for the file “buttons_fullwidth.php” which can be found in wp_content/themes/enfold/config-templatebuilder/avia-shortcodes/
<?php /** * Button * Displays a button that links to any url of your choice */ if ( !class_exists( 'avia_sc_button_full' ) ) { class avia_sc_button_full extends aviaShortcodeTemplate { static $count = 0; /** * Create the config array for the shortcode button */ function shortcode_insert_button() { $this->config['name'] = __('Fullwidth Button', 'avia_framework' ); $this->config['tab'] = __('Content Elements', 'avia_framework' ); $this->config['icon'] = AviaBuilder::$path['imagesURL']."sc-button.png"; $this->config['order'] = 84; $this->config['target'] = 'avia-target-insert'; $this->config['shortcode'] = 'av_button_big'; $this->config['tooltip'] = __('Creates a colored button that stretches across the full width', 'avia_framework' ); $this->config['tinyMCE'] = array('tiny_always'=>true); } /** * Popup Elements * * If this function is defined in a child class the element automatically gets an edit button, that, when pressed * opens a modal window that allows to edit the element properties * * @return void */ function popup_elements() { $this->elements = array( array( "type" => "tab_container", 'nodescription' => true ), array( "type" => "tab", "name" => __("Content" , 'avia_framework'), 'nodescription' => true ), array( "name" => __("Button Title", 'avia_framework' ), "desc" => __("This is the text that appears on your button.", 'avia_framework' ), "id" => "label", "type" => "input", "std" => __("Click me", 'avia_framework' )), array( "name" => __("Additional Description",'avia_framework' ), "desc" => __("Enter an additional description",'avia_framework' ), "id" => "content", "type" => "textarea", "std" => "" ), array( "name" => __("Description position", 'avia_framework' ), "desc" => __("Show the description above or below the title?", 'avia_framework' ), "id" => "description_pos", "type" => "select", "subtype" => array( __('Description above title', 'avia_framework' ) =>'above', __('Description below title', 'avia_framework' ) =>'below', ), "std" => "below"), array( "name" => __("Button Link?", 'avia_framework' ), "desc" => __("Where should your button link to?", 'avia_framework' ), "id" => "link", "type" => "linkpicker", "fetchTMPL" => true, "subtype" => array( __('Set Manually', 'avia_framework' ) =>'manually', __('Single Entry', 'avia_framework' ) =>'single', __('Taxonomy Overview Page', 'avia_framework' )=>'taxonomy', ), "std" => ""), array( "name" => __("onClick Event?", 'avia_framework' ), "desc" => __("onClick=\"ga('send', 'event', 'Category', 'Action', 'Label');\"", 'avia_framework' ), "id" => "link_oc", "type" => "input", "std" => ""), array( "name" => __("Open Link in new Window?", 'avia_framework' ), "desc" => __("Select here if you want to open the linked page in a new window", 'avia_framework' ), "id" => "link_target", "type" => "select", "std" => "", "subtype" => AviaHtmlHelper::linking_options()), array( "name" => __("Button Icon", 'avia_framework' ), "desc" => __("Should an icon be displayed at the left side of the button", 'avia_framework' ), "id" => "icon_select", "type" => "select", "std" => "no", "subtype" => array( __('No Icon', 'avia_framework' ) =>'no', __('Yes, display Icon to the left of the title', 'avia_framework' ) => 'yes-left-icon' , __('Yes, display Icon to the right of the title', 'avia_framework' ) =>'yes-right-icon', )), array( "name" => __("Icon Visibility",'avia_framework' ), "desc" => __("Check to only display icon on hover",'avia_framework' ), "id" => "icon_hover", "type" => "checkbox", "std" => "", "required" => array('icon_select','not_empty_and','no') ), array( "name" => __("Button Icon",'avia_framework' ), "desc" => __("Select an icon for your Button below",'avia_framework' ), "id" => "icon", "type" => "iconfont", "std" => "", "required" => array('icon_select','not_empty_and','no') ), array( "type" => "close_div", 'nodescription' => true ), array( "type" => "tab", "name" => __("Colors",'avia_framework' ), 'nodescription' => true ), array( "name" => __("Font Color", 'avia_framework' ), "desc" => __("Select a custom font color for your Button here", 'avia_framework' ), "id" => "custom_font", "type" => "colorpicker", "std" => "#ffffff", ), array( "name" => __("Background Color", 'avia_framework' ), "desc" => __("Choose a background color for your button here", 'avia_framework' ), "id" => "color", "type" => "select", "std" => "theme-color", "subtype" => array( __('Theme Color', 'avia_framework' )=>'theme-color', __('Theme Color Subtle', 'avia_framework' )=>'theme-color-subtle', __('Blue', 'avia_framework' )=>'blue', __('Red', 'avia_framework' )=>'red', __('Green', 'avia_framework' )=>'green', __('Orange', 'avia_framework' )=>'orange', __('Aqua', 'avia_framework' )=>'aqua', __('Teal', 'avia_framework' )=>'teal', __('Purple', 'avia_framework' )=>'purple', __('Pink', 'avia_framework' )=>'pink', __('Silver', 'avia_framework' )=>'silver', __('Grey', 'avia_framework' )=>'grey', __('Black', 'avia_framework' )=>'black', __('Custom Color', 'avia_framework' )=>'custom', )), array( "name" => __("Custom Background Color", 'avia_framework' ), "desc" => __("Select a custom background color for your Button here", 'avia_framework' ), "id" => "custom_bg", "type" => "colorpicker", "std" => "#444444", "required" => array('color','equals','custom') ), array( "name" => __("Background Hover Color", 'avia_framework' ), "desc" => __("Choose a background hover color for your button here", 'avia_framework' ), "id" => "color_hover", "type" => "select", "std" => "theme-color-subtle", "subtype" => array( __('Theme Color', 'avia_framework' )=>'theme-color', __('Theme Color Subtle', 'avia_framework' )=>'theme-color-subtle', __('Blue', 'avia_framework' )=>'blue', __('Red', 'avia_framework' )=>'red', __('Green', 'avia_framework' )=>'green', __('Orange', 'avia_framework' )=>'orange', __('Aqua', 'avia_framework' )=>'aqua', __('Teal', 'avia_framework' )=>'teal', __('Purple', 'avia_framework' )=>'purple', __('Pink', 'avia_framework' )=>'pink', __('Silver', 'avia_framework' )=>'silver', __('Grey', 'avia_framework' )=>'grey', __('Black', 'avia_framework' )=>'black', __('Custom Color', 'avia_framework' )=>'custom', )), array( "name" => __("Custom Hover Color", 'avia_framework' ), "desc" => __("Select a custom background color for your Button here", 'avia_framework' ), "id" => "custom_bg_hover", "type" => "colorpicker", "std" => "#444444", "required" => array('color_hover','equals','custom') ), array( "type" => "close_div", 'nodescription' => true ), array( "type" => "close_div", 'nodescription' => true ), ); } /** * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className * * * @param array $params this array holds the default values for $content and $args. * @return $params the return array usually holds an innerHtml key that holds item specific markup. */ function editor_element($params) { extract(av_backend_icon($params)); // creates $font and $display_char if the icon was passed as param "icon" and the font as "font" $inner = "<div class='avia_button_box avia_hidden_bg_box avia_textblock avia_textblock_style'>"; $inner .= " <div ".$this->class_by_arguments('icon_select, color' ,$params['args']).">"; $inner .= " <span ".$this->class_by_arguments('font' ,$font).">"; $inner .= " <span data-update_with='icon_fakeArg' class='avia_button_icon avia_button_icon_left'>".$display_char."</span>"; $inner .= " </span>"; $inner .= " <span data-update_with='label' class='avia_iconbox_title' >".$params['args']['label']."</span>"; $inner .= " <span ".$this->class_by_arguments('font' ,$font).">"; $inner .= " <span data-update_with='icon_fakeArg' class='avia_button_icon avia_button_icon_right'>".$display_char."</span>"; $inner .= " </span>"; $inner .= " </div>"; $inner .= "</div>"; $params['innerHtml'] = $inner; $params['class'] = ""; return $params; } /** * Frontend Shortcode Handler * * @param array $atts array of attributes * @param string $content text within enclosing form of shortcode element * @param string $shortcodename the shortcode found, when == callback name * @return string $output returns the modified html string */ function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "") { avia_sc_button_full::$count++; $atts = shortcode_atts(array('label' => 'Click me', 'link' => '', 'link_oc' => '', 'link_target' => '', 'color' => 'theme-color', 'color_hover' => 'theme-color-subtle', 'custom_bg' => '#444444', 'custom_bg_hover' => '#444444', 'custom_font' => '#ffffff', 'position' => 'center', 'icon_select' => 'no', 'icon' => '', 'font' =>'', 'icon_hover' => '', 'description_pos' => '' ), $atts, $this->config['shortcode']); $display_char = av_icon($atts['icon'], $atts['font']); $style = "color:".$atts['custom_font']."; "; $style_hover = ""; if($atts['color'] == "custom") { $style .= "background-color:".$atts['custom_bg']."; "; } if($atts['color_hover'] == "custom") { $style_hover = "style='background-color:".$atts['custom_bg_hover']."; '"; } $extraClass = $atts['icon_hover'] ? "av-icon-on-hover" : ""; $blank = strpos($atts['link_target'], '_blank') !== false ? ' target="_blank" ' : ""; $blank .= strpos($atts['link_target'], 'nofollow') !== false ? ' rel="nofollow" ' : ""; $link = AviaHelper::get_url($atts['link']); $link = $link == "http://" ? "" : $link; $link_oc = $atts['link_oc']; if($style) $style = "style='{$style}'"; $content_html = ""; if($content && $atts['description_pos'] == 'above') { $content_html .= "<div class='av-button-description av-button-description-above'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content) )."</div>"; } if('yes-left-icon' == $atts['icon_select']) $content_html .= "<span class='avia_button_icon avia_button_icon_left ' {$display_char}></span>"; $content_html .= "<span class='avia_iconbox_title' >".$atts['label']."</span>"; if('yes-right-icon' == $atts['icon_select']) $content_html .= "<span class='avia_button_icon avia_button_icon_right' {$display_char}></span>"; if($content && $atts['description_pos'] == 'below') { $content_html .= "<div class='av-button-description av-button-description-below'>".ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content) )."</div>"; } $output = ""; $output .= "<a href='{$link}' {$link_oc} class='avia-button avia-button-fullwidth {$extraClass} ".$this->class_by_arguments('icon_select, color' , $atts, true)."' {$blank} {$style} >"; $output .= $content_html; $output .= "<span class='avia_button_background avia-button avia-button-fullwidth avia-color-".$atts['color_hover']."' {$style_hover}></span>"; $output .= "</a>"; $output = "<div class='avia-button-wrap avia-button-".$atts['position']." ".$meta['el_class']."'>".$output."</div>"; $params['class'] = "main_color av-fullscreen-button avia-no-border-styling ".$meta['el_class']; $params['open_structure'] = false; $id = AviaHelper::save_string($atts['label'],'-'); $params['id'] = !empty($id) ? $id : "av-fullwidth-button-".avia_sc_button_full::$count; $params['custom_markup'] = $meta['custom_markup']; //we dont need a closing structure if the element is the first one or if a previous fullwidth element was displayed before if($meta['index'] == 0) $params['close'] = false; if(!empty($meta['siblings']['prev']['tag']) && in_array($meta['siblings']['prev']['tag'], AviaBuilder::$full_el_no_section )) $params['close'] = false; if(!ShortcodeHelper::is_top_level()) return $output; $button_html = $output; $output = avia_new_section($params); $output .= $button_html; $output .= avia_section_after_element_content( $meta , 'after_fullwidth_button' ); return $output; return $output; } } }Unless Kriesei decide to take this free bit of code development and add it to their next Enfold theme update, this code will be overwritten when the next Enfold update is released. Easiest way around that is to save it in the equivalent location within a child theme.
March 17, 2016 at 6:25 pm #599862In reply to: Edit Image position in menu bar instead of text
Hey twinfield!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
li#menu-item-18 img { position: relative; top: -10px; }Cheers!
YigitMarch 17, 2016 at 6:09 pm #599847Ok. I did as you suggested (which I did previously but it did not look like the screenshot of the mockup I am trying to replicate). Here is what it looks like now. If you see what the homepage looks like now it is missing the left and right padding areas of the image column and the top (referenced: http://www.awesomescreenshot.com/image/1065613/aba6e8ababba2df65e68bc44053d6aae).
March 17, 2016 at 6:07 pm #599845In reply to: Left sidebar layout > breadcrumbs missing
Hi Yigit,
I find it a bit strange that title bar (incl. breadcrumbs!) is disabled on left sidebar layout by default and that there is no topion to switch it on… :-(
I will discuss with my client what he wants.
You can flag this topic as solved.
Regards,
MoniqueMarch 17, 2016 at 6:04 pm #599842In reply to: Logo im Page-Preloader
Hey Frankmen!
du könntest versuchen die Höhe des Kreises zu verändern mit diesem Code im Quick CSS Feld:
.av-siteloader { top: -20px; }Gruß,
AndyMarch 17, 2016 at 6:00 pm #599833Thanks Yigit!
That solved at least my current issues.
Fyi: there must be a bug in the theme options when using left sidebar layout. It is strange that some of the set theme options don’t have effect on the website…!? Perhaps you can improve this in the next version of Enfold?
You can flag this topic as solved.
Regards,
MoniqueMarch 17, 2016 at 5:56 pm #599827In reply to: Contact form 7 styling
Hey!
Please refer to this post for the CSS to make the cf7 form look similar to Enfold form
Cheers!
Vinay Kashyap-
This reply was modified 10 years ago by
Vinay.
March 17, 2016 at 5:46 pm #599809Topic: RESPONSIVE PROBLEM
in forum Enfoldgdostudio
ParticipantHello dear,
i cannot understand why i cannot see my hompega in the right way on mobile. Everything is fine in desktop mode but in mobile, even if i choose to show a column each time they appear together by side and it makes caos a lot. Could you help me somehow? Thanks a lot.March 17, 2016 at 5:39 pm #599799In reply to: Responsive – Mobile screen problem
Hi!
You are most welcome!
Please login to the support forum and go to this link https://kriesi.at/support/forum/enfold/
You will find a big blue button on the top to open a new ticket or scroll to the bottom to find a place to enter your question and a describe the issue below :)
Cheers!
Vinay KashyapMarch 17, 2016 at 5:37 pm #599796In reply to: Left sidebar layout > bg image logo area
Thanks Ismael!
For the smaller screen widths (tablet, mobile) where the header is placed on top, that is a very nice solution!
However, it does not solve the issue on bigger screen width and a height of under approx. 786px. where the header is on the left. Can you change your screen size to (for example) below 786 px height and than see what happens? See also the print screen I previously submitted.
Looking forward to hear from you.
Regards,
MoniqueMarch 17, 2016 at 5:24 pm #599785In reply to: Sidebar Background Color
Hi!
Please add the below code to Quick CSS it will make the sidebar height same as the page height.
#top #main .sidebar_left .sidebar { position: absolute; top: 0; bottom: 0; }Best regards,
Vinay KashyapMarch 17, 2016 at 5:16 pm #599771In reply to: RSS & TWITTER Widgets
Hey!
This one – https://kriesi.at/support/topic/rss-twitter-widgets-2/#post-598596
Best regards,
YigitMarch 17, 2016 at 5:15 pm #599769In reply to: Left sidebar layout > issue font size menu
Thank you Yigit!
Using the code to change font-size for main-nav (in my case in Child css) helps.
Fyi: there must be a bug in the theme options when using left sidebar layout, since changing the font-size in theme options for main-nav links doesn’t work. It works for submenu level though. It is strange that it works for sublevel links and not for main-nav links…!? Perhaps you can improve this in the next version of Enfold?
You can flag this topic as solved.
Regards,
MoniqueMarch 17, 2016 at 5:12 pm #599760In reply to: Adding highlight to text
Hi thanks both for your help.
However when I use the code below I get a box around the text as I have had before. In case it wasn’t clear what I want to do is just highlight the text itself (as shown in the top example here http://postimg.org/image/rui8djhrr/, what I have already is shown in the bottom example).
h1{background-color: rgba(0, 0, 0, 0.5) !important;padding: 5px !important;}
Thanks
March 17, 2016 at 5:04 pm #599745In reply to: Color section video background mobile question
Hi!
We copied the short code you provided and tested in our installation the background video URL is empty. Please add the youtube video url in the same format as the example it should work fine. and don’t forget to set the height of color section to min 100% under “Section layout” options
Here is the new shortcode with the background video works on mobile devices :)
[av_section min_height='100' min_height_px='500px' padding='no-padding' shadow='no-border-styling' bottom_border='no-border-styling' id='' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='https://www.youtube.com/watch?v=IwmSFDA8jm8' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' custom_class=''] [av_textblock size='' font_color='' color=''] This is a sample page illustrating the issue with color background and mobile video. If you select a youtube video as a background and don’t specify an image background, the mobile browser displays a still photo of the video with a red “play” icon but the icon does NOT play the Youtube video. [/av_textblock] [/av_section]Best regards,
Vinay KashyapMarch 17, 2016 at 4:51 pm #599710In reply to: Mobile Ignoring Background Image Positioning
I’ve been testing on a couple different Android phones (Motorola and Samsung). I tried dumping the cache and refreshing, but the same result. Again, oddly enough, when I choose the option “request desktop site”, the image alignment displays correctly.
It’s as if the image alignment CSS style is ignored (or set to “bottom”) when it displays for mobile. The other weird thing is that it used to display correctly, and I’ve encountered this problem without doing any editing on my end. The only things changed are the WordPress and Theme versions and perhaps the Android OS.
March 17, 2016 at 4:48 pm #599705Topic: Remove Shoping Cart Icon on Responsive Layout
in forum Enfoldnokie1
ParticipantHey Guys,
i really like the function that the shopping cart icon is only shown when you added a item to the cart. This works fine on the regular desktop layout but when i open the page on mobile devices i see the the cart icon again. is there any way to remove it also on mobile devices at least till i add a item to the cart?
ty
March 17, 2016 at 4:43 pm #599692In reply to: Special Heading custom
Hi!
Please add following code to Quick CSS
#top #wrap_all .custom-color-heading .av-special-heading-tag, #top .custom-color-heading a, #top .custom-color-heading strong, #top .custom-color-heading .special_amp { color: #b6862c!important; }Best regards,
YigitMarch 17, 2016 at 4:39 pm #599685In reply to: White space between content fields
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.av-special-heading { margin-top: 20px; }Regards,
YigitMarch 17, 2016 at 4:33 pm #599673In reply to: Cart Button Hidden
Hi!
Please add following code to Quick CSS
.responsive #top .cart_dropdown { top: 30px; }P.S.: You are sending preview links to your screenshots and we are not able to see them.
Best regards,
YigitMarch 17, 2016 at 4:28 pm #599669Hey!
hm? not sure what you mean. You video plays fine for me when opening the link you have provided. When I go to another page the video stop. I think I don’t get what the issue is about for you. Can you explain further please? maybe screenshots could help to make things clear for us? use imgur.com or dropbox.
Regards,
Andy -
This reply was modified 10 years ago by
-
AuthorSearch Results
-
Search Results
-
I’m triying to put a fixed backgroung image but I can’t see it like I expect on android chrome on smartphone
On firefox on smartphone it works correctly and on desktop all browsers it works well.I’m using endfold wedding demo
Hello,
I modified my porfolio grid CSS, following one of your treads (https://kriesi.at/support/topic/portfolio-grid-add-excerpt-under-title/), to have the title of the portfolio item appear on hover, instead of the default arrow. Everything works well, but I would like to add a padding on both sides of the title to make sure that it doesn’t appear too close to the right and left borders, as shown in the link below, but wraps instead on the next line.
I would also like to make sure that when the user clicks on the image on a mobile device 1) the dark blue background and title appear 2) the user clicks a second time 3) the user sees the portfolio item page. Currently, the user is directly directed to the portfolio item page, without seing its title, as the hover effect doesn’t work on mobile devices.
Could you please help me on this?
Many thanks,
CatherineHello Support,
my configuration:
Quick CSS:.main_menu ul:first-child > li > a { font-size: 30px; } .main_menu ul:first-child > li > a { font-family: menu-font-f; font-weight:lighter; } .av-main-nav > li > a > .avia-menu-text { position: relative; top: 75px; }– Use stretched or boxed layout?: Boxed Layout
– Logo and Main Menu: Top Header
– no header transparencymy enfold theme settings:
https://drive.google.com/open?id=0B8TTtO0FJi8xOWpwRkRCRjN6Tnc
https://drive.google.com/open?id=0B8TTtO0FJi8xekJIbldEUUM4aWc
https://drive.google.com/open?id=0B8TTtO0FJi8xY3NQVHMwTm5TcUkIs it posible to remove the main menu (see picture) when scolling down?
https://drive.google.com/open?id=0B8TTtO0FJi8xcG9vdHVlQmxGZlE
thank you
Hi, good day.
How to remove the hash value #top from the url? or any link that contains hash(#) with value?
Thanks.
Regards,
PandawebTopic: RESPONSIVE PROBLEM
Hello dear,
i cannot understand why i cannot see my hompega in the right way on mobile. Everything is fine in desktop mode but in mobile, even if i choose to show a column each time they appear together by side and it makes caos a lot. Could you help me somehow? Thanks a lot.Hey Guys,
i really like the function that the shopping cart icon is only shown when you added a item to the cart. This works fine on the regular desktop layout but when i open the page on mobile devices i see the the cart icon again. is there any way to remove it also on mobile devices at least till i add a item to the cart?
ty
