Forum Replies Created
-
AuthorPosts
-
August 13, 2014 at 10:23 pm in reply to: New Blog Layout Can't Make Featured Image Full Width #304049
Hi Josh!
Try adding this too:
@media only screen and (min-width: 767px) { .template-single-blog .blog-meta{ margin-top: -320px !important; } .template-single-blog .entry-content-wrapper { z-index: 100; position: relative; } }You’d need to change the title color to keep it readable.
Regards,
JosueDone, you are welcome.
Best regards,
JosueHi Trevor!
There are still some unclosed media queries that are affecting all the code below, i could fix them for you if you provide me an admin account.
Best regards,
JosueHi!
After adding that code the single posts should look like this – http://screencast.com/t/KiYoSoahYDt
Try purging any caching/minification plugin you may have activated.
Cheers!
JosueHi!
I’m not seeing the issue on my end (http://www.screencast.com/t/YGR0F40xGbJ), i believe this may be related to your environment (either a browser extension or a network configuration), that’s why i suggested checking it on another computer to discard.
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
.template-single-blog main.content.units.twelve.alpha article .big-preview.single-big, .template-single-blog main.content.units.twelve.alpha article , .template-single-blog main.content.units.twelve.alpha, .template-single-blog { width: 100% !important; } .template-single-blog main.content.units.twelve.alpha article > *, .template-single-blog main.content.units.twelve.alpha > * { width: 1030px; margin: 0 auto; float: none; } .template-single-blog .content { padding-top: 0; }Cheers!
JosueHello,
I’m not sure if we can’t help you with this to be honest as we have no way to access your local installation. I’d suggest trying a plugin like:
WP MigrateDB or WP MigrateDB PRORegards,
JosueYou are welcome Slade, glad we could help :)
Regards,
JosueHi!
Try changing:
#transparentbar { background: rgba(0, 0, 0, 0.5); z-index: 100; position: relative; }To:
#transparentbar { background: rgba(0, 0, 0, 0.5); z-index: 100 !important; position: relative; }Regards,
JosueHi Trevor!
The code should work but the problem is that there are some typos in your Quick CSS code:
http://screencast.com/t/eCpJUJyoM8haRegards,
JosueHi Daniel,
I understand, but the problem is that fixing third-party plugins issues with the theme is beyond the support scope we can offer. Have you tried contacting the plugin author for more info about this?
Best regards,
JosueAugust 13, 2014 at 7:03 am in reply to: ENFOLD; The drop down menu and the mega menu do not show all the pages #303668August 13, 2014 at 6:32 am in reply to: ENFOLD; The drop down menu and the mega menu do not show all the pages #303662Hey!
Try adding this code to the Quick CSS:
.container .content { min-height: 500px; }That will ensure that there is always some space for the menu to expand.
Cheers!
JosueAugust 13, 2014 at 5:30 am in reply to: ENFOLD; The drop down menu and the mega menu do not show all the pages #303632Hey!
The problem is that we are not seeing the issue, here’s how it looks for me:

The thing with the holy places page is because the page is empty and there is not enough space for the menu to expand.
Cheers!
JosueYou are welcome, always glad to help :)
Regards,
JosueHey Alex!
Oh, if you are using that add this to the theme functions.php:
function change_blog_archive_style() { global $avia_config; if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; } } add_action('get_header', 'change_blog_archive_style');Cheers!
JosueHey!
Try selecting this option:

Cheers!
JosueAugust 13, 2014 at 4:07 am in reply to: Gravity Form List & Edit (Add-On from CodeCanyon) – Doesn't Work? #303583Hi Gucci Noyan!
1. Update the theme to the latest version (2.9.1).
2. Increase the memory allocated to PHP – http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
3. Disable all third-party plugins except Gravity Forms + the plugin mentioned.
4. Check if the plugins works with the default WP theme.Cheers!
JosueAugust 13, 2014 at 4:04 am in reply to: No products displaying on WooCommerce Frontpage Shop #303580Hey!
You need to set them a category, i did and now they show.
Best regards,
JosueHi Carlos!
You’d need to look for a plugin for that:
https://wordpress.org/plugins/tags/flickr
http://codecanyon.net/search?category=wordpress&direction=desc&order_by=best-match&term=flickr&utf8=%E2%9C%93Regards,
JosueHey Alex!
That should happen by default, can you post a link to your blog?
Regards,
JosueAugust 13, 2014 at 3:47 am in reply to: Insert search button and widget area in the secondary menu bar #303570Hey!
I see the search element in the upper bar. I didn’t understand exactly what you want to achieve, can you post a screenshot/mockup?
Best regards,
JosueHi!
I believe that’s not an issue in Replete latest version, if it occurs try using this plugin – http://wordpress.org/plugins/force-ssl-everywhere/
Regards,
JosueHey!
Try with this code:
#footer .widgettitle{ font-size: 24px; color: red; } #footer .widget{ font-size: 14px; color: green; }Cheers!
JosueHey Tomo!
Open wp-config.php and look for this line:
('WPLANG', 'en_US');Change it to:
('WPLANG', 'ja_JP');Best regards,
JosueGreat, you are welcome :)
Hi Igor!
You’d need to craft the appropriate CSS, the code should be put in Quick CSS.
As an alternative, you can try using LayerSlider which lets build something like that in a easier to use, drag and drop interface.
Best regards,
JosueAugust 13, 2014 at 3:33 am in reply to: Color Background video not showing on Firefox and IE #303560Hey Antonio!
Make sure you have Flash installed. Which version of IE are you referring to?
Best regards,
JosueHi Orhan,
There is definitely some sort of functionality running on the server (not in WordPress level) that is serving a cached snapshot of the frontpage, you can check that by activating another theme (i installed Twenty Fourteen to discard).
Regards,
JosueHey Bruno!
Try adding this at the very end of your theme functions.php file:
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1); function avia_replace_standard_icon($icons) { $icons['scrolldown'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue915'); return $icons; }Change “ue915” by the icon code of your preference (to check the codes put an icon element on a separate page and hover over them to see the codes).
Cheers!
Josue -
AuthorPosts
