322 comments found.
Hi,
I’m wondering is this possible to have only 1 of the dropdown link target _blank ? (dropdown list menu use for small view – mobile device).
Thanks
Hey,
Thank you for your comment.
Concerning your question, please have a look at this code.
In scripts.js please change from:
//select in navigation
$('nav select').change(function() {
window.location = $(this).val();
})
to:
//select in navigation
$('nav select').change(function() {
key = $(this).val();
if (key=="link1") {
var a = document.createElement('a');
a.href='http://www.example.com';
a.target = '_blank';
document.body.appendChild(a);
a.click();
} else {
window.location = $(this).val();
}
})
and in html please set the item for mobile, for example as this one:
<option value="link1">- Example.com</option>
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Hi,
Your code is not working as expected. It’s not target _blank (same windows) and it’s give me http://localhost/mysite/link1 instead of http://www.otherlink.comThis is for an external link this is why I want it target _blank.
Thanks
My bald, I have retried today and now it’s working thanks
You are welcome 
Hello there is any way to make the file send-contact.php redirecto to a thank-you page???
I’m doing a campaign based on conversions and it is imperative.
Can you help me??? Tk!
Hey Plenoestudio,
Thank you for your comment.
There is more simple solution to your need.
Please jsut add in proper place in scripts.js:
window.location = "http://example.com/thank-you.html";
Details:
In scripts.js please replace from:
if(status == "ok") {
form.prepend('<p class="msg success"><a class="hide" href="#">hide this</a>' + msg + '</p>');
form.find("input, select, textarea").val("");
var valField = form.find(".select .value");
var selectField = valField.siblings("select");
var selectedText = selectField.find("option").eq(0).html();
valField.html(selectedText);
}
to:
if(status == "ok") {
form.prepend('<p class="msg success"><a class="hide" href="#">hide this</a>' + msg + '</p>');
form.find("input, select, textarea").val("");
var valField = form.find(".select .value");
var selectField = valField.siblings("select");
var selectedText = selectField.find("option").eq(0).html();
valField.html(selectedText);
window.location = "http://example.com/thank-you.html";
}
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
It works very well!! thank you soo much!!! 
You are welcome 
Another nicely done!;
Thank you 
Hey RicardoJaci,
Thank you for your comment. We checked the website with Chrome on few different computers and couldn’t replicate the issue. Could you please give us more information about your operating system, Chrome version, etc., beowser plugins installed / special setttings?
Kind regards, ThemeMotive team
Hi Sorry for the basic question, but I have been going through the code of the Multipurpose – Responsive HTML template and cannot find the place to change. I would like to get rid of the grey border of the images, particularly those at the sidebar.
Where is the CSS line to change?
Best regards, Alberto
Hey,
Thank you for your comment .
In scripts.js please search for this line:
$(".content img, footer .widget_photos img").not(".content .testimonial img, .hp-services img, .logo, h3 img, button img, .product-meta img, .img-border img").each(function(){
then please add .content > aside section img, so that the code will look like this:
$(".content img, footer .widget_photos img").not(".content .testimonial img, .hp-services img, .logo, h3 img, button img, .product-meta img, .img-border img, .content > aside section img").each(function(){
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
It worked perfectly! Thanks so much for your superb support! Alberto
You are welcome 
Sorry for asking again. Is it a way to have some images in the main body without frame? As an exception of the general rule. Thanks.
Thank you for your comment.
concerning your question: for example please add class to the image: <img class="no-border" src="" alt="" />
and the in scripts.js please add the path to this image, for example:
$(".content img, footer .widget_photos img").not(".content .testimonial img, .hp-services img, .logo, h3 img, button img, .product-meta img, .img-border img, .content > aside section img, img.no-border").each(function(){
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Done! Thank you!
You are welcome 
Hi, congratulations for your great work. I want to ask if there is any way to add transition effects on the sliders. Thanks for your reply
Hey,
Thank you for your positive feedback. We appreciate it 
It’s possible to change the fadeIn and fadeOut in scripts.js
For example please replace fadeIn() to fadeIn(2000) and fadeOut() to fadeOut(2000) to observe longer transition effect.
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Hello, After updating to your latest template. None of my contact forms seem to be working. They are working in the respects of popping up errors when you fail to fill out the form properly. But failing to actually pop up any confirmation messages or send out anything at all. When you press send message, it just sits there and says sending. And it never errors out or anything. I am sure it was probably something i did…any ideas?
Hello,
Thank you for your comment.
Did you change the hosting and did you put your e-mail address in the correct place? We didn’t change the form code in the updates, so they should work fine, please reviewe your custom code to make all is fine. We recommend you also to change only the native version code if it’s working on your server. Your server need to have enabled the PHP and mail function.
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Kind regards, ThemeMotive team
Hmmm….is there any other code i might be missing in the java or html?
Could you please send us your files you are using to review? Our e-mail is info at thememotive dot com
Kind regards, ThemeMotive team
Got it. Knew it was on my end. I had to set up my php.ini to use my server address instead of localhost. Sorry!
You are welcome 
I’m having some real challenges with mobile compatability www.TRACstaffing.com
If you could look it over and let me know what I need to do, it would be greatly appreciated.
Thanks for your time.
I’m wanting to just change it to where its always in desktop view
Hey,
Thank you for yout comment.
If you want to disable responsive mode then it’s needed to remove all media quersies in style.css and style-header.css and style-colors.css and replace max-width to width and max-height to heigh.
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Hello, In the bottom of every page you have a section “Sign up for newsletter”, which collects the E-mail of the subscriber. Could you please change the code so that it has two fields, one for collecting a name, and the other (as now) – for E-mail? I think that many of your customers would like to have that feature. Thank you beforehand.
Hey Kazmarar,
Thank you for your comment and proposition. We will consider to include it for the next release, however for now it’s simple to add new field, for example this code is using new input field for name:
<p><input name="name" id="news_name" placeholder="Your name"></p><p><input name="MAIL" id="news_email" placeholder="Your e-mail"></p><p><button type="submit" name="subscribe" id="subscribe" value="1"><img src="images/mail.png" alt="Subscribe" /></button></p>
and get the data (name) from that field by adding in the maile content:
$_POST['news_name']
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Thank you for the code. I think the first part should be placed in every page. But in which file should be added the line $_POST[‘news_name’]? Should it be placed in newsletter-signup.php or send-contact.php or send-header-form.php? And where in the file should be placed that line?
You are welcome
It should be placed in newsletter-singup.php
You can add:
$news_name = $_POST['news_name'];
and then replace this lines:
$content = 'E-mail: '.$email.'<br />'.
'Time: '.$timestamp.'<br />'.
'IP: '.$host.'<br />'.
'User agent: '.$user_agent;
to this:
$content = 'E-mail: '.$email.'<br />'.
'Name: '.$news_name.'<br />'.
'Time: '.$timestamp.'<br />'.
'IP: '.$host.'<br />'.
'User agent: '.$user_agent;
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
<?php
$name = '';
$subject = '';
$email = '';
$message = '';
$news_name = $_POST['news_name'];
function getIp()
{if(isset($_SERVER['HTTP_X_FORWARDED_FOR'])){
$ip_address=$_SERVER['HTTP_X_FORWARDED_FOR'];
}
if (!isset($ip_address)){
if (isset($_SERVER['REMOTE_ADDR']))
$ip_address=$_SERVER['REMOTE_ADDR'];
}
return $ip_address;
}
//taking the data from form
$email = addslashes(trim($_POST['MAIL']));
//form validation
$errors = array();
$fields = array();
$email_pattern = "/^[a-zA-Z0-9][a-zA-Z0-9\.-_]+\@([a-zA-Z0-9_-]+\.)+[a-zA-Z]+$/";
if(!$email) {
$errors[] = "Please enter your e-mail address.";
$fields[] = "news_email";
} else if(!preg_match($email_pattern, $email)) {
$errors[] = "The e-mail address you provided is invalid.";
$fields[] = "news_email";
}
//preparing mail
if(!$errors) {
//taking info about date, IP and user agent
$timestamp = date("Y-m-d H:i:s");
$ip = getIp();
$host = gethostbyaddr($ip);
$user_agent = $_SERVER["HTTP_USER_AGENT"];
$headers = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/html; charset=utf-8\n";
$headers .= "Content-Transfer-Encoding: quoted-printable\n";
$headers .= "From: $email\n";
$content = 'E-mail: '.$email.'<br />'.
'Name: '.$news_name.'<br />'.
'Time: '.$timestamp.'<br />'.
'IP: '.$host.'<br />'.
'User agent: '.$user_agent;
//sending mail
$ok = mail("info@ankyunacar.com","Message MultiPurpose Template", $content, $headers);
if($ok) {
$response['msgStatus'] = "ok";
$response['message'] = "Thank you, you will hear from us soon.";
} else {
$response['msgStatus'] = "error";
$response['message'] = "An error occured while trying to adda you address to the subscription list. Please try again later.";
}
} else {
$response['msgStatus'] = "error";
$response['message'] = $errors[0];
$response['errorFields'] = $fields;
}
header('Content-type: application/json');
echo json_encode($response);
?>
This code captures e-mail, but does not capture the name. What is the problem? Please advise also, is there any code here to verify the name, so that the name does not contain any php code?
Could you please send us your html form code to review? Please make sure you add name=”news_name” to the input with name.
Concerning your second question. You could add this:
$news_name = addslashes($_POST['news_name']);
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
You can see the source file visiting http://www.ankyunacar.com/ENG/
$news_name = addslashes($_POST['news_name']);
under the
//taking the data from form
the code worked!
Thank you.
You are welcome 
Hi, I’m embeding the menu using php <?php include_once “_nav.php”; ?> and I’d like to have to css follow the active button menu for the top and mobile menu.
Here there any way to do it using the provided code.
Hi,
Thank you for your comment.
You could variable with page name on the top of each page, for example on page.html:
<?php page_name = 'page.html';?>
and in your file with nav.php you could add for example:
<option value="./page.html" <?php if ($page_name == 'page.html') {echo 'selected="selected"';}?> >Page</option>
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Where do I need to paste this line <?php $page_name = ‘page.html’;?> Before the < head > in the < head > or in the < body >?
up
Hey,
On the top of the website, it could be even before head as this is only to store the variable.
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Hi, still have problem with this. How to adapt this for the main-menu (primary top menu) as it is not a drop downdown list but li and a. It’s need to add the current-menu-item class to parent items.
I’m using this script on my other template but can’t adjust it to work with your themplate
var url = window.location.pathname;
var activePage = url.substring(url.lastIndexOf('/') + 1);
$('.primary-nav li a').each(function () {
var linkPage = this.href.substring(this.href.lastIndexOf('/') + 1);
}
});
if (activePage == linkPage) {
$(this).parent().addClass('active');
Hey,
Thank you for your comment.
We recommend you to use php solution described above. It will work better and it is easier to implement.
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
The solution you provided is not working when the menu is NOT a dropdown list. Let say I’m using the UNDERLINE menu which is base on UL and LI . The solution you provided work only on the dropdown list (small view – mobile version). Could you provide a way to do it on regular menu like Underline? Thanks
Hi Lenamtl,
Thank you for your comment.
As for your question: please just add target="_blank" for the menu item you want to target.
For example, please change from:
<li><a href="./landing-page.html">Landing Page</a></li>
to
<li><a href="./landing-page.html" target="_blank">Landing Page</a></li>
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
I’m talking about the css for the active menu (nothing to do with target _blank) I think you may be confuse with my other question 
You proposed this solution (see your first reply) You could variable with page name on the top of each page, for example on page.html:
<?php page_name = ‘page.html’;?> and in your file with nav.php you could add for example:
<option value=”./page.html” <?php if ($page_name == ‘page.html’) {echo ‘selected=”selected”’;}?> >Page</option>
Unfortunately this will not work with UNDERLINE menu to keep it active when selected.
If you want to have “underlined” menu active then please have a look at this example:
<li if=""> ><a href="./portfolio-with-slider.html">Portfolio with Slider</a></li>
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
It seems that php code was cut from the comment above, so could you please send us e-mail to info (at) thememotive (dot) com, so that we could send you back the exemplary code?
Kind regards, ThemeMotive team
Hey Lenamtl,
We just have sent you the e-mail with code example.
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Thanks a lot for the great support. I’m sharing your solution:
Please change from:
<li><a href="./portfolio-with-slider.html">Portfolio with Slider</a></li>
to:
<li if=""> ><a href="./portfolio-with-slider.html">Portfolio with Slider</a></li>
Added code:
<?php if ($page_name == 'page.html') {echo 'class="current-menu-item"';} ?>
for li element.
Hi I want to add heading h1 h2 etc. to the text inside the shortcode/content boxes, can you give me the css to do this? Can I add an image bullet points in the content boxes? Thank you John
Hey,
Thank you for contacting us.
To use more headings and paragraps inside content boxes please just replace in style.css:
from:
.box p {margin-top: 0; margin-bottom: 20px; padding: 20px 30px 25px; border: 1px solid #dfdfdf; border-top: 2px solid #747474; background-repeat: no-repeat; background-position: 20px 30px; box-shadow: inset 0 0 15px rgba(0,0,0,0.04);}
.box.info p {padding-left: 70px; border-color: #c5dce7; border-top: 2px solid #747474; background-color: #e7f7ff; background-image: url("images/box-info.png");}
.box.confirm p {padding-left: 70px; border-color: #cbe3b4; border-top: 2px solid #747474; background-color: #eeffda; background-image: url("images/box-confirm.png");}
.box.alert p {padding-left: 70px; border-color: #e9dab1; border-top: 2px solid #747474; background-color: #fff9d8; background-image: url("images/box-alert.png");}
.box.warning p {padding-left: 70px; border-color: #ebbcb5; border-top: 2px solid #747474; background-color: #ffe6dc; background-image: url("images/box-warning.png");}
to:
.box {margin-top: 0; margin-bottom: 20px; padding: 20px 30px 25px; border: 1px solid #dfdfdf; border-top: 2px solid #747474; background-repeat: no-repeat; background-position: 20px 30px; box-shadow: inset 0 0 15px rgba(0,0,0,0.04);}
.box.info {padding-left: 70px; border-color: #c5dce7; border-top: 2px solid #747474; background-color: #e7f7ff; background-image: url("images/box-info.png");}
.box.confirm {padding-left: 70px; border-color: #cbe3b4; border-top: 2px solid #747474; background-color: #eeffda; background-image: url("images/box-confirm.png");}
.box.alert {padding-left: 70px; border-color: #e9dab1; border-top: 2px solid #747474; background-color: #fff9d8; background-image: url("images/box-alert.png");}
.box.warning {padding-left: 70px; border-color: #ebbcb5; border-top: 2px solid #747474; background-color: #ffe6dc; background-image: url("images/box-warning.png");}
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
It works great, thanks for very quick reply. John
You are welcome 
Hi,
I’m having a problem, some page are very short and a space appear underneat the footer without background I’d like to get rid of this blank space which is by the way full width
I have reproduced the problem with home3 the boxed version, to reproduce remove most of the content and you will see what I mean.
Any clue how to fix it? Thanks
It’s look like the background in under this blank part If I display the scrollbar I can see there are 2 vertical scroll bars
Hey Lenamtl,
Thank you for your comment.
We couldn’t replicate the issue you mentioned. Seems like it’s problem related to your custom code or modified code structure. We recommend you toc heck your code with W3C validator and fix the potential issues.
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
No, I have reproduced the problem using your original theme (not edited) to make sure. Take home3 template remove all content between the slideshow and the footer to have a short page. You will see the background will be behind the blank space in the bottom of the page. It’s happening only on short page (less content). Is there any limit of minimum height of the site?
When I inspect the unwanted blank part, here is the result I have
element.style { }
media=”screen” html { overflow-y: scroll; background: #ececec; }
media=”screen”- { margin: 0; padding: 0; }
html { display: block; }
Here is the css I’d like to use for background on a boxed theme background-color: #faf7f8; filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#faf7f8, endColorstr=#e2d0cf); background-image: -moz-linear-gradient(top, #faf7f8 0%, #e2d0cf 100%); background-image: -webkit-linear-gradient(top, #faf7f8 0%, #e2d0cf 100%); background-image: -ms-linear-gradient(top, #faf7f8 0%, #e2d0cf 100%); background-image: linear-gradient(top, #faf7f8 0%, #e2d0cf 100%); background-image: -o-linear-gradient(top, #faf7f8 0%, #e2d0cf 100%); background-image: -webkit-gradient(linear, right top, right bottom, color-stop(0%,#faf7f8), color-stop(100%,#e2d0cf));
I will appreciate if you can help me with this today, I have to publish it tomorrow in fact today is my dead line,thanks
Hey,
Thank you for the details, but again we culdn’t replicate it. We used native home3.html and the background you sent and we removed most of the content inside section class="content". Could you please send us the zip of your files, so that we could investigate it? Could you please also write if it appear on all browsers?
Kind regards, ThemeMotive team
Hey,
We finally replicated this after removing more content, however there is easy solution for this. Please just replace in style.css
from:
.boxed .content {max-width: 100%; padding: 1px 30px 40px;}
to for example:
.boxed .content {max-width: 100%; padding: 1px 30px 40px; min-height:600px;}
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Hi, thanks for your help, the problem with this solution it’s add extra empty content space, for today I will use this quick fix but I have to find better fix to be more elegant. Why this blank part appear at the bottom I cannot find why I search a few hour yesterday night with no luck.
You can also try to add background for “html”, so that the space won’t be white, but will have the background of your choice.
example:
html {
background-color: #000;
}
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Hey, Love the theme.
Quick question – if i wanted to do a global change on the orange colour to a custom colour where would i make this change?
J
Hi techforce,
Thank you for your comment.
Concerning your quick question. The fastst way would be to simply replace in style.css all #FF8400 (orange color) to any color you want. If you use portfolio pages then you will also need to replace this part: rgba(255,132,0,0.8) to your color codes instead of 255,132,0.
Concerning your second question please replace in scripts.js from delay:9000 to for example delay:12000.
Hope it helps!
Please let us know if we can b eof further assistance.
Kind regards, ThemeMotive team
Thanks for the prompt response! I will give this a shot and let you know how i get on. Really impressed with the theme and the level of support so far, keep up the fantastic work
Hey, it doesnt appear to have changed the Nav orange
For the navigation/menu color change please edit/replace the color #FF8400 in the file style-headers.css
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
I’m using Notepad++ Why </article><article> need to be in the same line otherwise it break the template on portfolio page?
Hey Lenamti,
Thank you for your comment.
Concerning your question: It’s because in grid system used in MultiPurpose template there is display: inline-block used instead of for example float: left, however this solution have got the advantage that the code is more semantic and there are not needed empty tags after each row like <div class="clear"></div>
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards
thanks for the info
Hi, I have Google map questions and need some fixes:
How to add css border image to the map? (not looking good without any) I have tried img class with no luck.
How to display full width map correctly (padding, margin ect) When doing so the padding and margin are no good. The page will not have the form and I don’t have much info to display so I need to find a better way to display the map and contact infos.
When clicking on the marker nothing happened. Google link are not displayed correcty at the bottom of the map.
Any css ready to google map in the footer?
Hi Lenamtl,
Thank you for contacting us.
Concerning adding box shadow for google map, please have a look at this solution:
<style type="text/css">
.map-container {
position: relative;
overflow: hidden;
}
.map-container i {
position: absolute;
display: block;
box-shadow: 0 0 0 4px rgba(0,0,0,0.1);
}
.map-top { top: -5px; left: 0; right: 0; height: 5px; }
.map-right { right: -5px; top: 0; bottom: 0; width: 5px; }
.map-bottom { bottom: -5px; left: 0; right: 0; height: 5px; }
.map-left { left: -5px; top: 0; bottom: 0; width: 5px; }
</style>
<div class="map-container">
<div class="gmap" id="map">3 Abbey Rd, London, Greater London NW8 9AY</div>
<i class="map-top" />
<i class="map-right" />
<i class="map-bottom" />
<i class="map-left" />
</div>
Concerning the fullwidth, please put the map inside fullwidth container, like this:
<style type="text/css">
.fullwidth {
margin-left: -100%;
margin-right: -100%;
overflow: hidden;
padding-left: 100%;
padding-right: 100%;
}
</style>
3) Concerning Google Maps market, please have a look at working example html+javascript here:
https://developers.google.com/maps/documentation/javascript/examples/infowindow-simpleHope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
I have tried box-shadow as container but it’s adding the css only to top of the image, by increasing the opacity I can see that the box is not acting as a container but appear in top right corner.
I have found a quick fix no extra div needed only added this to the style css
aside, #map { box-shadow: 5px 0 4px -2px #ccc; }
Hi, I use this theme for my best site and I am extremely happy with it. I would like a few things though to make it even better. I was wondering if you have upgrades once in a while? Maybe you can built in a Revolution Slider and a form with a telephone number and image upload possibilities?
Greetings Martijn
Hey Ttttchess,
Thank you for your comment and positive feedback 
As for your questions: Yes, we are planning to upgrade the template with Revolution Slider in next update. Concerning form it’s already possible to build this kind of form with the current predefinied styles. Please have a look at the form elements here http://thememotive.com/multipurpose/shortcodes.html
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Hello,
I created an “About Us” page where I want to include a Google+ badge. I used the google code, but the badge does not display (I am still in design, so the website is not live yet). How can I get it to display please?
The Map widget on the Contact page works excellent by the way (I changed the geo location in the JS file), so I am thinking it is also possible for the G+ badge.
Thank you.
Hey Traderjphx,
Thank you for your comment.
We checked it and depends on the Google+ badge type used it may not work offline, so we recommend you to put it online on real website to see if it’s working.
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
A few days ago I asked about scalability in mobile devices: “Is this template pinch-zoomable on mobile devices? I cannot zoom it on my Android table. If it is not zoomable, how can I make it zoomable for mobile devices?”
And you answered:
“ThemeMotive ThemeMotive AUTHOR 19 days ago Flag Hey Kazmarar,
Thank you for your comment.
If you want to enable pinch-zoom in Android please replace this code:
<meta name=”viewport” content=”width=device-width, initial-scale=1.0, maximum-scale=1.0”> to this one:
<meta name=”viewport” content=”width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes”> in html template.
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards”
I replaced that tag in one of my files – http://www.ankyunacar.com/ENG/ but it did not help. Is there anything that I am doing wrong?
Hey,
We tested http://www.ankyunacar.com/ENG/ on real mobile devices and it was possible to zoom the website. Could you please clear the browser cache and reload the website?
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Thank you. I figured out that it is necessary to not only add user-scalable=yes, but also to change maximum-scale=7.0 or any other figure.
Hello,
I have a problem with the image display. My image on my site http://www.ankyunacar.com/ENG/ is displayed on Firefox, but I cannot make it display on Chrome and any of mobile devices. What is the reason and how can I make it to display?
Hey kazmarar,
Thank you for your comment.
It seems like you didn’t upload loago for retina display. Please upload http://www.ankyunacar.com/images/a_logo_en@2x.jpg with 2 times bigger dimenstions than http://www.ankyunacar.com/images/a_logo_en.jpg or if you don’t want to have retina ready logo then please remove this:
//logo for retina
$('header .title img').each(function() {
var retina = window.devicePixelRatio > 1 ? true : false;
if(retina) {
var filePath = $(this).attr('src');
var fileName = filePath.substring(filePath.lastIndexOf('/')+1);
var retinaFileName = fileName.replace('.', '@2x.');
filePath = filePath.replace(fileName, retinaFileName);
$(this).attr('src', filePath);
}
});
from js/scripts.js
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
Thank you! Uploading @2x.jpg worked.
Hi,
Pls, can you tell me HOW I remove the square margins around the pictures, So I mean, NO border around the pictures.
Where can I find that??
Thanx a lot! GREAT template …..
Regards,
Hey Ronflash,
Thank you for your comment and positive feedback 
As for your question – please remove this code from scripts.js
//fancy borders on images $(”.content img, footer .widget_photos img”).not(”.content .testimonial img, .hp-services img, .logo, h3 img, button img, .product-meta img, .img-border img”).each(function(){ var i = $(this); i.wrap(‘ ‘); if(i.hasClass(“alignleft”)) { i.removeClass(“alignleft”); i.parent().addClass(“alignleft”); } });
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards, ThemeMotive team
GREAT!!!!! Thanx a lot. Works fine…..:-)
One question more: In the blog.html you see a long grey “menu”bar UNDER the menu-items tekst. I want that in only a grey colour bar. Now it is a grey bar WITH patterns. I want it WITHOUT the patterns in it…..
Where can i find that image of that grey bar???
Thanx again!!!!
Have a nice sunday….. 
Concerning your question, in your html code please just remove p07 (it means pattern number 7) from:
<section class="breadcrumb p07">
<p><a href="#">Home</a> Blog</p>
</section>
Hope it helps!
Please let us know if we can be of further assistance.
Kind regards
So quick anwser…. WOW! Thanx! 
You are welcome 