more suggestions for composer:
1. single video block
2. more layout options: 1/6, 1/8, 1/12 (custom layout option)
thanks
🙁 hope its on roadmap
up
hunmar, thanks!
+1
thanks!
Bogdan please add this line to your code
-moz-transform: translate3d(0, 0, 0);
many people are using firefox
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;
}
}
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;
}
}
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?
i need this feature too
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;
}
thanks for fast update!, already seen
-
This reply was modified 10 years by
boruxk.
same issue,
thanx for explanation,
waiting eagerly for the theme update!
would like to see the social sharing buttons on pages too
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.
