Forum Replies Created
-
AuthorPosts
-
Hi!
1. This plugin will do it:
https://wordpress.org/plugins/zen-menu-logic/2. Try this plugin to minify the CSS/JS:
https://wordpress.org/plugins/bwp-minify/Best regards,
JosueYou forgot the URL.
Hi!
Can you post a link to the page where you want to make this mod?
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 1024px) { .responsive .tabcontainer{border-width: 1px; border-style: solid; border-top:none; overflow: hidden;} .responsive .tabcontainer .tab_titles{display:none;} .responsive .tabcontainer .tab_content, .responsive .tabcontainer .tab {width:100%; max-width:100%; border-left:none; border-right:0;left:0; top:0; min-height: 0!important;} .responsive .tabcontainer .tab_content{border-bottom:none; padding:15px 30px; clear: both; } .responsive .tabcontainer .tab.fullsize-tab{ display:block; margin-bottom:-1px;} .responsive .top_tab .tab.fullsize-tab{ margin-bottom:0px;} }Cheers!
JosueThis reply has been marked as private.Hi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueHi Jonas!
If you are referring to this:

This will do it:
.home a.slide-image { display: none !important; }Best regards,
JosueHi!
Not really, the Products (+ images and options) should be preserved. I just made a quick test on my local install and it went fine (replete > enfold).
Best regards,
JosueMay 30, 2014 at 10:05 pm in reply to: Responsive Table Being Cut off on Ipad (portrait view) #272608Hi,
Can you post the link to your website please?
Regards,
JosueHey!
For the FF issues:
http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problemsBest regards,
JosueHey!
I think that’s because the numbers of columns, the first one has 5 and the second one 4.
Cheers!
JosueHey Albert!
Try adding this code to the Quick CSS:
#top .av_header_transparency .header_bg { background: rgba(0,0,0,0.5); }Cheers!
JosueIt’s working:
This reply has been marked as private.The problem is that dekstop-only is inside mobile-only, they should be siblings (same level):

And you’d need to hide the mobile-only on desktops like:
@media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ .desktop-only { display: block !important; } .mobile-only { display: none !important; } } @media only screen and (max-width: 768px) { /* Add your Mobile Styles here */ .desktop-only { display: none !important; } .mobile-only { display: block !important; } }Makes sense?
Cheers!
JosueHey!
The issue seems to be related to the server because it also happened with the default WP theme activated, my guess would be to check your space quota in your hosting. Check if these other sizes actually exist in the server (via FTP).
Cheers!
JosueThis reply has been marked as private.Hey!
Open css/layout.css, comment/remove from line 1139 to line 1183:
.fullsize .content{ margin:0; border:none; } .fullsize .content .entry-content-wrapper{ padding-right:0; } #top .fullsize .template-blog .post-title{text-align: center; font-size: 30px; padding:15px 0; max-width: 800px; margin: 0 auto;} #top.single-post .fullsize .template-blog .post_delimiter{visibility: hidden;} #top .fullsize .template-blog .post-meta-infos{text-align: center;} #top .fullsize .template-blog .post .entry-content-wrapper{text-align: justify; font-size:15px; line-height: 25px; max-width: 800px; margin:0 auto; overflow: visible; } #top .fullsize .template-blog .post .entry-content-wrapper > *{ max-width: 600px; margin-left:auto; margin-right:auto; } #top .fullsize .template-blog .post_delimiter{border-bottom-width:1px; border-bottom-style: solid; width:3000px; left:-1500px; position: relative; max-width: 3000px;} #top .fullsize .template-blog .post_author_timeline{display:none;} #top .fullsize .template-blog .blog-meta { float: none; margin: 0 auto; display: block; position: relative; width: 81px; overflow: hidden; text-align: center; z-index: 1000; } #top .fullsize .related_entries_container img{ margin: 0 auto;} #top .fullsize .related_title{text-align: center; } #top .fullsize .related_posts{ padding: 23px 0 33px 0; } #top .fullsize .template-blog .big-preview a ,#top .fullsize .template-blog .small-preview img{float:none; display: inline-block; width:100%; max-width: 100%;} #top .fullsize .template-blog .first-quote{margin-top:15px;} #top .fullsize .template-blog .big-preview.multi-big{margin-bottom:-48px; padding: 0; width:100%;} #top .fullsize .template-blog .big-preview.multi-big a, .fullsize div .template-blog .big-preview.multi-big a img{width:100%;} #top .fullsize .template-blog .big-preview img{width:100%} .fullsize .big-preview .avia-gallery { width: 600px; max-width: 100%; margin: 0 auto; } .fullsize .comment_content {padding-right:0;} .fullsize .blog-tags{display: block;}Regards,
JosueHey Asad!
Try commenting line 77-78 in js/avia.js:
if($.fn.avia_smoothscroll) $('a[href*=#]', container).avia_smoothscroll(container);Regards,
JosueHey Signum!
You’d need to generate the proper slider shortcode in a separate Page using the Magic Wand tool, once you done that simply copy the shortcode to a Text Widget in the footer.
Cheers!
JosueHi!
Your logo looks fine on my end:

Mind posting a screenshot of your view?
Regards,
JosueHi!
No, the solution Yigit provided will only remove the icons from the iconboxes that have the class “remove-icon” applied.
Regards,
JosueHey!
Try adding this at the very end of your theme functions.php file:
function custom_grid_func($query) { $query = array_merge($query, array('post__not_in' => array(get_the_ID()))); return $query; } add_filter('avia_post_grid_query','custom_grid_func',10,2);Cheers!
JosueCan you post a link to the page where you are doing these tests?
May 30, 2014 at 8:00 pm in reply to: Youtube Video embed did not work with media-element video #272556Hey!
You need to make sure you are putting the YT URLs correctly (no shortlink, no parameters). Anyways, glad you found a workaround.
Best regards,
JosueHi!
Try increasing the WP MEMORY LIMIT:
http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHPBest regards,
JosueHi!
Are this classes mobile-only / desktop-only being declared in the content?
Regarding the other rule, try targeting the p elements of p1customMobile:
.p1customMobile p{ .. }Regards,
JosueSeems your message didn’t go through correctly, mind posting it again?
Best regards,
JosueYou are welcome, glad we could help :)
Regards,
Josue -
AuthorPosts
