Hi,
If you want to use custom css to move it you can do it in Theme Panel > Custom Css: http://screencast.com/t/kS5GpZ5D
.single_template_5 header .entry-comments-views {
right: 380px;
}
Also if you don’t want to use css you make this change in the code:
-cut header from single_template_5.php – http://screencast.com/t/eEk6FbM18EEJ and paste it in loop-single-5.php – http://screencast.com/t/bpTFzgJzyU and it will look like default post template and style 1 – http://screencast.com/t/khTa3qPA
Thanks!
Hi,
Please send an email at contact@tagdiv.com and provide wp-admin so we can take a look and also paste a link to this topic so we can know who you are.
Thanks!
Hi,
You can disable Author box from Theme Panel > Post Settings: http://screencast.com/t/wb7isABV3 but it will be disabled for all articles.
You can hide it via css for specific posts using post ID: http://screencast.com/t/XomB4CiKXK0k
.postid-xx .author-box-wrap {
display: none;
}
You can check post ID like this: http://screencast.com/t/efodiPKCCnKW
Thanks!
Hi,
Unfortunately there is no option in Theme Panel to change font for this block/module(in version 5 of the theme Custom Typography section will be changed and will be added more options), but you can use this custom css: http://screencast.com/t/eK0mGyabPW2
.td_mod10 .entry-title a {
font-size: 18px;
}
Thanks!
Hi,
I have added this in our todo list and it will be fixed soon as possible.
Glad that you have manage to solve it and thanks for sharing!
Hi,
You need to edit your homepage and bellow Big Slide you have the Ad box and just remove that block(not row is just a block added in the Big Slide row) – http://screencast.com/t/yiaW3VZE
Let me know how it goes!
Thanks!
Hi,
Where you want to place those banners?
In the page content you can use Ad box and split the row – http://screencast.com/t/0HkZNgiv – http://screencast.com/t/im1jULxfC
Please provide more details if this is not what you mean.
Thanks!
Hi,
Unfortunately this issue appears on post style 4 when is used background. You can see in our demo how it should look this post template(parallax) – http://demo.tagdiv.com/newspaper/popular-people-who-everyone-seems-to-love/
if you use background the image is not enlarge. You can use post style 3 if you need that look(like in your link) and it will work also with background – http://demo.tagdiv.com/newspaper/strong-growth-and-engagement-across-our-community/
Please also note that in version 5 of the Newspaper this will be fixed, the background(color, image) will not appear in parallax template so the image will not be affected.
Thanks!
Hi,
I have checked your site and did not found any issues with mobile menu. Did you solved the issue?
1. I guess that you refer to the mobile menu, you have to click to the arrow for parent categories – http://screencast.com/t/kd8pMwKJ as if you click on the category, the link will be loaded. I’m not sure if this is your issue please provide more details.
2. You have a logo in the sticky menu – http://screencast.com/t/bUL577qLZKp
3. Also on mobile sticky menu you have a logo: http://screencast.com/t/Jtc2rJDlO
Or if you refer here – http://screencast.com/t/QcVH7p3Q1uG1 the theme doesn’t have an option for this and you will need custom modifications, unfortunately we cannot provide custom work at this time, sorry.
4. You can hide dropdown arrows via custom css in Theme Panel > Custom Css: http://screencast.com/t/3dvI3xwesew
.td-header-menu-wrap .td-icon-menu-down {
display: none;
}
.sf-menu {
margin-left: 0px;
}
Also please provide more details about menu items hover as I have checked your site and didn’t found any issues. When you hover an item, it open submenu or megamenu.
5. Create your menus from appearance > menus section: http://screencast.com/t/5ntqLpyXaaJ
Add your items to your custom menu: http://screencast.com/t/Ff4S0quiv
Set a page like this and choose your menus and publish: http://screencast.com/t/dAfaYkWmmk
Then use the page ID an set it as mega menu for your menu item: http://screencast.com/t/yphGpD46V
Result: http://screencast.com/t/TEVNDFmT
Thanks!
Hi,
Please try this custom css in Theme Panel > Custom Css: http://screencast.com/t/eVJ0sVkdLy
.td-container {
z-index: auto;
}
.td-post-header {
z-index: 1;
}
Thanks!
Hi,
Yes, you can use Style 2 , the Footer 1 columns remain predefined and add other widgets in Footer 2 and 3.
I’m not sure what you want to change. Do you want to use the default footer and also add more widgets besides default?
Please provide more details about what you want to change.
Thanks!
Hi,
Please provide your site url so I can inspect this an provide an accurate solution.
Thanks!
Hi,
1. Please use do_shortcode function after pagination in the archive, category and page template and display a custom ad there: http://screencast.com/t/epSdJBuFR5 – http://screencast.com/t/FAbXy7GEe4d
Result: http://screencast.com/t/amRJfbxy
2. The theme doesn’t have an option to display social share on page and you will need custom modification for this. Unfortunately we cannot provide any custom work for the moment as we work hard on development, updates, fixes and support so the time and resources don’t allow us to provide custom work. Also you can add likes button in pages – http://screencast.com/t/buJaJuGEomS7
3. You can add block 12 (with “Read More” button) in your page please see our demo: http://demo.tagdiv.com/newsmag/block-12/
4. Please provide your site url so I can inspect this. Also you can check this without any plugins active, leave just Visual Composer active, clear cache and see if it works.
Thanks!
Hi,
If you want to add your own widgets in the footer area you have to change the footer style from Theme Panel – http://screencast.com/t/E58Yv2TuQdX and then add widgets to it from Widgets section.
Thanks!
Hi,
Glad that you figured out for those post templates.
Thanks!
Hi,
You can use custom css to hide it: http://screencast.com/t/aVwI2JWSrxb8
.td-post-sharing-top .td-classic-twitter {
display: none;
}
Also the “To top” background color is the same with the theme accent color, but you can change it with css code: http://screencast.com/t/t7pgZhh0
.td-scroll-up-visible {
background-color: red;
}
Thanks!
Hi,
Please create your tab block in a page – http://screencast.com/t/qYESfNAcj8 copy the shortcode – http://screencast.com/t/ndjZ6C9ni and use do_shortcode function to display it in the post template file(if you want to replace default comments in single – default post style) – http://screencast.com/t/ntYbQUfvP
echo do_shortcode('your shortcode')
Result: http://screencast.com/t/dnhEnM4rs
I have checked this using blocks, you can use plugins shortcode instead of block shortcode – http://screencast.com/t/IFlq3eidE
Thanks!
Hi,
Please try this custom css if you want to change the background when you hover a link: http://screencast.com/t/rXVDVlNOgN
.td-footer-container .widget_pages .page_item a:hover{
background: white;
}
.td-footer-container .widget_meta a:hover {
background: white;
}
If you want to change the link color you can try this code: http://screencast.com/t/4MnBnYpK
.td-footer-container .widget_pages .page_item a:hover{
color: red;
}
.td-footer-container .widget_meta a:hover {
color: red;
}
Please paste the code in Theme Panel > Custom Css: http://screencast.com/t/Nv4aGyXlmZr
Thanks!
Hi,
You also can ask at the plugin support for this – https://wordpress.org/support/plugin/contact-form-7 and plugin’s docs – http://contactform7.com/best-practice-to-set-up-mail/
Thanks!
Hi,
I have checked your site and there is an issue also with image on mobile, not only with title – http://screencast.com/t/GZgeKEznR2N
Like you can see you have to change the height of the image for mobile, you can test this custom css, also you may create you own I only make a suggestion: http://screencast.com/t/daVBdR6s0Mp
@media (max-width: 767px){
.page.single_template_6 #td-outer-wrap .td-header-wrap {
height: 400px !important;
}
#td-full-screen-header-image {
height: 500px;
}
.page .td-full-screen-header-image-wrap #td-full-screen-header-image .td-backstretch{
height: 500px !important
}
.td-post-template-6 .td-post-header {
bottom: 70px;
}
}
With this css you can target the title and meta .td-post-template-6 .td-post-header
Thanks!
Hi,
Unfortunately the background will not be displayed when Homepage Post block is used in a page like you can see on our demo the background image is not displayed there even it is added as site background – http://screencast.com/t/07iNarroTx – http://demo.tagdiv.com/newsmag_fashion/
Thanks!
Hi,
Unfortunately if you use a header style with full menu this will not change to a boxed layout and you will need custom work for this. You can try another header style without full menus.
Thanks!
Hi,
I have checked your site and didn’t found any issues there – http://screencast.com/t/01gtkJr5HJx2
Did you solve the issue?
Also if you want to use another footer style you can change it from Theme Panel: http://screencast.com/t/s7c63qnGQ you can use for example Style 2 to keep Footer 1 column predefined and add your widgets in Footer 2 and 3 from widgets section – http://screencast.com/t/DcPYsQWqQOi
Thanks!
Hi,
Please provide more details about this and check it without any plugins active, leave just Visual Composer active and also clear cache. Let me know!
Thanks!