Hi
I am not sure what grid you’re using but you can try this css for big grid 1:
.td_block_big_grid .entry-thumb {
transform: none!important;
-webkit-transform: none!important;
-moz-transform: none!important;
}
If you’re using a different grid try to adjust this class like in this example:
-for big grid 3 the class is .td_block_big_grid_3
Let me know how it goes and if you still need assistance please provide more details.
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi
1. @NM-user the theme blocks have fixed sizes and adding a new margin will create layout problem. Evan some default elements from VC have this margin and the best way is to add the margin manually for those which don’t have it set by default. So the margin will apply only for the specific element and won’t create layout issues. You can find the design options following this link: http://screencast.com/t/1LxD5ZQl
2. To make the titles of tabs bold try this css in theme apnel > custom css: http://screencast.com/t/Cbw363rC9P
-this is for the current tabs
.vc_tta-title-text{
font-weight: bold;;
}
this css is for deprecated tabs:
.wpb_tabs li a{
font-weight: bold;
}
3. We will release an update which will include the latest version of VC soon. At the moment we test the current plugin’s version with the theme so we make sure that works fine.
4. If you use some elements like Tabs, you will have to re-add them to your page as the VC developers have changed the classes, the design for them – http://screencast.com/t/3r1YoBw7
Thanks!
Hy Zakkery,
You have two possibilities to disable the option “More from author”.
1. You should alter the template named td_module_related_posts.php like that:
http://screencast.com/t/V8ZoLZjc
2. If you do not want to alter the code, please try a bit of css:
.td-related-title .td-related-right {
display: none;
}
Here you can see the result: http://screencast.com/t/M4QKJTwA
Thanks.
Hi,
As an alternative you could edit these blocks with css to align them, but it would result in too much white space on the module that has just one row of title text:
example:
.td_module_5.td_module_wrap .entry-title{
min-height:75px
}
result: http://screencast.com/t/VLmxCQMKYn4z – images align but title gets white space below to align to the other title that is significantly longer.
This is the problem with using blocks with text above the image. When the text is below the image, images do not get affected by title lengths.
I hope this helps.
Thank you!
Hi,
I assume you are talking about the margins of different containers on your homepage. You can edit these out with the browser inspector: http://screencast.com/t/DdqD2nbNAn – http://screencast.com/t/dTVLBD4p and then use the code in the theme panel->custom CSS
Unfortunately there is no general white space removal code.
Thank you!
Hi
Replace the above css with this one: http://screencast.com/t/wnFwycpV
.td-grid-group-1 .td-module-thumb, .td-grid-group-2 .td-module-thumb{
margin: 0 1px 0 0;
}
.td-grid-style-5 .td-big-grid-scroll .td-big-grid-post{
padding-top: 1px;
}
.td-grid-group-1 div:last-child{
margin-top: 1px
}
.td-grid-group-2 div:first-child, .td-grid-group-3 div:first-child {
padding-top: 0!important;
}
.td_block_big_grid_7 .td-module-thumb a:last-child:before{
opacity: 0.3 !important;
}
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi, i mean i can make that custom css by myself so you dont waste time, i was thinking you or some users maybe have some predefined css code.
http://notranjskoprimorske.si/
Thanks
Hi,
I see that you use child theme and some css added there affects also the IOS Slider – http://screencast.com/t/HXczL3LkjSQ3
Also please note that the old customization for version 4 of the theme will have to be adjusted or they will not work anymore in Newspaper 6. Please update also the child theme as we have changed the system, please check documentation – https://forum.tagdiv.com/the-child-theme-support-tutorial/
So my suggestion is to update your theme to the latest version 6.5.1, update the plugins provided with the theme(especially Visual Composer) and update your child theme to the version provided with the theme, you can find it in the /code folder from files that you download from themeforest – https://forum.tagdiv.com/whats-included/
Then check if you still have this issue.
Thanks!
Or
function css_mover() {
if ($this->td_theme_name == 'Newspaper') {
// wp 011 - Newspaper 6
//$this->move_style_to_footer_queue('bbp-default-bbpress'); //bpress old
//$this->move_style_to_footer_queue('bbp-default'); //bpress
$this->move_style_to_footer_queue('contact-form-7');
$this->move_style_to_footer_queue('font-awesome-four');
$this->move_style_to_footer_queue('td-plugin-framework');
$this->move_style_to_footer_queue('bb-taps-editor-style-shared');
$this->move_style_to_footer_queue('boxes');
$this->move_style_to_footer_queue('google_font_open_sans');
$this->move_style_to_footer_queue('google_font_roboto');
$this->move_style_to_footer_queue('js_composer_front');
$this->move_style_to_footer_queue('td-theme');
I tried them both. But nothing can be changed
I understood the Custom CSS section. Ok
function css_mover() {
if ($this->td_theme_name == 'Newspaper') {
// wp 011 - Newspaper 6
//$this->move_style_to_footer_queue('bbp-default-bbpress'); //bpress old
//$this->move_style_to_footer_queue('bbp-default'); //bpress
$this->move_style_to_footer_queue('contact-form-7-css');
$this->move_style_to_footer_queue('font-awesome-four-css');
$this->move_style_to_footer_queue('td-plugin-framework-css');
$this->move_style_to_footer_queue('bb-taps-editor-style-shared-css');
$this->move_style_to_footer_queue('boxes-css');
$this->move_style_to_footer_queue('google_font_open_sans');
$this->move_style_to_footer_queue('google_font_roboto');
$this->move_style_to_footer_queue('js_composer_front-css');
$this->move_style_to_footer_queue('td-theme-css');
But I do not understand any of the others. I think I’ll give up 🙁 peff…
Hi
Try this css in theme panel > custom css: http://screencast.com/t/WIlobisQXp
@media(min-width: 768px){
#td-header-menu .sf-menu > li > a, .sf-menu ul .td-menu-item > a{
font-size: 8px;
font-weight: normal;
}
}
.td-header-main-menu{
height: 30px;
top: 15px;
}
.td-main-menu-logo, .sf-menu{
position: relative;
top: -5px;
}
You can modify the values as you like.
Thanks for the suggestion, I’ve added it on our list and we will consider it for next theme updates but we must choose carefully what features will implement as we have over 250 requests on our list, and the user always must get what is best from us.
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hello,
In order to use the theme api, you will need substantial coding knowledge in html/css/php to pull it off. Please understand that these customizations will impact other elements in the theme and have to be adjusted to fit the grid layout and fit the rest of the content. In these cases we recommend hiring a freelancer to do it because we cannot provide any custom work. We try to help out where we can, but this is a major customization and requires much work and time to it. There are no specific guide lines to follow, just hard-coding.
As an alternative (if you do not want to hire a freelancer), you can use the masonry grid from visual composer as it has a number of settings available for grids: http://vc.wpbakery.com/features/grid-builder/
Thank you.
Hi, does any of the users have maybe custom css code for white space removal on homepage?
Thanks
Hi,
I have checked your page source and many js resources are moved in the footer – http://screencast.com/t/q0BHHszn – http://screencast.com/t/c8516Day You still have this issue on the speed test because you have custom css and this add a delay when your page is loading. A solution is to make your css changes directly in the style.css file.
The td_inspect_scripts() function returns a list of registered css and js from your site.
You could try to play with the priority, if it doesn’t return all js – http://screencast.com/t/7fhfjttAT8
http://codex.wordpress.org/Function_Reference/add_action
Regarding the css, please check the page source and the the ID’s – http://screencast.com/t/UlVOtjAe4P
Thanks!
Also we have an issue with this http://screencast.com/t/XdTKtg0oBMu
http://www.jglobe.org/ look how the site is pulling the mobile menu above – I cant get rid of it even with css is this a plugin issue
We are also having an issue with dropdowns dissapearing in mobile menu….
http://screencast.com/t/aT1iB1DCbk9C
Thank you for your answer but it’s still not what i want.
See the link bellow:
http://www.screencast.com/t/bHVjFH6ZVc
In my screenshot you will see some white lines, and only between the pictures, NOT on the external margins.
When i put the css you gave 3 things happen:
1) the space is on each side of the pictures
2) because the space it’s on each side you will have double space between pictures. 1px + 1px
3) The spacing doesn’t apply to the black transparent layer on top of the picture. So it results a space between pictures that is grey not white.
Another questions:
How do i change the color of that black transparency. let’s say i want it to be like the dark blue from my website.
thank you
Hi
Try this css: http://screencast.com/t/6bZ2oh9B5w This css code will affect only the big grid 7:
.td_block_big_grid_7 .td-module-thumb{
margin: 1px;
}
.td_block_big_grid_7 .td-small-thumb .entry-title{
font-size: 25px!important;
}
Thanks!
Hi,
I have inspected your website and saw that you use different columns for your page in visual composer. Please use only the 3 columns recommended by the theme: http://screencast.com/t/UaUdpXuH4 – https://forum.tagdiv.com/how-to-use-visual-composer/
Our blocks were created to work only on the specific 3 rows. Using other ones might create problems.
You can also check your custom css classes applied to your rows and see if a parameter given there modifies responsiveness.
Thank you!
Hi JDF,
I’ve checked the code on your site again and all seems to be good. Please make sure you put the correct code in custom CSS area within Theme panel like this: http://screencast.com/t/Gn4PaHPz
@media (max-width: 1018px) and (min-width: 768px){
.td-header-menu-wrap .span9 {
overflow: auto;
}
.td-header-menu-wrap .span9 {
font-size: 10px!important;
}
}
Here you can see the result: http://screencast.com/t/ln9p78N4qJ0
Thanks and let us how it goes!
Hey TagDiv team:
Can you give me the css to make the font smaller on tablets and desktop main menus?
Fox example, I’d like the font size to be 8px and NOT bold.
Also the smaller font size might look better with a smaller menu box height…so can you provide me with css to change the menu box height as well?
(PS – in future editions, you might want to add this as an option in your theme panel!)
Thanks,
eFromDC
Hi mike,
You have two possibilities to disable the option “More from author”.
1. You should alter the template named td_module_related_posts.php like that:
http://screencast.com/t/V8ZoLZjc
2. If you do not want to alter the code, please try a bit of css:
.td-related-title .td-related-right {
display: none;
}
Here you can see the result: http://screencast.com/t/M4QKJTwA
Thanks.
Hi,
Sorry the code is not reacting.
I already have custom CSS on these two elements (this for desktop)
.td-header-menu-wrap{
background-color: #23282d;
width: 100%;
height: 22px;
font-family: ‘Arial’, sans-serif;
font-size: 11px;
color: #ffffff;
}
.span9{
background-color: #23282d;
height: 22px;
font-size: 11px;
width: 100%;
margin-top: -.2em;
}
May I did something wrong ?
Hi thelastpoet,
1. It is possible to remove the dates on the block 5 if you try a bit of CSS code below:
.td_module_3 .td-module-date {
display: none;
}
2. In our theme, blocks were designed to display only the posts. To get what you want, it requires custom work. Unfortunately we cannot offer custom work as we work hard on the development, updates, fixes and support. You can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.
3. If you want to display the top bar in your theme, first of all you should activate this within theme panel and then creating a custom top bar menu like this: http://screencast.com/t/nZ8Xs3tST http://screencast.com/t/xaJ49ico
The result can see here: http://screencast.com/t/yMGsp3j9mD http://screencast.com/t/7RFkHmozhB
Let us how it goes!
Thanks.
-
This reply was modified 10 years by
Catalin.
Hi Aditya,
It is necessary to make some changes in style header-2 template for your customization like this:
http://screencast.com/t/pc3Td0DV and then try a bit of custom CSS below:
.td-header-style-2 .td-header-sp-logo {
margin-left: auto;
margin-right: auto;
}
.td-main-page-wrap {
padding-top: 22px;
border-top: 1px solid black;
}
The result you can see here: http://screencast.com/t/RHnTMiayh7y
Thank you and let us know how it goes!
Hi
You can hide more article box for mobile devices using this custom css in theme panel > custom css: http://screencast.com/t/cO9GiCcQ4nT0
@media (max-width: 767px){
.td-more-articles-box {
display: none;
}
}
Thanks!