Search Results for 'block'

Results from the Forum
drfrancky
Participant
#0

How do I add “Custom title for this block” like the one on blocks to a Big Grid ?

Bogdan B.
tagDiv Staff

Hi,

2) This css should remove a bit of spacing but keep in mind that css is very specific and it will only apply to the homepage on mobile. If you require other adjustments, you will have to use the browser inspector to figure out how to remove the spacing with css as this is very personal and we cannot provide a general code that can remove the white space everywhere:
@media (max-width: 767px){
.block-title{
margin-bottom:10px!important;
}
.td_block_1 .td_module_4{
padding-bottom: 5px!important;
}
.td_block_5 .td-block-row:last-child .td_module_3{
padding-bottom: 5px;
}}

5)You can activate the author name and the comments count for that particular block by removing the 2 // lines from here: http://screencast.com/t/WGirLBFwo Unfortuantely that’s about it. There is no other content that can fit in there as there has to be enough space for longer post titles.

6) The problem with the different module under the recipes category is because you only have 4 posts to show in that category .Every category is made out of 2 sections. A big grid and a module. You have a big grid with 3 posts and a module with 1 post. If you add more posts it will populate the module section with more posts. These can be selected from the per category settings: http://screencast.com/t/xEp1tg1Kw

I hope this helps.
Thank you!

Bogdan B.
tagDiv Staff

Hi,
Let’s start from the beginning. Here is a guide on how to use visual composer: https://forum.tagdiv.com/how-to-use-visual-composer/
You can add or remove elements from your page by using the visual composer page builder. you can add blocks, grids in 1 column, 2 columns or 3 columns. Please use this link to learn more about the plugin https://vc.wpbakery.com/video-tutorials/ but keep in mind that the front-end editor has been disabled on our theme. and we only recomend using the columns shown in the first link I provided.
I hope this helps.
Thank you!

danabeo
Participant
#0

I am totally newbie in WordPress, so I have to ask any questions that are sure to be very basic. I selected “Say What” demo, without content because I have some articles but I want to copy the first three blocks of your main demo page with my articles (which at first appear 2 items), underneath says “Trending” and then displayed a strip of 3 items. I looked at the Widgets section but I think it is not there.

Can you help me?

Bogdan B.
tagDiv Staff

Hello,
I’m not sure what preloading you are referring to but every block has the block settings you can change to customize your block .It can be done from visual composer if your block is added that way, or from the widgets area if your block is in a sidebar. Please check this guide for details: https://forum.tagdiv.com/block-settings-guide/
Thank you!

Eric_Vie
Participant
#0

Hey,

I am not able to change the preloading of one of my Blocks in the World News Plugin. In the Demo it is the Block 9 (Must Read in the Demo). I want to change it, so that there is no loading anymore. It didnt worked in the Widgets section nor in the “Home-Site” with Visual Composer, where i changed the content preloading.

Would be glad if you can help me.

Greetings Eric

Bogdan B.
tagDiv Staff

Hi,

When using adsense it’s not recommended to hide the ad with css as the google crawler will still be able to detect the ad. It;s best to remove the ad from the code.
You can add the condition in the file I pointed out above like so:
if(!is_404()){
echo td_global_blocks::get_instance('td_block_ad_box')->render(array('spot_id' => 'header'));
}
?>

http://screencast.com/t/Wj8mA0Yo

Thank you!

Bogdan B.
tagDiv Staff

Hi,

There are also inline styles applied to the demo content. This can be seen when you edit a post in text mode: http://screencast.com/t/Z5N3RTkRemVH
The sidebar titles background colors are added in the block settings in the widgets area: http://screencast.com/t/84Ns2ff770Jp

Thank you!

Andrei L.
tagDiv Member

Hi

The date for posts displayed on modules is generated in td_module.php: http://screencast.com/t/9HDovxc2pyx You can modify get_date() function if you want to change the date for all modules or you can create a new function and call it td_module_3.php file which is used to render posts for block 5: http://screencast.com/t/ybRVLIYDsRyi

Thanks!

Bogdan B.
tagDiv Staff

Hi,

Unfortunately there is no option at the moment to add blocks to your pages on mobile. We will try to include more options in the mobile theme including a few blocks without using visual composer but we have no eta on this yet unfortunately. It is a work in progress. At the moment you will have to use the standard MCE editor for pages.
If you are comfortable around coding, you can try to alter the mobile theme files. There is a folder called ‘mobile’ in the main theme folder where you will find the page template files.

Thank you!

gomerblog
Participant
#0

I selected a sidebar for a page from the wigitized sidebar option. The tagdiv blocks are vertical instead of horizontal http://gomerblog.com/pics/vertical.jpg

Any thoughts on this? Thanks

Akif Hameed
Participant
#0

Hi,
I’ve added the following code
<?php echo the_modified_date(‘l, F j, Y’, ‘<div class=”the-modified-date”>LAST MODIFIED: ‘,'</div>’); ?>
into loop-single-5.php, changing the get_date row with the above one.
The result is according to my choice, as you can see here:

http://www.tycoonzfitness.com/physical-fitness-and-benefits/

But also want to change it on the blocks: I’m using the block 5 on my home page:

http://www.tycoonzfitness.com/

Regards

Bogdan B.
tagDiv Staff

Hi,

The correct css code would be this one:

.td_block_1 .block-title span{
font-family: "Open Sans";
font-size: 24px;
font-style: italic!important;
}

Thank you!

Bogdan B.
tagDiv Staff

Hello,
Unfortunately the our theme does not have an exact replica of that grid. You can check different big grid styles here: http://demo.tagdiv.com/newspaper/big-grid-1/
If none of the grids we provide are sufficient for your project, you can create new ones if you have the proper coding skills. It will be no easy task though: https://forum.tagdiv.com/api-blocks-introduction/
Thank you!

Noob
tagDiv Member

i tried to use this custom css code to change the font of the title of block 1 but it didn’t work
can you please tell any modification in this code.

.td_block_1 .td_module_6 .td-block-title {
font-family: "Open Sans";
font-size: 24px;
font-style: italic!important;
}

Thank you

Andrei L.
tagDiv Member

Hi

This is a complex task which require lots of customization in order to be achieved and unfortunately we can’t offer custom work at the moment. We can only point a way of how to achieve that. Basically you have to change/replace the function which generate block’s title. That function is located in td_block_template_1.php http://screencast.com/t/gLVrjsAMrKQ If you change function’s name or you create a new function then you also have to edit td_block.php and update this method with the new name: http://screencast.com/t/XDdpZrzXtm

This is a very complex task and you’ll need good codding skills in order to complete it. If you’re not aware of the steps you have to take in this regard my advice is to look for a developer from sites like: https://studio.envato.com/ to help you with implementation.

Thanks!

hsm2393
Participant
New issues - topic
#0

I’ve some infographics. Added one of the post in the blog. Current issues that I’m experiencing are

1) Since the size of infographics are large (2500 x 1500px). The image is set as featured image but it doesnt show up on homepage big block, it does show up on the post. http://www.healthizo.com/, you can check out my first post in the big block. When you click on the post it shows on the post page

2) I’m unable to add images in the wordpress post editor. I can set image as featured image, but cannot add more images in the posts.

3) Uploading large images such as inforgraphics in the gallery dont show up. How can I fix these issues?

Marto
tagDiv Member

Hi,

if I decide to use custom banners and I change the values in td_block_ad_box.php to set them fit the banner size for example in custom_ad_1 will everything work properly?

Thanks!

Andrei L.
tagDiv Member

Hi

Try this css in theme panel > custom code> custom css:

.td_block_big_grid_3 {
padding-bottom: 15px;
}
.td_block_1 {
padding-bottom: 10px!important;
}

If this is not what you mean or you’re using other blocks please provide a link where we can inspect this.
Thanks!

Bogdan B.
tagDiv Staff

Hello,

You can only target specific module types in our theme, not just a particular block. You can change the font family or size from the fonts section for every module: http://screencast.com/t/qfqdn3zIKn
You can see a list here for what module is used in which block: http://screencast.com/t/eohjEChE3
If you want to target just a particular block, you will require a bit of css skills to add a custom css class to the row containing the block and targeting the block using that class to assign a font to the block title. You will have to load the font with css if you do not use the theme panel though. This is done using @font-face http://www.w3schools.com/cssref/css3_pr_font-face_rule.asp

Thank you!

Bogdan B.
tagDiv Staff

Hi,

1) – 2) The default beige color is set form the theme panel as a theme general accent color here: http://screencast.com/t/B0ioJvXAua
3) You can change the block title background color from here: http://screencast.com/t/2LqnRTpVNj
4) You can change the background and hover color for the submit button with this custom css:
.form-submit input[type=submit]{
background-color:red;
}
input[type=submit]:hover{
background-color:grey
}

Thank you!

Andrei L.
tagDiv Member

Hi

Default sizes for all ad-spots can be checked in td_block_ad_box.php file: http://screencast.com/t/fC1wPCLn2b These values can be overwritten from theme panel > ads for each ad-spot: http://screencast.com/t/bwmzmQpZ Note that this values can be changed only for ad-sense ads, other ads won’t be affected by them.

Thanks!

De Lagarde
Participant
#0

Hi!

I would like to replace the block titles with images. I searched throughout the forum and I read that you guys don’t support it? Is there a way to work around this with some custom CSS/Javascript. I tried some things myself but it didn’t work..

Great theme btw!

Bogdan B.
tagDiv Staff

Hello,
I replied you via email regarding this problem. It is a plugin related issue, not block related. Disable all your plugins except visual composer and check the menu. I have accessed your site and disabled all plugins and the menu worked as expected. I enabled your plugins again so your content added with plugins does not get removed.
Thank you!

Bogdan B.
tagDiv Staff

Hello,

This will not be so easy to do. You first need to create the block on a dummy page and filter it to show 3 posts and the category you want to show or specific posts by using block settings: https://forum.tagdiv.com/block-settings-tutorial/
If you want to have the black background you will also need a bit of css to adjust it as that element is custom made.
You can assign a custom css class to your element like so: http://screencast.com/t/nUwW45WrzGl, then set your background for the row to the color you want and use this css:
.mycustomclass{
margin-bottom: 48px;
padding-top: 48px;
background-color: #222;
}

After you set it up properly and you are happy with the results, it;s time to move it on posts.
You can use a do_shortcode function: https://developer.wordpress.org/reference/functions/do_shortcode/ and place the shortcode for your block inside it. Then add the function to the theme files here: http://screencast.com/t/6zk43xa1t2hL

I hope this helps.
Thank you!

Viewing 25 results - 29,401 through 29,425 (of 39,816 total)