Search Results for 'mobile'

Results from the Forum
Hamzah
tagDiv Member

My page speed result for telsetnews.com is Mobile/Cellular = 75 and Desktop = 90. Im quite happy with desktop result, but i want to speed up my mobile result. do you have any suggestion? Btw, Google recommend me to optimise several thing, such as :
http://telsetnews.com/…/subscriptions/subscriptions.css?ver=3.9
http://telsetnews.com/…modules/widgets/widgets.css?ver=20121003
http://telsetnews.com/…widgets/widget-grid-and-list.css?ver=3.9
http://telsetnews.com/…s/contact-form-7/includes/css/styles.css
http://telsetnews.com/…ootstrap/td-bootstrap-980-responsive.css
http://telsetnews.com/wp-content/themes/Newspaper/style.css

But i don’t know how. Anybody can help me. Or is there any option to speed up my mobile page speed.

Thanks
Nur

kwalsh22
Participant
#0

Hi! for some reason, my site visionaryathletes.com is not rendering properly on mobile devices as well as some browsers such as safari. It is only rendering the html. Please help!

Schroeffu
Participant
#0

Dear together

How can I disable the Big Slider on mobile? The Big Slider is not shown correctly on my mobile with chrome plus it doesn’t make sense a “big” slider on a “small” mobile 🙂

how to diable them on mobile?

Regards

inboxi
tagDiv Member

yes, hope its on the todo list. i am sure everyone would appreciate collapsible sub menus on mobile device.

Marius
tagDiv Staff

Hi,
We know about that issue and don’t have a solution, the problem is simple on desktop you have one slide(4 posts) on mobile obvious you will have 1 slide to, but is a normal slide and contain only 1 post.

A solution is to increase the big slider post number with multiplier by 4 like

4 posts – 1 slide
8 posts – 2 slides
12 posts – 3 slides

or

you can hide the slider on mobile if you want via CSS.

Thanks for the message!

Marius
tagDiv Staff

Hi,
You can use this CSS, add it in Theme panel -> Custom CSS

@media (max-width: 767px) {
	.header-logo-wrap {
		display: block;
	}
	.header-logo-wrap img {
		display: block;
	}   
	.mobile-logo-wrap {
		display: none;
	}
}

but the logo if at the top. To move the logo bellow the menu you need to make some code changes.

Thanks for the message!

Marius
tagDiv Staff

Hi,
1. You need to set the block to show 3 post and if you use next prev ajax or load more button http://screencast.com/t/icj0autHV2 this will load the following posts, but this don’t have a limit in your case 10 and stop.

2. You need to inspect your site and see the selector for the Block 2 and hide is from CSS using display: none for mobile, you have in Theme panel -> Custom CSS this: http://screencast.com/t/sjeNacfQ that you can use for custom CSS only for mobile.

If you don’t manage the CSS part, give us your site URL to take a look and we will provide you the right CSS

Thanks!

ksk1983
tagDiv Member

Twitter-Issue solved: You are not able to add a # to the headline

redwolfgirl66
tagDiv Member

Ideally, I would love the logo to be below the menu/search bar and on the left side.

ksk1983
Participant
#0

Hi,

I just had two more issues:

1.) The Twitter button doesn’t work properly as it just sends the headline to twitter but misses out on URL+via info (e.g: http://www.menabuzz.com/10-people-to-follow-for-egypt/)

2.) On my homepage I have 4 articles in the big slider but on mobile I can’t navigate through the slides (just the main one is showing up)

Many thanks!

Marius
tagDiv Staff

Hi,
The logo is in that position like in our demo, do you need other position for the logo. Give us more details.

Thanks!

redwolfgirl66
tagDiv Member

Okay, I have figured out what is going on. When reduced down to phone size, the black bar that contains the menu and search icons is behind the logo and pushing it to the right. Can this be changed?

http://www.conservativevoiceofthepeople.com

Radu A
tagDiv Member

hi,
the icon is there but is black, this is why I said to switch to white.
the menu is working fine.

http://screencast.com/t/zmGtbMXNKf

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi

.iosSlider .td-sbig-title {
    text-transform:lowercase !important;
}

Thanks for you message.
Radu A.

Marius
tagDiv Staff

Hi,
The theme have in theme panel to choose black or white icons for the menu. I see that you use the white version and i gave you a CSS to switch to black version on mobile.

I can give you if you want a screenshot to see that the solution above works. The size of the sprites are the same for black or white version.

Thanks for the message!

redwolfgirl66
tagDiv Member

Switching the menu color to white changes nothing. The logo is still on the right of the header on the phone and there is not navigation. Help please.

axonic
tagDiv Member

Hi, what is the CSS code to change the font size on the slider? Thanks.

iha
tagDiv Member

Sorry Radu A , it did not work for me ,
but after that i’m searching for solution on Google i found to :

1) put Mobile_Detect.php file on the …
/wp-content/themes/Newspaper/

2) http://prntscr.com/3ej3ra

 include 'Mobile_Detect.php';
      $detect = new Mobile_Detect;
    $deviceType = ($detect->isMobile() ? ($detect->isTablet() ? 'tablet' : 'phone') : 'computer');

then no problem on functions.php or error .

its after that work fine >
so because you are the best how can tell me , is it right or wrong ?

I thank you very much for your perfect help and i’m sorry for annoying ^_^

IHA

Bikerznet
tagDiv Member

This has change the size of the sprites but not the color? I need white for desktop and black for phones

Marius
tagDiv Staff

Hi,
If more people will require this we will take a look for the future updates. Thanks for the message!

Marius
tagDiv Staff

Hi,
Add this CSS in Theme panel -> Custom CSS

@media (max-width: 767px) {
  .td-menu-header .td-sp, .sf-sub-indicator{
    background-image: url('http://www.yoursite.com/wp-content/themes/Newspaper/images/sprite/elements.png');
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-moz-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {
  .td-menu-header .td-sp, .sf-sub-indicator{
    background-image: url('http://www.yoursite.com/wp-content/themes/Newspaper/images/sprite/elements2x.png');
  }
}

Replace this: http://screencast.com/t/uSbxUnLN

Thanks!

Radu A
tagDiv Member

hi,
switch the menu to white: http://screencast.com/t/3cfCcCAY

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hi,
add this lines at the end of functions.php file

$detect = new Mobile_Detect;
$deviceType = ($detect->isMobile() ? ($detect->isTablet() ? 'tablet' : 'phone') : 'computer');

I have tested on my computer, it works.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

ok,
thank you

inboxi
tagDiv Member

Not a programmer. Feature request on a future update?

Thanks.

Viewing 25 results - 40,876 through 40,900 (of 41,416 total)