109 comments found.
Hello. I need to edit the Video section in the homepage but it seems to be impossble as it needs like to have a aditional Editor than Wordpres.
Can you please help me in this task? thanks.
P.S. if it is needed I can provide screenshot where is the video placed in the homepage. The website is https://electron.it
Regards, Sokol
Hi, thank you very much for you attention.
My question is. Can I insert responsive images with the Emerix template?
By default, if i insert an image with the “img” tag the image isn’t responsive, i need use some style to make the inserted image responsive?
Thank you very much.
Hi, some images in the template are responsive by default. For example, homepage banners – with 1220 or 1680 pixels wide, they look perfect on small screens.
In general, you can do like this:
1) layout (see index.html, “Feature Boxes with top icon”, as an example):
<article>
<a href="#" class="responsive-img">
<img src="images/feature6-420x236.jpg" alt="" class="normal-dpi" />
<img src="images/feature6-840x472.jpg" alt="" class="high-dpi" />
</a>
...
</article>
As you can see, you need to add the “responsive-img” class to the image container.
2) CSS (add it at the end of layout.css, for example):
.responsive-img > .high-dpi {
display: none;
}
/* for high-resolution devices */
@media (-webkit-min-device-pixel-ratio: 1.5),
(-o-min-device-pixel-ratio: 3/2),
(min-resolution: 1.5dppx),
(min-resolution: 144dpi) {
.responsive-img > .normal-dpi {
display: none;
}
.responsive-img > .high-dpi {
display: block;
}
}
Hope this will help you.
Hi,
I need your help about the page builder plugin. I click update on the page.
http://www.mx7.com/view2/AhwMPy6mEGQJnT7xThen, the screen appear like in the link
http://www.mx7.com/view2/AhwNceK0NW5477q2Also, when I click update on yoast seo plugin, it is not save.
Can you help me with these problem?Thanks,
Hello,
I need urgently help to remove this invsible border around the div container.
Please find the screenshot here.
http://www.xup.in/dl,76973086/emerix.jpg/Hello,
1) Add the following CSS to “Portfolio” section in layout.css:
#portfolio-wrapper article {
padding-bottom: 0;
}
2) Add “remove-bottom” class to the last portfolio item. It should look something like this:
<div class="one-half columns portfolio-item-preview remove-bottom">
3) Add new “mb-min-768px-remove-bottom” class to the one before last portfolio item. It should look something like this:
<div class="one-half columns portfolio-item-preview mb-min-768px-remove-bottom">
4) Add the following CSS to “Misc” section in base.css:
@media only screen and (min-width: 768px) {
.mb-min-768px-remove-bottom {
margin-bottom: 0 !important;
}
}
How do I get the top bar social icons to work properly? I can’t find the image with the top bar social icons, only images with bigger social icons. Look at www.integralpay.com, some icons work (Vimeo and Skype) but Facebook and YouTube don’t show up on the top bar at all. I see some HTML code calling for them but nothing ever shows up and I can’t find the associated images.
Figured it out… looks like the top bar social icon uses Font Awesome, and some of the social icons, believe it or not, are removed by AdBlock. I turned off AdBlock for the page and the social icons show up again. How very annoying.
Is there any possibility to have a custom mobile logo without coding? Because the logo is not responsive if it’s a little too wide. Thanks in advance.
Do you mean the possibility to display another logo on screens less than 768 pixels wide instead of the one that you set in your WordPress admin (Theme Options > Header)? Do you want to do this because your logo is wider than 300px? Could you explain in details please?
yes exactly! my logo is 440px wide.. I already created my mobile logo which is 221px but I can’t find out how to set this mobile logo
1) Add your mobile logo to Media Library.
2) Add the following styles to the “Custom CSS” field (Theme Options > Styling):
@media only screen and (max-width: 767px) {
.responsive #logo .normal-dpi {
display: none;
}
.responsive #logo a {
width: 250px;
height: 50px;
margin-top: 10px;
background: url(http://e-merald/themes/emerix-wp/wp-content/uploads/2016/07/mobile-logo.png) no-repeat left top;
}
}
@media only screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (max-width: 767px) and (-o-min-device-pixel-ratio: 3/2),
only screen and (max-width: 767px) and (min-resolution: 1.5dppx),
only screen and (max-width: 767px) and (min-resolution: 144dpi) {
.responsive #logo .high-dpi {
display: none;
}
}
Note: width and height – dimensions of your mobile logo, url should be replaced with the absolute URL address of the mobile logo you uploaded to Media Library.
thanks so much! it works!!
Glad I could help you.
Hello I just purchased your theme but I cannot install it in wordpress?! the style.css sheet is missing…. why is it not included?! This is definitely a must
Okay crap so I see I purchased the wrong template.. I needed the wordpress.. any option to swap it or get a refund on this one??? Thanks ..
Hello, you can request a refund, then I will approve it, and you will get your money back in 3-5 business days.
Thanks so much for your quik reply! I requested a refund and also bought the wordpress theme already! it’s an amazing theme! Thanks
Hello Emerald, I purchased your beautiful template and I like to change the colors for the social icons that apears on left side in header section, on top of the 1st page. I`ve tried to identify the location for these icons but without success. Please help me with any sugestion. Regards, Adelina
Sorry! I founded !!! Regards,
Hello Adelina,
Glad you could find the answer
If you have any other questions, please let me know.
.
Hello, while installing EMERIX-Theme I get the error “style.css not found” Theme is not installed. How can I fix this problem?
Regards, Michael
Can you tell me where I can go to modify the code
Otherwise a very nice template .. very comprehensive ..
Thank you
Mike
Hi Mike,
It’s quite easy to do – for the side menu widget (in an .html file), setdata-smallscreen attribute to “no”:
<div class="widget" data-smallscreen="no">Also you can add the following css in the layout.css file (inside “All Mobile Sizes” section, after “For page layout with sidebar” block):
#main-content.page-right-col {
margin-top: 0;
}
This will reduce the space between the page title and page content.
Hi,
I’ve purchased Emerix template, and now I’m trying to make some change. When I changed the name of contact.html to contact.php, google map doesn’t load. Just “loading map…” appears. I’m trying to find out the possible reason of the problem, but I couldn’t find till now. Could you help me to solve the problem.
Hi,
If you just changed the file extension of working contact.html, there should not be any problems with loading a google map from contact.php – I have tested it both locally and on remote server. Check if the following code is inserted in your contact.php:
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
That code certainly in its position. I’ve just changed name, that’s all. Actually, when I turn the name back into ”.html”, the map works properly.
I’ve found where the error source is, however really hard to solve for me. The reason is: I’ve decided to use index2 style, but index.html’s header, that is with class “top-bar-embedded”. Also, I’ve made some arrangements and customization in menu. Then, I cut all header part including header definition lines and copied into a new file called header.php and include it to all html files’ to replace their headers and changed their names into *.php . So I’ve got a common menu and for the current class, I’ve defined a php variable holding page name. Therefore, the current menu item can be arranged.
To find, where the reason of problem is, I moved almost step by step in header.php. When I made all content of header section, the problem has gone. And, when I move to
- in primary-nav and made comment just that ul’s content firefox’s debugger shows TypeError: b is null in selectnav.min.js:8:1644. Because of this error, other scripts stops.
With all these, can you help me pls.
I would try to help you if I could test your site online. Can you give me the link?
Sure. http://testkal.com/test/contact.php If you want, I can send you php sources.
I have found what is causing the JS error: don’t apply mega menu construction to those menu items that actually don’t include mega menu.
Instead of this one:<li class="sf-mega-parent"><a href="contact.php" class="current" >?leti?im</a> <div class="sf-mega" style="visibility: hidden; padding: 0px;"> </div> </li>use the following simple code:
<li><a href="contact.php" class="current">?leti?im</a></li>
There are 3 menu items that are actually not mega menu, those are the first, the second and the last menu items in order left to right. I had to change those into mega, since I couldn’t change simple menus hover color.
Now, I replace the mega menu code with the simple menu code for the last menu item. You can check the page http://testkal.com/test/ The second menu item is a simple menu item actually, but I use mega menu. And, the last menu item is a real simple menu item.
By the way, I’ve checked, it’s true, when remove fake mega menus, the map is working.
Thanks for your help
You are welcome!
Could you tell me how to change hover color of simple menu
#primary-nav #main-menu > li > a:not(.current):hover {
color: #fff !important;
}
It works perfectly. Thanks a lot.
The contact form is working but the messages are not displaying from the custom.js file. Can you fix this and post an update?
Right now the only result on successful contact form submission is a blank screen and the word “success”
It seems like the JavaScript code related to “Contact/Comment Form” in custom.js is not working on your page. This can be caused by one of the following: 1) the custom.js file is not included in your html page code and is not loaded, 2) the value of contact form’s id is not “contact-form”, 3) something causes an error in custom.js and disables the rest of JavaScript code in this JS file.
Is it possible to disable responsive function of this theme?
Unfortunately, there is no an easy way to disable the responsive mode in the template.
Hi I purchased the template and wondering if I can make the width of the main content on the page wider? I have tried to change it in the layout css with no luck! Thank you in advance.
Hi,
It’s in the grid.css... but I would not recommend you to modify this file. You will have to completely rebuild the grid (recalculate the widths of columns) and probably make some changes in the layout.css if you want to change the width of the main content.
Good to know I think I will leave it as is. Thank you for your quick response. Have a great day!
Hello. I’m having trouble sending messages counted by the form from my website. Angle got the template. The site is this: http://enovaodonto.com/tdg/
Hello. This is not the Emerix template.
Hi,
The last page of testimonials block (e.g. here http://e-merald.com/themes/emerix/index3.html) is always empty. Is it possible to fix this?
Thanks, Roman
Hi Roman,
I tested the page in different browsers and did not notice any blank slide in the testimonials block. For me it works properly.
I can reproduce this in any browser. The last testimonial page is blank for me and my customers. See the screenshot https://yadi.sk/i/u2ZW9trjkAt2A
I will certainly fix it and provide you with the solution as soon as I can reproduce the issue.
OK, this is strange. For instance, for me it is reproducible with Firefox 41.0.2. But this is not a major issue fortunately.
OUT OF OFFICE
I’ll be on holiday from 23rd of October to 1st of November with no internet connection. I will certainly reply to all questions and comments received as soon as I come back from the trip.
Thank you for your patience.
How can I add more than 1 map to the same html? How can I add more than 1 marken to the same map?
thanks for the answer
Hello,
You will need to customize your html file and custom.js (“Google Maps” section). It will look something like this:
In an html file:
<div id="map1" class="google-map"><span>loading map...</span></div>
...
<div id="map2" class="google-map"><span>loading map...</span></div>
<script>
// Custom parameters for Google Maps
var gm_params1 = {...};
var gm_params2 = {...};
</script>
In custom.js file:
var $gmap = $('#map1, #map2');
...
if (typeof gm_params1 != 'undefined') { ... }
if (typeof gm_params2 != 'undefined') { ... }
...
map1 = new google.maps.Map(document.getElementById('map1'), mapOptions);
map2 = new google.maps.Map(document.getElementById('map2'), mapOptions);
...
OUT OF OFFICE
I’ll be on holiday from 8th to 16th of August with no internet connection. I will certainly reply to all questions and comments received as soon as I come back from the trip.
Thank you for your patience.