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

Hi,

If you have done the modifications in the td_config.php file then the thumb images should look like this in your browser inspector – https://www.screencast.com/t/vB8fmTsfc and here – https://www.screencast.com/t/uKYf5VilfD Now using some css you could change the height of the module – https://www.screencast.com/t/QwSbYjhocQv You can use this code, just enter it in Theme panel->Custom Css

@media (min-width: 767px) {
.td_block_big_grid_1 .td-module-thumb {
height: auto!important;
}}

Result – https://www.screencast.com/t/U1CqMjpq
Thanks

Simion C.
tagDiv Staff

Hi,

These are the thumb dimensions used on the modules – https://forum.tagdiv.com/theme-thumbs/ As you can see there some modules have a 16:9 aspect ratio, while others have one closer to 4:3 you just have to experiment with different aspect ratios and see what works best for you. Also this is the way the featured images are cropped – https://forum.tagdiv.com/featured-image/
If you have tried to regenerate thumbnails and cleared the cache after the process, with no results please provide a link to your website so we can inspect it.
We have not tested any plugin with that functionality so I can not make any recommendations, you will have to search for some plugins and use the one you like.

Thanks

Simion C.
tagDiv Staff

Hi,

You can not make the image dimensions smaller because the modules on the blocks need a certain thumb size to display and this is the way the blocks were designed, these thumbs being generated from the featured images you set on your posts as explained here – https://forum.tagdiv.com/theme-thumbs/ Big grids are meant to use big thumbs as seen in the demo here – https://demo.tagdiv.com/newspaper/big-grid-1/https://www.screencast.com/t/wKgYqeMEnnrq You need to optimize the images through software in order to compress the size in kilobytes if you want to make your site faster. Please use this guide – https://forum.tagdiv.com/how-to-make-the-site-faster/

Thanks

Simion C.
tagDiv Staff

You could use this css code, it should make the top menu display in mobile state, just enter it in Theme panel->Custom Css

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

Result – https://www.screencast.com/t/yEapLOO6p8

Thanks

Simion C.
tagDiv Staff

Hi,

If you are talking about the category tag displayed on the modules – https://forum.tagdiv.com/category-tag-on-modulesblocks/ it is meant to display only one level of categories. Please correct me if I misunderstood.

Thanks

Simion C.
tagDiv Staff

Hi,

You could decrease the line height for the elements used in the post content, now I see that you have set a custom line-height for the headings – https://www.screencast.com/t/Sgv3o4zRE6 Also each paragraph in the post content has a default margin property set – https://www.screencast.com/t/OsjRTp7S1H you could try to reduce it

.td-post-content p {
margin-bottom: 10px;
}

You can increase the width of the dropdown in the smart list using this code with this result – https://www.screencast.com/t/Ozyrrsiu

.td-smart-list-dropdown-wrap
.td-smart-list-dropdown {
max-width: 60%;
}

Thanks

Simion C.
tagDiv Staff

Hi,

You can hide the author name and date on all the modules/blocks in Theme panel->Block settings – https://www.screencast.com/t/BKjbpHiDQn9

Thanks

Simion C.
tagDiv Staff

Hi,

That is the default theme width as seen in the demo – https://demo.tagdiv.com/newspaper/ as defined in theme’s stylesheet. All the elements on the page depend on this width and it is not recommended to change it because it will cause layout problems. Also when a background color or image is set the site automatically changes to the boxed version – https://forum.tagdiv.com/background-introduction/ which affects the header style and the footer also. If you want to have a full width header and footer you must clear your background color set in Theme panel->Theme colors – https://www.screencast.com/t/rbJcDOlw and also choose a full width header style from the header styles available – https://forum.tagdiv.com/header-styles/

Thanks

Simion C.
tagDiv Staff

Hi,

You could try and see if it is working, but it is highly recommended that you update the theme and the plugins to the latest version. The developers are working to bring the newest features and the theme is in a continuous development with the latest implementations in mind, and you should benefit from these changes by updating. Here you can find the changelogs of all the theme updates until now – https://themeforest.net/item/newspaper/5489609 Also here is a detailed tutorial about the update process – https://forum.tagdiv.com/how-to-update-the-theme-2/

Thanks

Simion C.
tagDiv Staff

Hi,

If the button is an image with a custom link, the theme has a modal image feature related to what happens when you click an image inside a post. This feature can be disabled in general from Theme panel->Post settings – https://www.screencast.com/t/HxZwPq2U if no individual settings are set on an image – https://www.screencast.com/t/UwlsYL1TDhttps://www.screencast.com/t/UwlsYL1TD in which case these settings have priority. You can find more information here – https://forum.tagdiv.com/modal-window/

Thanks

Simion C.
tagDiv Staff

Hi,

Please make sure you have updated the required plugins not only the theme, from your theme package – https://forum.tagdiv.com/whats-included/ especially Visual composer – https://forum.tagdiv.com/how-to-update-visual-composer-plugin/ Also if you use a child theme try disabling it to see if it affects the theme functionality and make any necessary adjustments if it does.

Thanks

Simion C.
tagDiv Staff

Hi,

This can be done with some css code, first you must identify the menu item which you want to modify using your browser inspector – https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/ so the code will apply only to that menu item – https://www.screencast.com/t/UsMLup3LTY Then you could set a custom width to that sub-menu using this code (replace the menu example with your menu item and change the width to the value you want) enter it in Theme panel->Custom Css

.menu-item-3580 .sub-menu {
width: 300px!important;
}

Result should be like this – https://www.screencast.com/t/9SxNkeVB2KX6
Thanks

Simion C.
tagDiv Staff

Hi,

The developers decide what to update in the theme and what gets prioritized because there is a long list of fixes, improvements and suggestions to implement and it can not be done all at once. You can find the changelog of the latest theme version here – https://themeforest.net/item/newspaper/5489609 and you should consult it before any theme update as recommended here – https://forum.tagdiv.com/how-to-update-the-theme-2/ As for the child theme, you will have to go through it carefully, verify the code and make the necessary adjustments. Any modification you made through the child theme will have to be tested with the new update because some elements from the theme may be subject to change, so it is not guaranteed to work with your previous customization.

Thank you for understanding

Simion C.
tagDiv Staff

Hi,

Please follow these steps as they are explained in this update tutorial – https://forum.tagdiv.com/how-to-update-the-theme-2/ The ftp process is the surest and the recommended method in this regard – https://forum.tagdiv.com/install-via-ftp/ Also remember to update the required plugins to the latest version.

Thanks

Simion C.
tagDiv Staff

Hi,

That is a simple page I created in Visual composer – https://www.screencast.com/t/R421IGscrrfv in which I inserted an Ad box element then set an adspot and a title – https://www.screencast.com/t/Os3b1iHh After that you can use this ad box code in your do_shortcode – https://www.screencast.com/t/i66u24neemhttps://www.screencast.com/t/LljjINnxTcq You can use a different custom ad if you want.

Thanks

Simion C.
tagDiv Staff

Hi,

I suggest you try as a test to disable all your plugins, except Visual composer and the mobile theme, clear your cache, purge cdn files if you use it and see if the problem is still there. I have tried to replicate this on my end but with no success, it could be a plugin that inserts the video also in the post content if you are absolutely sure that no video link is within the text of the post. If the issue persists after you have tried this please send us an email at contact@tagdiv.com (provide wp-admin access) and also paste a link to this topic so we can investigate.

Thanks

Simion C.
tagDiv Staff

Hi,

That depends if you want to have a static front page built using Visual Composer or a blog with latest articles displayed on the homepage – https://forum.tagdiv.com/homepage-how-to-build-and-set-it/ You can find more about the theme in the documentation here – https://forum.tagdiv.com/newspaper-theme-documentation/ Please correct me if I misunderstood what you wanted, or provide more details about what you want to achieve

Thanks

Simion C.
tagDiv Staff

Hi,

If you follow every step of the update process explained in this tutorial – https://forum.tagdiv.com/how-to-update-the-theme-2/ everything should be fine. It explains each of the update procedures either it’s with wordpress or through ftp, as well as instructions about the backup process – https://codex.wordpress.org/WordPress_Backups Anyway, if you run into problems we are here to help you get through them.

Thanks

Simion C.
tagDiv Staff

Hi,

One way of doing it is to set a class on that block only – https://www.screencast.com/t/aVQf0JvT and then use some css in Theme panel->Custom Css like this – https://www.screencast.com/t/WEiFeAzR6 ao that font color applies only to the block that has that class.

Thanks

Simion C.
tagDiv Staff

Hi,

Unfortunately there is no other way except the method provided by Bogdan above, to remove the review and display the standard date instead. So if you want to achieve this you must edit the respective file and do the necessary changes as explained by Bogdan.

Thanks

Simion C.
tagDiv Staff

Hi,

If you want a full size logo image you can use Header styles 9, 10 or 11 – https://forum.tagdiv.com/header-styles/ for a full logo width as specified here – https://forum.tagdiv.com/logo-favicon/ An example of this is the Cars demo which uses Header style 10 – https://demo.tagdiv.com/newspaper_cars/ However if a background color or image is set, then the site automatically changes to the boxed version – https://forum.tagdiv.com/background-introduction/
As for a different header image background for each page you can try the suggestions from this topic – https://forum.tagdiv.com/topic/different-header-images-for-different-pages-and-videos/
Please let me know if you need further help, or if I misunderstood something.

Thanks

Simion C.
tagDiv Staff

Hi,

Please provide more details about the problem because I do not fully understand what you mean, and maybe I can give you a solution.

Thanks

Simion C.
tagDiv Staff

Hi,

From what I can see the elements on your page have different fonts from the default ones – https://www.screencast.com/t/IhyKhvROEUFhttps://www.screencast.com/t/CJWZBWSfo8y9 so if you want to change them again, you must do so for each of the elements you want – https://www.screencast.com/t/WSPFQEmyE

Thanks

Simion C.
tagDiv Staff

Hi,

One of the differences between the standard and the video post format is that when a video post is being displayed in a module on the page it has a video play icon so you know that a video is inside the content. This is a standard post format – https://www.screencast.com/t/g3DS9GYP and this is a video post format – https://www.screencast.com/t/ENXTdq7tCbpq But you can choose what you like and works better for your website. Also you could use a featured video on your posts – https://forum.tagdiv.com/featured-image-or-video/

Thanks

Simion C.
tagDiv Staff

Hi,

If you are using post template style 1 – https://www.screencast.com/t/sNh8M81O4 then you must edit the file loop-single-1.phphttps://www.screencast.com/t/n4lEvjaa3

Thanks

Viewing 25 posts - 20,151 through 20,175 (of 20,681 total)