-
AuthorPosts
-
December 5, 2017 at 10:33 pm #885233
How do I make the biggest mark on the device (Iphone7 for example).
LINK
How do I make the biggest mark on the device (Iphone7 for example).December 6, 2017 at 12:05 am #885271Hey mleite1,
I’m not quite sure I understand the issue you are having. Can you explain your concern a bit clearer?
Best regards,
Jordan ShannonDecember 6, 2017 at 1:03 pm #885560Hi Jordan. Thanks for the feedback.
It’s simple, the logo on the device is very small. How do I explain this better? How can I make it bigger on the device?
Access the link and check on your device what I’m saying.
Can I use a different format for the logo on the device?
LINK IMAGE
https://imgur.com/WJT5u8IDecember 7, 2017 at 12:26 am #885809Hi,
Please provide a link to the page in question so we can inspect the code.
Best regards,
Jordan ShannonDecember 7, 2017 at 12:59 am #885837December 7, 2017 at 1:06 am #885841Hi,
Try adding the following to quick css:
@media only screen and (max-width: 767px) { .responsive .logo img{ max-height:300px!important; min-height:200px!important; width:100%!important; }}
Best regards,
Jordan ShannonDecember 11, 2017 at 6:24 pm #887527Jordan, the brand was deformed and misaligned with the burguer menu.
December 12, 2017 at 12:37 am #887618Hi,
Are you able to crop the image to just around the letters?
Best regards,
Jordan ShannonDecember 13, 2017 at 9:30 pm #888558Jordan cut the image the way you asked for it and it continued to deform.
Is there any way to load a specific logo for the device?
December 13, 2017 at 11:46 pm #888630Hi,
This can be accomplished with a bit of JQuery. Please refer to the following:
Best regards,
Jordan ShannonDecember 19, 2017 at 2:03 pm #890496Jordan, I used this code that was on the link you passed. It worked well on the device. The problem is that the brand has also changed on the desktop. How do I keep this tag on the device and keep the original on the desktop?
CODE I USED
function add_custom_tooltip () {
?>
<script>
jQuery (window) .load (function () {
jQuery (‘. responsive .logo img’) .attr (‘src’, ‘http: //www.ortodontiainvisivelbahia.com.br/logo-device/EVELIN-SITE-MARCAS-DOURADA-alltype.png’);
});
</ script>
<? php
}
add_action (‘wp_footer’, ‘add_custom_tooltip’);DESKTOP ORIGINAL BRAND
http://ortodontiainvisivelbahia.com.br/oi-child/wp-content/uploads/2017/12/EVELIN-SITE-MARCAS-DOURADA.pngDecember 20, 2017 at 12:12 am #890637Hi,
Adjust to this:
function add_custom_tooltip () { ?> <script> jQuery (window) .load (function () { if (screen.width <= 767) { jQuery (‘. responsive .logo img’) .attr (‘src’, ‘http: //www.ortodontiainvisivelbahia.com.br/logo-device/EVELIN-SITE-MARCAS-DOURADA-alltype.png’); } }); </ script> <? php } add_action (‘wp_footer’, ‘add_custom_tooltip’);
Best regards,
Jordan Shannon -
AuthorPosts
- You must be logged in to reply to this topic.