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,

All the blocks and big grids are predefined in terms of layout, they will always display in a predefined way on desktop and mobile
https://demo.tagdiv.com/newspaper/block-1/
https://demo.tagdiv.com/newspaper/big-grid-1/
https://demo.tagdiv.com/newspaper/full-big-grid-1/
Only through modifications they could be made to display differently, not by a theme setting.
I could give you a code that you can try in Theme panel->Advanced CSS in the phones section. It will make full big grid 9 display like this on mobile
https://www.screencast.com/t/Fx2h0Q7Y7u
This is the code

.td_block_big_grid_fl_9 .td-big-grid-wrapper .td-big-grid-scroll .td-big-grid-post {
width: 100%;
float: left;
}
.td_block_big_grid_fl_9 .td-big-grid-wrapper .td-big-grid-scroll .td_module_mx25 {
margin-left: 0;
margin-top: 3px;
}

Thanks

Simion C.
tagDiv Staff

Hi,

You can use a code like this to center the next/prev pagination in block 4
https://www.screencast.com/t/nIxseu1K

.td_block_4 .td-next-prev-wrap {
margin-right: auto;
margin-left: auto;
display: table;
width: auto;
}

Simion C.
tagDiv Staff

Hi,


@Carel
The link seems to work now, could have been a temporary issue. Please try it again.

Simion C.
tagDiv Staff

I have edited the post as requested.

Simion C.
tagDiv Staff

Hi,

There are more detailed steps in the topic provided above
https://forum.tagdiv.com/topic/social-counter-and-instagram-problem/page/2/
You can modify the social counter plugin even with the WordPress plugin editor.

Thanks

Simion C.
tagDiv Staff

Hi,


@tafan93
Please make sure you did the modifications properly, there should be no problem. These solutions are tested and worked for all users until now
https://forum.tagdiv.com/topic/social-counter-and-instagram-problem/
There are more detailed steps as the topic progresses.

Thanks

Simion C.
tagDiv Staff

Hi,

That would not be possible, the theme does not have a parallax setting for any ads entered in the theme panel, if that is what you are asking.

Simion C.
tagDiv Staff

Hi,

I don’t know exactly what that is. If you want to display an iframe in the header, you could add the code directly in the header template file
https://www.screencast.com/t/pfJCzoI5C
Then it will be displayed in the header, it may need some design however.

Simion C.
tagDiv Staff

So the problem is that the composer is not working properly, you cannot use the editor window as intended. You could try as a first step to check if there are enough resources allocated
https://forum.tagdiv.com/system-status-parameters-guide/
If needed ask your hosting provider to increase the parameters mentioned in the guide. Check if this is any effect. Additionally try to deactivate as a quick test all the plugins except theme plugins. Check if this solves the issue.

If none of these suggestions work, please send us an email at contact@tagdiv.com and provide admin login. We will take a look. Include a link to this topic in the email.

Simion C.
tagDiv Staff

Hi,

From what I can see, the AMP validator detects an invalid link property
https://www.screencast.com/t/KxMMenhItgc
This points to the sub-footer text here
https://www.screencast.com/t/oPpfToLFpe
Please chnage the HTML you entered there with the valid link property (“_blank”)
https://www.w3schools.com/tags/att_a_target.asp
Then there will not be invalid HTML detected by the AMP validator in all those posts.

Thanks

Simion C.
tagDiv Staff

Hi,

You could use the same blocks or modules, to reduce the number of thumbnails that are created. Each module is predefined to show a specific thumb size, this could only be changed in the code.
However it is not recommended to do so, this will affect the module design and cause layout issues. Here you can see which modules each block and grid use
https://forum.tagdiv.com/theme-blocks-modules/

Thanks

Simion C.
tagDiv Staff

Hi,

Initially the block titles are black (this cannot be changed by a theme setting), the hover color being the theme accent color set in the theme panel
https://www.screencast.com/t/qlwGTeAhamgh

If you choose a background color for the block title like this
https://www.screencast.com/t/R1tEhDG5
Then that will be the hover color for the titles of that particular block.

Also some demos can contain custom design and override any of these settings.

The code my colleague provided above will change the default black color of the module article titles. The hover color will not work anymore if you use that code. To keep the hover color a code like this should be used

h3 > a{
color:yellow;
}

This code will also not affect the big grid, that has more precise CSS. Try it and let me know.

Thanks

Simion C.
tagDiv Staff

Hi,

Sorry for the misunderstanding, that code has to be entered in the theme header file, between the head tags
https://www.screencast.com/t/fsI6vTdNC
The header file is located in the main theme folder, you can access it by FTP or even WordPress editor
https://www.screencast.com/t/TmWRHsH8

Thanks

Simion C.
tagDiv Staff

Hi,

The video icon will be displayed on the thumbnails of a module, if the post is a video post, like this
https://demo.tagdiv.com/newsmag/category/tagdiv-video-tutorials/
If there is no thumbnail the icon will not be displayed. The function for this is in this theme file, if you want to modify it
https://www.screencast.com/t/p9vCcnpRHR3

Thanks

Simion C.
tagDiv Staff

Hi,

The same logo you set for the footer in the theme panel will be displayed on desktop and also mobile
https://www.screencast.com/t/Wot2WKDRm
There is no specific setting for the mobile logo. Try clearing your cache and check again. If you could provide a link to your website we will take a look.

Thanks

Simion C.
tagDiv Staff

Hi,


@tafan93
Make sure you are setting the full size of the image, when setting the background image for the row
https://www.screencast.com/t/ybfSsRrSizBP
https://www.screencast.com/t/ZAM0GUBSM
It could be that you are setting a smaller size of the image, and it is stretched.

Thanks

Simion C.
tagDiv Staff

Hi,

Posts can be added in menus if needed
https://www.screencast.com/t/MPWjldvxmDg
If the posts section is not appearing, check the screen options it could be disabled
https://www.screencast.com/t/rr4hm6ZjSld

Thanks

Simion C.
tagDiv Staff

Hi,

The paragraphs inside the smart list have different font properties than the regular post content font. This smaller font overrides the default font
https://www.screencast.com/t/ODucUtxW4BqL
You could use a code to make the font bigger for all the smart lists style 8 (if you have used that often), just as the post content paragraphs
https://www.screencast.com/t/EwWW62eW

.td_smart_list_8 .td-sml-description p {
font-size: 14px;
}

You can change the value according to your post content paragraphs if needed, this is for default settings. Let me know if you use more smart list styles, the code may need additions.

The AMP plugin is currently available only for the Newspaper theme, at this moment I cannot say if or when it will be available for Newsmag.

Regarding ads on mobile, the same ads from desktop will be shown. Newsmag does not have a dedicated mobile theme that would have it’s own ad spots. Only if you use different ads than Adsense you could use these specific containers
https://forum.tagdiv.com/newsmag-using-other-ads/

Thanks

Simion C.
tagDiv Staff

Hi,

You could only create one forum account to activate one theme, and activate the others manually with this option
https://www.screencast.com/t/NXhtb0Vtn
This option would be useful for users that purchased more than one themes.

Thanks

Simion C.
tagDiv Staff

Hi,

First please check the theme system status, if there are sufficient resources
https://forum.tagdiv.com/system-status-parameters-guide/
If needed, ask your hosting provider to increase these parameters to the recommended values.
Also please check this topic
https://forum.tagdiv.com/topic/errors-happened-during-tdciframedata-init-bindviewsmodelswrappers-14/

If there is still a problem, please try to deactivate all plugins except theme plugins and try the counter again. In case it does not work, send us an email at contact@tagdiv.com and provide admin login so we can take a look. Include a link to this topic in the email as well.

Thanks

Simion C.
tagDiv Staff

The analytics script will be loaded when using the mobile theme plugin as well. You can check this in the source of the page, or by inspecting the mobile page
https://www.monsterinsights.com/how-to-check-if-google-analytics-is-working/

Simion C.
tagDiv Staff

Hi,

We could take a look at the images, if you could provide links where we can see them. It would all depend on the source of the image, if a high quality image is used the thumbnails will also be of quality.
The live theme demo contains quality images for example
https://demo.tagdiv.com/newspaper/

Thanks

Simion C.
tagDiv Staff

Hi,

Not all block modules display a read more button. In order to add such a button to a module that does not have it by default, it will require you to modify the respective module file. This is a similar topic with more information
https://forum.tagdiv.com/topic/read-more-button-and-cant-change-title-color/

Thanks

Simion C.
tagDiv Staff

Hi,

There are currently playlist elements for YouTube and Vimeo
https://forum.tagdiv.com/video-playlist-2/
You have to use the video IDs in the required field in order for the playlist to be created, each video has to be entered individually
https://www.screencast.com/t/wYwHMUeJ
https://www.screencast.com/t/5sHDnmcL
This element will not work with playlist IDs, only single videos. If you want to display a ready made playlist you could embed it
https://forum.tagdiv.com/topic/youtube-playlist-instead-of-each-video-individually/

Thanks

Simion C.
tagDiv Staff

You could search more online in the matter, there might be solutions or pointers for what you are trying to do.

Viewing 25 posts - 10,476 through 10,500 (of 20,681 total)