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,

The Purchase Theme is a menu item from the top bar menu – http://screencast.com/t/0VOJeeizH You can remove there – http://screencast.com/t/aA8ZuxvzzU

Thanks

Simion C.
tagDiv Staff

Hi,

Visual composer works only on pages – https://forum.tagdiv.com/how-to-use-visual-composer/ You could try to use the shortcode of a block you added in Visual composer – http://screencast.com/t/aTUEgtrUefYhttp://screencast.com/t/0nXHRh88sHbk and insert it in your post but there is no way to tell for sure if it will work.
The related articles comes from the file loop-single.php located here – http://screencast.com/t/vSyE3icTp You will have to modify the code in order to replace it with something else. To disable it go to Theme panel->Post settings – http://screencast.com/t/h6MGeg9yBH1h

Thanks

Simion C.
tagDiv Staff

Hi,

This code will make the menu text colored on hover, enter it in Theme panel->Custom Css (you can set a color name or hex of your choosing)

.td-header-style-1 .sf-menu > li > a:hover {
color: #4db2ec;
}

This code is for an active menu (the one you are on) enter it only if you want

.current-menu-item a {
color: #4db2ec!important;
}

Please tell me if this ok for you
Thanks

Simion C.
tagDiv Staff

Hi,

If you have done all the above and your menu looks like this – http://screencast.com/t/Ky3FFCUm and it’s still not working, try to reset your cache and contact your host and ask for them to disable any hosting cache that might be provided and test again.
If the problem is still there contact us on our email address at contact@tagdiv.com and provide a link to your site and wp-admin (login information and admin rights) so we can login and investigate. Please also include a link to this topic.

Thanks

Simion C.
tagDiv Staff

Hi,

The simpler way of doing this is to disable your top bar – http://screencast.com/t/ggyNKsKl and add the menu you want to the main header menu – http://screencast.com/t/9D2jzEdy
Additionally you can choose from 12 different header styles the one you want – https://forum.tagdiv.com/header-styles/

Thanks

Simion C.
tagDiv Staff

Hi,

1. You can set create and set you own header menu in Appearance->Menus – http://screencast.com/t/ThrYVF7bpf
2/3. You can change the Youtube playlist title and the Block titles by opening your page in Visual Composer – http://screencast.com/t/cdGNt6MIR4http://screencast.com/t/8y8oAeKsYtc There you can see all the blocks that form your page and by editing them you can change their title and content – http://screencast.com/t/QuRFw3CcWWhttp://screencast.com/t/xzGo9b2PQ1

Thanks

Simion C.
tagDiv Staff

Hi,

You could achieve that in a page using Visual Composer by adding an empty stretched row like this – http://screencast.com/t/EVp0pe81gLhttp://screencast.com/t/f3zwIc1r0Yfx and setting a paralax image to it – http://screencast.com/t/BD4kmFyn
Result – http://screencast.com/t/ijQME5WdV

Another way of doing it would be to add a single image element – http://screencast.com/t/AnLcr3Nh with the same row settings – http://screencast.com/t/vqwkoSwcS
and setting the image size as you like – http://screencast.com/t/rkaN4CBM
Result – http://screencast.com/t/fDDVoH1eHhy

Thanks

Simion C.
tagDiv Staff

Hi,

Enter this code in Theme panel->Custom Css (it works for the default non-modified header style 1 menu – removes the active menu item bottom border and sets a hover color for the menu text) but it would be much easier if you could provide a link so i can inspect your site

.td-header-style-1 .sf-menu > li > a:after {
height: 0;
}
.td-header-style-1 .sf-menu > li > a:hover {
color: #4db2ec;
}

Thanks

Simion C.
tagDiv Staff

Hi,

Replied via facebook, please check your messages there.

Thanks

Simion C.
tagDiv Staff

Hi,

You can insert an ad above the category header by editing the coresponding category style you are using (in your case category template 8) – http://screencast.com/t/fURElqQw and adding the ad do_shortcode for a custom ad just below the php tag like this – http://screencast.com/t/GtNsqsK2jFU3

echo do_shortcode('[td_block_ad_box spot_id="custom_ad_1"]');

Result – http://screencast.com/t/1Mtqyh2gS8
Make sure you have an ad placed in the custom ad your are using from Theme panel->Ads

If you want to put an image as background in the category header you could use this code, changing the image to what you want but making it a link would require further custom work

.td-category-header {
background-image: url("http://wallsdesk.com/wp-content/uploads/2016/11/Dubai-Photos.jpg");
}

Result – http://screencast.com/t/iIZLEYRN

Thanks

Simion C.
tagDiv Staff

Hi,

You can change the color of all the breadcrumbs using this code (change the color to what ever you want), enter it in Theme panel->Custom Css

.entry-crumbs a, span.td-bred-no-url-last {
color: yellow!important;
}

To disable latest articles edit your page and select the default template in page attributes – http://screencast.com/t/jRReunp3eh

Thanks and Happy New Year!

Simion C.
tagDiv Staff

Hi,

Please follow this topic here – https://forum.tagdiv.com/topic/strange-chinese-symbols-replaced-icons-and-arrows/ and edit the htaccess file by adding the code from the link. After you add the code in htaccess, please make sure you clear cache as it will be affected by it and also reset the cdn files.

Thanks

Simion C.
tagDiv Staff

Hi,

It is possible if that is what you want, just edit the code of the normal ad – http://screencast.com/t/1H9ztW9GVmtT (insert the link you want and the image you want – best if you use the same size for the image like the ad)

Thanks

Simion C.
tagDiv Staff

Hi,

You can change the opacity of the image using this code, just enter it in Theme panel->Custom Css (Default is .7 change it with values between that and 0, closer to 0 meaning less opacity) Please let me know if this dows not work for you

.td_block_big_grid_5 .td_module_mx12 .td-module-thumb a::before {
opacity: .3;
}

Result with code added – http://screencast.com/t/uIuY0ZBx
Thanks

Simion C.
tagDiv Staff

Hi,

The first part of the code with the page id does not apply because your page id is different – http://screencast.com/t/k84PD09H you should edit it so it looks like this (it will apply only for that page id) and the white space will dissapear

.page-id-3104 .td-header-style-1 {
display: none;
}

Result – http://screencast.com/t/pWXCrn7hwvM Please let me know if this does not work for you.
Thanks

Simion C.
tagDiv Staff

Hi,

Enter this code in Theme panel->Custom Css

.td-post-template-3 .td-post-header .entry-title {
margin-bottom: -30px;
}

Result – http://screencast.com/t/ylZrn3VGqZOp
You can edit the margin-bottom as you like
Thanks

Simion C.
tagDiv Staff

Hi,

Right now the blured images are stretched because the source images size is too small – http://screencast.com/t/rvUyRIBxx
Make sure that the image uploaded in the Media library is of the required size – http://screencast.com/t/1tCwyEAn Then be sure to select the image size you want in the insert media into post – http://screencast.com/t/cmuSiDYZUE

Thanks

Simion C.
tagDiv Staff

Hi,

Please specify what header style are you using, a screenshot or link and what exactly are you trying to achieve so i can provide a better solution for you.

Thanks

Simion C.
tagDiv Staff

Enter this code in Theme panel->Custom Css

.td-post-next-prev span {
color: black;
}

Please let me know if this does not work for you
Thanks

Simion C.
tagDiv Staff

Hi,

To remove the date showing on blocks and modules go to Theme panel->Block settings – http://screencast.com/t/ycvbmhy3iz The date will still show on the post page unless you disable it here – http://screencast.com/t/oMzIpQfaa9 If this is not what you wanted to know please provide more detailed information.

Thanks

Simion C.
tagDiv Staff

Hi,

Please make sure to update the social counter aswell as all the other plugins found in the theme package downloaded from theme forest – http://www.screencast.com/t/0r883t9N – to the latest version. Also if you use a child theme update it too. More about the update process here – https://forum.tagdiv.com/how-to-update-the-theme-2/

Thanks

Simion C.
tagDiv Staff

Hi,

You can disable the bottom article Like/Tweet in Theme panel->Post settings->Sharing – http://screencast.com/t/1ujRfHL5L

Thanks

Simion C.
tagDiv Staff

Hi,

That post template displays the image as background, you can change the general post template in Theme panel->Post settings – http://screencast.com/t/O0aAMlBsIuzc This will apply to all the posts if a post template is not set on individual posts – http://screencast.com/t/7QKppIhmb

Thanks

Simion C.
tagDiv Staff

Hi,

You have to enter the code before or after the menu name (Startseite, News etc) – http://screencast.com/t/rA6bVWieAKhttp://screencast.com/t/JJInfvubc Please tell me if this does not work for you.

Thanks

Simion C.
tagDiv Staff

Hi,

You can set a theme background color or image in Theme Panel-> like this – http://screencast.com/t/KMZE47CC3, this transforms the site in the boxed version – https://forum.tagdiv.com/background-introduction/
Also you can set a different background for each category, in Theme Panel->Categories – http://screencast.com/t/sGBFB5uJCDUF

Thanks

Viewing 25 posts - 20,551 through 20,575 (of 20,678 total)