109 comments found.
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 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 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
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.
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.
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; } }
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,
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.