Search Results for 'block'

Results from the Forum
Bogdan B.
tagDiv Staff

Hi,

You can use an alternative method. Edit td_module_14 in the theme files and just move the title code above the image: http://screencast.com/t/SCRthLrAq. Then use a bit of css styling to adjust the title:

.td_block_13 .meta-info-container h3{
padding-left:20px
}
.td_module_14 .td-module-meta-info{
bottom: -45px;
}

Now the responsiveness does not get affected.

Thanks.

Bogdan B.
tagDiv Staff

Hi,

You can use an alternative method. Edit td_module_14 in the theme files and just move the title code above the image: http://screencast.com/t/SCRthLrAq. Then use a bit of css styling to adjust the title:

.td_block_13 .meta-info-container h3{
padding-left:20px
}
.td_module_14 .td-module-meta-info{
bottom: -45px;
}

Now the responsiveness does not get affected.

Thanks.

Alin [tagDiv]
tagDiv Staff

Hi,

The tagdiv gallery was not designed to be used in a text block using Visual Composer. If you add it in a post content without using VC you will see that it wont be any issues. This is on our list and we will fix it as soon as possible.
You can try this custom css in Theme Panel > Custom Css until we fix it – http://screencast.com/t/ATzbkNYW

.single .td-pb-span12 .wpb_text_column .td-slide-on-2-columns .td-slide-galery-figure {
width: 100%;
}
.single .td-pb-span12 .wpb_text_column .td-slide-on-2-columns .td-doubleSlider-1 .td-slide-item img {
max-width: 100%;
}

Thanks!

dizajn
tagDiv Member

Thank you very much. Enabled font awsome and now it is there. One more question regarding your theme: In previous versions there was option to change excerpt from number of words to characters for all blocks at the same time. Now you must do manually for each of them?

Thanks again

reloaded
tagDiv Member

Hi guys,

i was looking for the solution to this problem: i perfectly managed to hide ads IN the article (thanks to this discussion), but i could not be able to hide them in the top header (which is outside the article block) and in the sidebar.

I tried to edit the header-style-3.php (which is the style i got set from the newsmag menu i guess) file but no results on that, the ad stills there and this is the code i insered in this file:

<div class="span8 td-header-style-1">
		<?php
			//show the header ad spot
			if (!get_field('hide_ad')) {
				echo td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'header'));
			}
		?>	
	</div>

Am i doing something wrong? And what should i edit for the sidebar?

My website post page where i’m trying to hide them is this one: MyTechnology

  • This reply was modified 10 years by reloaded.
Bogdan B.
tagDiv Staff

Hello,

1) For the text widget size there is an option in the theme panel: http://screencast.com/t/BtQTEbcz0I
For colors you have to use CSS:
.td-main-sidebar .widget_text{
color:red
}

2) It can only be targeted with CSS
#commentform input[type=text],
#commentform input[type=url],
#commentform input[type=tel],
#commentform input[type=email],
#commentform textarea{
font-size:20px
}

3) You have to identify the module used by the block. For example a module 6 title can be changed from here: http://screencast.com/t/eQ5thbs9e. You can inspect the block with your browser inspector and you can see the class used by it or you can use the Excerpts setting to see what modules are used for each block.
As for the color, you have to use css again. there is no option for it in the theme panel
.td_module_6 .td-module-title a{
color:red;
}

(the module in your image might not be a module 6 so you have to change the settings to the module used by your block. i just set module 6 as an example)

4) Unfortunately there is no option in the theme panel for it. You have to use CSS:
.td_module_related_posts .td-module-title a{
font-size:20px;
color:red;
}

5)The module on your homepage is an mx 2 and can be adjusted in the theme panel: http://screencast.com/t/f38U5Q3Cl6m

6)The default page template has no sidebar. You have to use on of the 2 other page templates for it to display: http://screencast.com/t/z244vqFWMo

Thank you!

Catalin
tagDiv Staff

Hi @enzogrunge,

Please try the code below in theme panel=>custom CSS area: http://screencast.com/t/y3bKPOQLacwt

.td_block_wrap .td-post-author-name, .td-module-comments {
display: none !important;
}

Let me know how it goes!
Thanks.

akopein
tagDiv Member

Oh never mind…i solved it by adding some custom JS and CSS.

http://jsfiddle.net/livibetter/HV9HM/

This is really helpful if anyone else wants to make the newsticker sticky

Custom js
jQuery(document).ready(function($) {
function sticky_relocate() {
var window_top = $(window).scrollTop();
var div_top = $('#sticky-anchor').offset().top;
if (window_top > div_top) {
$('#sticky').addClass('stick');
} else {
$('#sticky').removeClass('stick');
}
}

$(function () {
$(window).scroll(sticky_relocate);
sticky_relocate();
console.log("hello");
})
});

Custom CSS:

#sticky.stick {
position: fixed;
top: 100px;
width: 860px;
}

Copy both stuff and place it in the themepanel. Add the following elements anywhere to echo the newsticker

<div id="sticky-anchor"></div>
<div id="sticky">
<?php echo do_shortcode('[td_block_trending_now]');?>
</div>

Catalin
tagDiv Staff

Hi @grupoinnovate,

I suggest you to use a plugin like Category Order and Taxonomy Terms Order. Please note that we did not test it with the theme, but I see that many users use it.

If you want to put the word “Miami” before the date in your top bar menu, please follow this step below:
http://screencast.com/t/ZZff0BVp

Here you can see the result: http://screencast.com/t/Nej9juTpyvjb

To fix the problem with mobile, please try this custom CSS:
http://screencast.com/t/xF2CF4NVGusqhttp://screencast.com/t/D0iA5AnY

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

Hope this helps!
Thanks and let us know how it goes!

  • This reply was modified 10 years by Catalin.
  • This reply was modified 10 years by Catalin.
  • This reply was modified 10 years by Catalin.
vladimirtrajkovic
Participant
#0

Dears,

Once I have started changing the colors of the blocks on a homepage I have noticed that no matter what I do, I cannot show the Header on the Social Counter http://cl.ly/image/3h3m410r082J

If I reinstall the theme, than it is ok, but again if I start changing the colors and texts on the blocks, heading of the Social Counter disappear.

Could you help me with this issue?

Thanks,
Vladimir

Alin [tagDiv]
tagDiv Staff

Hi,

I have checked a post from our demo and did not found any issues, it takes the featured image – http://screencast.com/t/Mn8L8mrj
Regarding the second question you could try to use a plugin to take the first image from your post to be displayed on modules/blocks(like the featured image). Unfortunately we did not tested any plugin so I cannot recommend one.

Thanks!

Bogdan B.
tagDiv Staff

Hello croboy,

Visual composer was not tested on posts. It has that option and you can add blocks to your post , but you will need custom CSS modification to position it.
You can add a padding to it with CSS:

.single-post .td_block_wrap{
padding-top:50px
}

Place it in the theme panel-custom CSS box.
This code adds a padding to all block elements on posts (all of them will stick to the text without a padding or margin set to them). You can tweak the value in the code to your preference.

Thanks.

wpdiv
Participant
#0

Hi

I have disable built-in Google fonts and replaced with custom fonts in my site http://www.wpdiv.com and works great.

But i need help to fine tune CSS elements and unable to find the theme options to adjust the CSS properties of the elements.

1. How can i change the text colour and font size in sidebar text widget via theme options panel?

http://prntscr.com/8tytvr

2. How can i adjust the font size in comment form input?

http://prntscr.com/8tyuyf

3. Unable to find theme options to adjust block font title size and colour?

http://prntscr.com/8tyvmp

4. adjust related post title

http://prntscr.com/8tyvuw

5. adjust home page blocks post title

http://prntscr.com/8tywkx

6. I had setup default page template for my pages. but sidebar is missing. How can i add pages with sidebar?

http://prntscr.com/8tyxni
http://prntscr.com/8tyxzq

Alin [tagDiv]
tagDiv Staff

Hi,

If you cannot edit the blocks, please select all elements to be available from Visual Composer settings – http://screencast.com/t/qMhcwpK8wlcQ
Please provide more details about your issue if this is not what you mean and also a link to your site.

Thanks!

Andrei L.
tagDiv Member

Hi

The theme wasn’t designed to display the top menu on mobile devices, but you can use this custom css in theme panel > custom css to display it: http://screencast.com/t/AjbppVaZrk

@media (max-width: 767px){
.td-header-top-menu {
display: block;
}
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

I have already replied in this topic – https://forum.tagdiv.com/topic/optimize-newspaper-in-mobile/#post-71278
Please also check this guide for pagespeed optimization(gzip compression, remove render blocking..) – https://forum.tagdiv.com/how-to-make-the-site-faster/

Thanks!

pawsandwhiskars
tagDiv Member

Hi Andrei,

About the category tags: OK, thanks for explaining 🙂

About the Social Share buttons: I’ve tried the solution suggested and it looks ok in the post details.
But when I view a post, on the post page the social buttons look distorted. The added code somehow affects the way the social buttons are displayed in the post page.
How do I fix that?

Also, the added social buttons in the post details are share buttons. They work, but upon enabling them, how can I control what is shared? The buttons are supposed to share a link to the post (since they are located in the post details, of many posts in Block 13). Instead they share a link to the page on which Block 13 is used. That defeats the purpose of the buttons. So my question is: How to control what links are shared?
Thanks again!

Bogdan B.
tagDiv Staff

Hello Arafat,

There is an option for category tags in the theme panel. You can activate the option on every module and blocks separately:
http://screencast.com/t/pBArRVDclUjA

Thanks.

enzogrunge
Participant
#0

Hi.
I just update the new theme and I need to hide the comments number and the author from blocks. Could you help me with this telling how to do it please.

ericgui
Participant
#0

Hello
In my layout I have multiples blocks (block 8, block 7 and so on…) I wanted to change some of them, but the are not appearing in the visual composer ! How do I get them back ? Urgent.
thanks

croboy
tagDiv Member

BTW, when I add block at the end of a post block is too close to text. Is there any element or way to make additional space between text and block?

croboy
Participant
#0

Hello,

I con’t figure out how to add a block to the end of post (main template).
I figured out to how to set up a homepage using visual composer. I watched tutorial.
I just don’t understand is it possible to add block to every post that is using regular template.
I know in Theme panel there is Post setting -> Default site post template.
Is it possible to create template that at the end of post has blocks?
Thank you in advance.

akopein
Participant
#0

Hi i would like to create a block where there would be a headline first and then an image followed by the content..it seems newspaper theme doesn’t have a template for such a block. How can i change the layout of an existing block? For example i want to change the layout of block 13 such that the headline will appear first then the image and followed by partial content with read more. It would be really helpful i can put some CSS stuff to achieve it

twitchylegs
Participant
#0

Hi,

Is this possible through the theme panel?

I have the following category setup

Parent Cat A
-Child Cat 1
-Child Cat 2
–Child Sub Cat 1

I would like to have the category tag display over the featured image if you are viewing an upper level category that has child categories. But NOT display if you are at the bottom of the category list, such as Child Cat 1 or Child Sub Cat 1.

Or, to explain it using the demo, I would like to remove the category tag on this page (but have it appear on its parent page: Fashion)
http://demo.tagdiv.com/newsmag/category/tagdiv-fashion-week/tagdiv-cosmopolitan/

I don’t understand why the category tag (Cosmopolitan) appears on this page. If the user clicks on the link for the first page of posts, it just refreshes the page.

Can this be done through the theme panel? If not, can you just point me in the right direction.

And, nice theme!

thanks!

webdream
tagDiv Member

Hi Alin, thanks for fast reply.
I just tried to use TAG as workaround to my issue but it doesn’t works:
I had created a new TAG inside Articles named “tag-a” and I bind it to 3 articles.
I had created a new TAG inside Events Manager Tag named “tag-a” (same slug) and I bind it to 1 event.
Editing my page with Visual Composer inside block-module named “Big Grid Side” I have this settings:

GENERAL
– Big grid style: Grid Style 1
– Offset posts: *null*
– Autoplay slider (at x seconds): *null*
– Limit post number: 8

FILTER
– Category filter: – All Categories –
– Multiple categories filter: *null*
– Filter by tag slug: tag-a
– Multiple authors filter: *null*
– Post Type: post,event
– Sort order: – Latest –

With this configuration I can see only the three posts tagged as tag-a but no event showing.
Removing “Filter by tag slug” I can see all my posts and all my events in this module.
I think that event manager’s tag and article’s tag are not shared.

So, if i can show either articles and events How can I filter all of them for a particular shared tag, category?
Thank you again for your precious assistance.

Viewing 25 results - 33,601 through 33,625 (of 39,816 total)