Search Results for 'mobile'

Results from the Forum
zetam1320
Participant
#0

Hi,

Here are logo sizes from theme panel if I chose Style 1 Header: http://take.ms/kEvPL
And here are logo sizes from documentation: http://take.ms/jTYDv

The same problem with mobile logo sizes. They are also different in theme panel and in documentation.

Which sizes are up-to-date?

Thanks!

fliporium
Participant
#0

Hello,

I have a website that the products only show 4 results per product archives. I’ve tried modifying the functions.php file to bring more products in a loop, but it does nothing.

https://mobilevrxxx.com/shop/

// Number of product per page 8
add_filter(‘loop_shop_per_page’, create_function(‘$cols’, ‘return 12;’));

if (!function_exists(‘woocommerce_output_related_products’)) {
// Number of related products
function woocommerce_output_related_products() {
woocommerce_related_products(array(
‘posts_per_page’ => 12,
‘columns’ => 4,
‘orderby’ => ‘rand’,
)); // Display 4 products in rows of 1
}
}

Thanks

Ammalgam
tagDiv Member

It just happened again.

This time to another writer not me.

http://www.windows10update.com/2015/12/how-can-microsoft-win-at-mobile/

  • This reply was modified 10 years by Ammalgam. Reason: fix link
bullet550cc
Participant
#0

after the latest update, following are the error’s i am facing

1) Website not working on twitter app on mobile
2) website not working on facebook app on mobile
3) Smart sidebar not sticking
4) Article repeating on load more (very old bug)

simchris
tagDiv Member

Hi
the print function works for my sites ?

Simply choose “print” from your web browser and a nice clean version is there. Most savvy folk who still need to print paper copies of site pages can simply do that without needing a visual “print me” button.

You can add a “print” button to your pages if you wish, either via custom HTML to the theme page or any of the various plugins found on the wordpress.org plugin repo.

With the move to mobile fewer people have printers now, and tend to bookmark the page vs “printing it” to paper. Also, most folks with the need will often use a PDF app to “print page to PDF” vs paper anymore.

Not a bad idea, just some feedback on what we’ve seen with our news portals.

Happy holidays! 🙂

Andrei L.
tagDiv Member

Hi

Try this css in theme panel > custom code > custom css: http://screencast.com/t/vaAbpb4CCmA

@media (max-width: 767px){
.td-header-top-menu{
display: block !important;
}

Note that the top bar wasn’t designed to work on mobile devices so you may need additional css customizations in order to be displayed fine.

Thanks!

alexalex11
tagDiv Member

Hello,

I placed the code and on desktops is now ok. thank you.

I still see the problem on mobile devices. I cleared the WP cache and the CDN cache.

Try to verify this issue not by desktop with the browser (width <767px) but on your mobile phone. (I’ve tried with an iPhone)

Let me know if you see the issue also.

Thanks

Catalin
tagDiv Staff

Hello alexalex11,

I’ve checked your website and I saw your problem with the alignment. Please try the code below and place it in Theme panel->Custom Css area, like this: http://screencast.com/t/7sVCbUXT

.wp-caption-text a {
float: left;
padding-right: 10px;
}

The result you should see here:

I’ve verified on mobile version and seems to work properly, like this: http://screencast.com/t/2ip0PULjAs5j

Hope this helps and let us know how it goes!

Thank you for the message!

Bogdan B.
tagDiv Staff

Hello,
Please check the code you already have in your custom css box, not the code I gave you. If a code has an open tag before the code I provided, then it will cause it to not apply. I have tested the css again and the result is the same: http://screencast.com/t/eDvPwfbRiqm
Another thing you can check is if you place the code in the responsive field, then you need to remove the @media. I set the responsiveness directly to the code so you can insert it in the standard custom css box, not the advanced one. Remove the @media part if you place it in the advanced css and mobile sphones section.
Thank you!

alexalex11
Participant
#0

Hi, I’m trying to figure out which CSS rules I should edit to make a proper alignment between the amazon affiliate link and the following text.

Here you can see what I’m talking about: http://www.gadgetsvirali.com/penna-stampante-3d-per-disegni-stereoscopici-le-migliori

As you can see, below the images, inside the image caption I’m used to put the Amazon affiliate code followed by some text. In the previous theme I had no problem, once I installed this theme, the text goes below the affiliate link, as you can see here in this screenshot http://snag.gy/BaqVq.jpg deleting the Amazon img code it shows up properly but I’m not supposed to touch the Amazon affiliate link.

If you visit the page on mobile devices the issue gets worse: http://snag.gy/u3lnK.jpg

How can I align the affiliate link and the text?

Thanks,

Alessandro

blmg1
Participant
#0

Hi,
My topbar is not showing up on mobile. How do I fix this?
Thank you!

studiotopo
tagDiv Member

Thanks Bogdan,

I’ve checked if errors on custom css code, but everything looks fine.

But still not working on mobile.

The code I’ve add is:


@media
(max-width: 767px) {
.td-header-sp-top-menu {
display: block !important;
}
.td_data_time {
display: none !important
}
.td-header-sp-top-menu {
margin-left: 14%;
margin-right: auto;
}
}

Albert
tagDiv Member

Hello

I haven´t solved the problem yet, I have noticed that font is different in some browsers and mobile. I have a conclusion about what´s happening. I think is not a plugin problem.

First of all, I changed some styles to Open Sans Condensed and Open Sans from Theme Panel. I noticed that these styles aren´t installed in my computers, mac and windows… which is strange because it´s a common font.

Then, I downloaded and installed these font in my computers and they were displayed on the website. If I remove them, the font showed is by default.

So, in this case, how could I display these styles to people´s computer? I suppose that there must be a way to show them.

Thanks

studiotopo
tagDiv Member

I’ve put this code on custom css, but I don’t see the top menu on mobile

Bogdan B.
tagDiv Staff

Hello,
The top menu was not meant to work on the mobile version of the theme. It can be done with css though:
@media (max-width: 767px){
.td-header-sp-top-menu{
display: block !important;}
.td_data_time{
display:none!important}
.td-header-sp-top-menu{
margin-left: 14%;
margin-right: auto;
}
}

Thanks.

studiotopo
Participant
#0

Hi,

how can I do to display the Top Header Menu on mobile?

My header style is 12 (Top colored menu with logo)

http://jarmusiclive.com/v1

Thanks

Catalin
tagDiv Staff

Hello Arafat,

I’ve tested you both link of your sites and I saw the problem with your alignment of category tag. Please make you sure that you insert in the correct place the snippet of code in the same way as I showed you.

Please try to use the code below to fix the position category tag on the mobile version. Place the code in Theme panel->Custom Css area.

@media (max-width: 767px){
.td-category {
float:left;
}
}

The result you should see here: http://screencast.com/t/65qomaJpjFaV

Hope this helps and let us know how it goes!

Thank you for the message!

SheikhOvais
tagDiv Member

This didn’t help. PLEASE check solve this problem for me ASAP. I’m losing a lot of visitors because of this.

So far, theme is appears to be working fine on IE, and mobile chrome browser. But on desktom chrome and also on firefox, no images in my posts are visible.

PLEASE HELP ASAP.

pawwmag
Participant
#0

Hey guys,

I run Paww Magazine and I’m facing an issue. None of the site images load on a mobile device. Do visit http://www.pawwmag.com to check out the problem. Can you please give me a solution to this issue?

Arafat
tagDiv Member

Also have problem on mobile: http://prntscr.com/9gvgbw
Category tag can’t show correct location. How to solve this?

248Shooter
Participant
#0

First off thank you for all those who contribute here. I have been able to troubleshoot multiple sites using this theme and encourage my clients to buy from you for the theme of choice during development.

That said I am about to undergo my largest Newspaper 6 project.

The existing site: http://mommyshorts.com/

The goal is to move them to a theme with responsive features as well as ad control for mobile that is regularly updated. Newspaper 6 was the logical choice.

The next goal is to keep the look and feel on desktop as close as possible to what they have now.

Have a post style with text on the left and images on the right where the background of the text matches a color specific to a category

Each category also has an icon that appears above the text.

Menu items for the categories inherit the color as well.

My question is do you think Newspaper 6 is best suited for this, and can it do all these items?

Secondly from those who have moved from another theme to this one what issues do you expect I will encounter that I need to account for ahead of time?

securerr
Participant
#0

Hello,

I’ve got a problem with the mobile version of my site:

http://surfsecured.net/

There’s no logo in the header and when I tap on the menu button, I see the message that I need to build the menu – but it’s actually build and set up properly, it works on desktop.

Here are the screenshots from my iPhone:

http://take.ms/KgEgh

http://take.ms/2hOZ5

And yes, I uploaded mobile logos:

http://take.ms/f4gB6

Please help me to fix this.

Thanks.


Alex

Chito
Participant
#0

Infinite loading on category is cool in desktop but wondering how I can disable this in mobile portrait, sometimes hard to reach the right side sidebar because it is keep loading the post, please advice.

scibreak
Participant
#0

Hello! I’ve noticed that some thumbnails on my website are having low definition on phones. This does not happen on PCs or in big images on mobiles. Only on small/medium sized images on my mobile home page. Does someone knows what’s going on? I kindly appreciate all your responses. Thank you!

Ewerton

Here’s my website: http://scibreak.com.br/

populervizyon
Participant
#0

300x600_TR.webm
and
300x600_TR.mp4
and
the attached picture

extension banners, sidebar and article inline How can we play pc and mobile.

Viewing 25 results - 38,151 through 38,175 (of 41,416 total)