Discussion on Emerix - Responsive HTML5 Template

Discussion on Emerix - Responsive HTML5 Template

By
Cart 564 sales
Well Documented

emerald does not currently provide support for this item.

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/AhwMPy6mEGQJnT7x

Then, the screen appear like in the link

http://www.mx7.com/view2/AhwNceK0NW5477q2

Also, 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.

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

Hello Michael,

This is not a WordPress theme, it is an HTML5 template (as well as all files in the “HTML” section on Themeforest.net). The Emerix WordPress theme is available here.

Regards, emerald

Hi, When I reduce the browser width to mimic phone or view the webpage on my phone the navigation that is on the left side is still visible .. the template I am using can be seen here under Features and then Icons http://themeforest.net/item/emerix-responsive-html5-template/full_screen_preview/6543157 it seems these navigation items on the left are duplicates of the menu and the class should be display: none or something similar to that

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), set data-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.

Could you tell me how to change hover color of simple menu

Add the following css in layout.css:
#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

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.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey