So you mean the view count. That is in the template here (example for post template 1)
– https://www.screencast.com/t/NqwmUig0pna8
Adding something before or after that code should display it in the posts that use that post template.
Hi,
Without the header ad header style 1 will look like this
– https://www.screencast.com/t/wRSb9GTtP
With the margins removed from the logo the total height will reduce
– https://www.screencast.com/t/ureorrAk
So maybe this is what you wanted, the code can be entered in Theme panel->Custom CSS
.td-header-style-1 .td-header-sp-logo {
margin: 0;
}
Thanks
Hi,
The link of the image has no property by default, you could add it here
– https://www.screencast.com/t/pNjN9rWK9xPi
It will apply to the links you set in the image box
– https://www.screencast.com/t/KFkL0RRP3Hvb
The file can be modified in a child theme so the modification will not be lost after an update
– https://forum.tagdiv.com/the-child-theme-support-tutorial/
Thanks
Hi,
I believe you mean Visual composer (now WPBakery page builder). The front-end capability of this composer is disabled in our theme, this has always been the case. There could be problems using the WPBakery front-end builder with the theme, or to create posts
– https://forum.tagdiv.com/how-to-use-visual-composer/
Having both WPBakery and the tagDiv composer active could create problems in some cases.
However 500 errors can be caused by insufficient resources, mainly WP-memory. For most users a value of 256M would be enough
– https://forum.tagdiv.com/requirements-for-newspaper/
Try to increase this if it’s necessary and possible. Contact the hosting provider to modify it for you if needed.
Hi,
There is a small margin bottom below the logo, 9px to be more exact
– https://www.screencast.com/t/gUus1ZdHMbx
Removing that margin bottom and increasing the top margin result:
– https://www.screencast.com/t/T8de9i4PHhRz
– https://www.screencast.com/t/nlQy4DdY
Code used (works for header style 1)
.td-header-style-1 .td-header-sp-logo {
margin: 37px 28px 0px;
}
I could take a look if this doesn’t work, for a more accurate and faster solution. If possible post a link to the website.
Thanks
Hi,
@Seashore The header styles are predefined, they look like this
– https://forum.tagdiv.com/header-styles/
Can’t have a template for every example out there. Simple modifications can be possible with CSS.
Provide a link to your website and I will take a look and try to center the menu if that is what you want.
Thanks
Hi,
Seems there is another image below the ad, it is initially of 1x1px but the theme makes it 100%
– https://www.screencast.com/t/PhkueeqZ
Maybe that is part of the ad, if it’s intended to be there I could give you a code to let it display as intended (1×1), basically invisible
– https://www.screencast.com/t/gKMPc1rWb
.td-a-rec-id-custom_ad_1 img {
width: auto;
}
Thanks
Hi,
Please send us an email at contact@tagdiv.com and provide admin access and the activation key. We will take a look.
Thanks
Hi,
You can enter ad codes in text elements, like column text or text with title. The ads will appear, give it a try
– https://www.screencast.com/t/8nrY4nCFWe
Please let us know if you have more questions or you need help with something.
Thanks
The lifestyle demo does indeed set some colors in it’s stylesheet
– https://www.screencast.com/t/XmWp56JdhCYI
This may prevent theme panel colors from applying. All the demos contain customization, more or less. You can modify the demo stylesheet if needed, then make a backup of it.
What colors are you referring to exactly? For example the header menu underline is made transparent in the demo here
– https://www.screencast.com/t/hzFjBDXs
This header customization is linked to a specific header style most of the time. As long as header style 1 is used the demo modifications will apply for the header.
Hi,
What header style are you using? With CSS that could be possible. An alternative would be header file modifications.
The ad space in the header is reserved, not displaying an ad will not re-arrange all the other header elements.
The ads will display differently depending on style used
– https://forum.tagdiv.com/header-styles/
Please mention the header style or provide a link to your website and details about how you want it to look.
Thanks
Hi,
The image seems to be there, but it has a 1×1 size for some reason
– https://www.screencast.com/t/MWmHixwkjA
Regenerating the thumbnails should solve the problem, given the fact that GD library is available
– https://www.screencast.com/t/wr9uzfWC
Please check and let me know.
Hi,
There would be an explanation for that, you are uploading a thumbnail of the image, not it’s full size
– https://www.screencast.com/t/2pBJH7fP31vd
– https://www.screencast.com/t/XJ64goDph9
Please check if that is the case.
Thanks
Hi,
The font settings are in the theme panel, not in the post edit screen.
– https://forum.tagdiv.com/font-customization/
And they should change, the theme panel font settings are general. For example this setting will affect all the paragraphs in the post content
– https://www.screencast.com/t/GFOfOaNlxkB
There are settings for headings, list, quotes.
Post titles are per template used (with a general font setting if needed)
– https://www.screencast.com/t/mSGh1Cdam8w
Inspecting one of your posts, I see the default Open sans font is used for post paragraphs. It should change once you use the setting I mentioned.
The size of the font may not work, seems the text is also wrapped in a span after the initial paragraph, for some reason
– https://www.screencast.com/t/80YOZJQMJ
In this case, since it seems most posts are the same way, you could use some CSS
– https://www.screencast.com/t/sAkd4PeQ
.td-post-content p span {
font-size: 25px!important;
}
This can be entered in Theme panel->Custom CSS code section.
Please let me know if you need help or have more questions.
Thanks
Hi,
So you want to display country flags in the menu. What are they supposed to do? Do you have the icons? You can display font awesome icons but there are no country flags I believe
– https://forum.tagdiv.com/how-to-add-icons-in-menu/
Hi,
The header styles mentioned above don’t have any limits for the image used
– https://forum.tagdiv.com/header-styles/
Any size can be used. The website you mention uses a video on a loop in the header
– https://www.screencast.com/t/WOBzseXK
That will work in the theme ad spots, not as a logo.
The height will depend on the image you use as logo, it will adapt to it. The header could be modified with some CSS if required.
That is possible. There are even tools to choose the colors
– https://www.w3schools.com/colors/colors_picker.asp
Maybe choose a color similar to the block headers for example
– https://www.screencast.com/t/YJ78QpVD
You could also experiment with shadows, there are plenty of generators available
– https://html-css-js.com/css/generator/box-shadow/
– https://www.screencast.com/t/nibOPkNb
A small guide here – https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Hi,
Could you provide a link to a page where this happens? In pages you can create galleries within a text element
– https://forum.tagdiv.com/topic/need-to-insert-a-grid-gallery/
When clicked the images should be opened in a modal with the full image size. Same as here
– https://demo.tagdiv.com/newspaper/td-post-aston-villa-beat-liverpool-to-join-arsenal-in-the-fa-cup-final/
Thanks
Hi,
@Mirkoko For full or increased width stretch the row containing the ticker shortcode
– https://forum.tagdiv.com/the-mobile-theme/
Hi,
The optional mobile theme plugin is activated. When this plugin is active, the content you have on desktop will not be displayed. Only what is entered in the mobile editor for that page will be displayed
– https://www.screencast.com/t/Py58SSSz
At the top there will be a grid displaying three of your featured posts
– https://forum.tagdiv.com/featured-posts-2/
If there are no such posts found, the grid will not be displayed. At the bottom there will be a latest articles section containing your posts ordered by latest.
More about the mobile theme here – https://forum.tagdiv.com/the-mobile-theme/
The plugin should be used if you intentionally want to display a different version of the website on mobile, a simpler and lighter version.
So if you want to display the same content from desktop on mobile, deactivate the mobile plugin.
Thanks
You have to activate the theme in order to use the cloud library. The theme can be activated locally so it should not be a problem.
Hi,
Different in what way exactly? If the mobile theme plugin is not active, then the same content from desktop will be displayed across all devices.
If you could mention some more details I will check it out.
Hi,
The theme is indeed compatible with the woocommerce plugin. In the theme panel template settings you can set sidebars for woocommerce pages
– https://www.screencast.com/t/elgAaOns
The woocommerce widgets will appear once the sidebar is set for the woocommerce pages
– https://www.screencast.com/t/qX9vqQ9MF
I believe this is what you referring to. If I misunderstand, please correct me.
Thanks
Hi,
So you have problems using the composer. The first thing to check would be the theme requirements, system status section
– https://forum.tagdiv.com/requirements-for-newspaper/
It is imperative that the parameters mentioned in the guide are configured properly. Insufficient resources can cause many issues with the theme or the plugins, if needed ask your hosting provider to increase them as specified. Then check if the issue is solved, chances are it will be.
If there is no need for modifications in that matter, in some cases the solutions from these topics worked for composer problems, you could give them a try if possible
– https://forum.tagdiv.com/topic/gray-page-tagdiv/ (this worked in many cases)
– https://forum.tagdiv.com/topic/javascript-error-td-composer-wont-load/
Let us know if any of these suggestions fixed the problem and which one, or the problem remains.
Thanks
Hi,
It should appear there for pages. Is it active? please check in the wordpress plugins section, or in the theme plugins panel
– https://www.screencast.com/t/DJcT757oT
– https://www.screencast.com/t/IXrsps4h
When active it will also appear in the pages section
– https://www.screencast.com/t/1lUULxpljkqn
In the page edit screen as well – https://www.screencast.com/t/zGwzSfHcPH
Thanks