Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
boruxk
tagDiv Member

more suggestions for composer:
1. single video block
2. more layout options: 1/6, 1/8, 1/12 (custom layout option)

boruxk
tagDiv Member

thanks

boruxk
tagDiv Member

🙁 hope its on roadmap

boruxk
tagDiv Member
boruxk
tagDiv Member

hunmar, thanks!

boruxk
tagDiv Member

+1

boruxk
tagDiv Member

thanks!

boruxk
tagDiv Member

Bogdan please add this line to your code

-moz-transform: translate3d(0, 0, 0);

many people are using firefox

boruxk
tagDiv Member

it was up to this lines

-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);

and my firefox browser in my samsung

to get this working i have added this line:

-moz-transform: translate3d(0, 0, 0);

so thats the whole code for now

@media (min-width: 768px) {
.td-header-menu-wrap.td-affix {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
margin-right: auto;
margin-left: auto;
width: 100%;
z-index: 9999;
position: fixed;
top: 0;
}
}
@media (max-width: 767px) {
.td-header-menu-wrap.td-affix {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
margin-right: auto;
margin-left: auto;
width: 100%;
z-index: 9999;
position: relative;
}
}

boruxk
tagDiv Member

i know, thats the code i am using:


@media (min-width: 768px) {
.td-header-menu-wrap.td-affix {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
margin-right: auto;
margin-left: auto;
width: 100%;
z-index: 9999;
position: fixed;
top: 0;
}
}
@media (max-width: 767px) {
.td-header-menu-wrap.td-affix {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
margin-right: auto;
margin-left: auto;
width: 100%;
z-index: 9999;
position: relative;
}
}

boruxk
tagDiv Member

one more time!

the solution was working with older versions,
but now with version 6 i have the same problem again and this solution from above is only working if i am making a small window on pc.
It is not working on mobile devices like samsung s6.
So my question, have you built in a mobile device detection, if yes, where is it?
how to disable it?

boruxk
tagDiv Member

i need this feature too

boruxk
tagDiv Member

thank you so much!
its working!
but there one part, where its not showing:
the ajax search in the menu bar

maybe you can help me with this…
i guess you have to change something here
wp-content\themes\Newspaper\includes\wp_booster\td_data_source.php

in the block:
static function &get_wp_query_search($search_string) {
$args = array(
‘s’ => $search_string,
‘post_type’ => array(‘post’),
‘posts_per_page’ => 4,
‘post_status’ => ‘publish’
);

$td_query = new WP_Query($args);
return $td_query;
}

boruxk
tagDiv Member

thanks for fast update!, already seen

  • This reply was modified 10 years by boruxk.
boruxk
tagDiv Member

same issue,
thanx for explanation,
waiting eagerly for the theme update!

boruxk
tagDiv Member

would like to see the social sharing buttons on pages too

boruxk
tagDiv Member

tss,
its realy simple hack here you have:

open the wp-content/themes/Newspaper/style.css

search for following class


.affix {
  left: 0;
  right: 0;
  top: 0px;
  height: 48px;
  z-index: 9999;
  position: fixed !important;
}

and replace it with this

@media (max-width: 767px) {
.affix {
  left: 0;
  right: 0;
  top: 0px;
  height: 48px;
  z-index: 9999;

}
  }

@media (min-width: 768px) {
.affix {
  left: 0;
  right: 0;
  top: 0px;
  height: 48px;
  z-index: 9999;
  position: fixed !important;
}
  }

yua welcome))

  • This reply was modified 12 years by boruxk.
Viewing 17 posts - 1 through 17 (of 17 total)