Search Results for 'css'

Results from the Forum
Catalin
tagDiv Staff

Hello Marco Andrade,

Also please track your SSL implementation as it can lead to problems. If you have mixed content errors in your browser console notice that it can be a cause of the issue you are facing.
Please use these guides to make the implementation properly:
http://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/
https://css-tricks.com/moving-to-https-on-wordpress/
https://yoast.com/dev-blog/move-website-https-ssl/
https://forum.tagdiv.com/topic/moving-to-ssl/

If you still have trouble with the activation or rests afterward, please contact us via email at contact@tagdiv.com and provide a link to your site and wp-admin so we can log in and investigate.

Thanks.

Catalin
tagDiv Staff

Hello,

Please notice that the main file which contains the theme’s style is style.css. If you want, you should edit that file -> https://www.screencast.com/t/N4taKnZZQ and change the code from there.

Thanks for your understanding!

Simion C.
tagDiv Staff

From what I can see you are using theme version 8.7.2 in that version the setting was not yet implemented.
If you don’t want to update I could give you a code to chnage the links colors for the inline text, like this
https://www.screencast.com/t/cOYXcJcgIu
Use any color you want, the code can be entered in the Theme panel->Custom CSS code section

.tdm_block_inline_text a {
color: yellow;
}

If you decide to update the theme to the latest version, this is a guide
https://forum.tagdiv.com/how-to-update-the-theme-2/
Check the changelog here (to bottom of the page)
https://themeforest.net/item/newspaper/5489609
Note than since 8.7.5 the multi-purpose and tagDiv composer were combined into a single plugin. Also the Cloud library plugin was introduced
https://forum.tagdiv.com/tagdiv-cloud-library-plugin/

d_alinus2004
tagDiv Member

Hello,

I folow your instruction but no succes!
I have desactivate all the plugin and the same!

I want to solve this problem:
“Eliminați resursele JavaScript și CSS care blochează redarea conținutului din partea superioară a paginii”

But i realy dont’ undretend what’s wrong.

Linda28
tagDiv Member

Hi Daltai, where did you place the css code and what size did you make your header image?

Thanks!

InstallationComplete
tagDiv Member

Not a problem. You have a great theme with amazing support. I try to take the time to submit “bugs” to help improve Newspaper.

As far as the hover state on buttons, I’m referring to sitewide. For example the 404 page (off the top of my head), that needs custom CSS.

daveml75
tagDiv Member

Can you tell me why your CSS solution is not recommended for Adsense?

Simion C.
tagDiv Staff

Hi,

Indeed, any changes made to the plugin files will be lost after an update and you will have to make them again. We will try to add an option for CSS in the panel over future updates. But for the moment the only solution would be as mentioned above.

Simion C.
tagDiv Staff

Hi,

Try to analyze the website and see what is loaded and what can be optimized. Check with GTmetrix or Google insights
https://gtmetrix.com/
https://developers.google.com/speed/pagespeed/insights/

Such flashes may be caused by the speed booster plugin in some cases, maybe you have that installed. Each custom CSS code used or additional style, or font is applied over the initial or default settings, so there could be a slight flash before the final CSS loads.

Thanks

WakeUpCallProject
tagDiv Member

Yes I have added to Custom CSS, however that loads after the theme code has loaded. Meaning it moves as the page loads

My questions is, which them file do I need to edit to make it load along with the theme?
ie. stylesheet, themeheader, etc…

Bogdan B.
tagDiv Staff

Hello,

Please do not post your envato key here as this is a public forum and others have access to it.

Also please track your ssl implementation as it can lead to problems. I see you have mixed content errors in your browser console. It can be a cause of the issue you are facing.
Please use these guides to make the implementation properly:
http://www.wpbeginner.com/wp-tutorials/how-to-add-ssl-and-https-in-wordpress/
https://css-tricks.com/moving-to-https-on-wordpress/
https://yoast.com/dev-blog/move-website-https-ssl/
https://forum.tagdiv.com/topic/moving-to-ssl/

If you still have trouble with the activation or rests afterwards, please contact us via email at contact@tagdiv.com and provide a link to your site and wp-admin so we can login and investigate.

Thanks

Bogdan B.
tagDiv Staff

hello,
you can use this css i nyour theme panel under the custom code setcion to remove the bottom margin:

.tickercontainer{
margin-bottom:0!important;
}

Thank you!

Simion C.
tagDiv Staff

Hi,

You could hide them with some CSS, the views are only displayed in the post page. Try a code like this, it should work for all the post templates

.single .td-post-views {
display: none;
}

Enter it in Theme panel->Custom CSS code section.

Thanks

Simion C.
tagDiv Staff

Hi,

At the moment a custom CSS panel for AMP does not exist, it may be implemented in the future. If you want to use CSS, the only option would be enter it directly in the plugin. This is a similar topic
https://forum.tagdiv.com/topic/custom-css-in-amp-posts/

Thanks

Catalin
tagDiv Staff

Hello 33ParkMedia,

Try using the code below and place it in Theme panel -> Custom CSS Area.

The code is ->

.td-business .td-header-style-1 .td-header-sp-logo {
float: left;
}

Thanks.

Catalin
tagDiv Staff

Hello,

The code should have to be added in Theme panel -> Custom CSS area, here -> https://www.screencast.com/t/lEUHki2lr

Thanks.

Catalin
tagDiv Staff

Hello thalesbrandao,

Try the code below and place it in Theme panel -> Custom CSS area.

.wp-caption-text, .wp-caption-dd{
text-align:left;
}

Thanks for your understanding!

Simion C.
tagDiv Staff

Hi,

That looks like an inline text element, that has an option to set a color and also hover color for the links you enter in it
https://www.screencast.com/t/7BOpoqW4z7Y

You could underline the links with a code like this for example
https://www.screencast.com/t/phm0kPYVU

The code can be entered in Theme panel->Custom CSS section, it will affect links in the inline text description.

.tdm_block_inline_text .tdm-descr a {
text-decoration: underline;
}

Thanks

imbob
Participant
#0

I want to remove page/post views from the pages/posts themselves so it is not visible to other people, but I want it to keep counting the views so I can still use the Filtering by popularity (im guessing it filters by views) and see the views when im in the page/post editor on wordpress.

Is this possible? If so.. how? I am guessing maybe some custom css could remove the views thingy just like meta info can be masked.

braind
Participant
#0

Hi,
is there any possibility to add some custom CSS on AMP post pages?

Regards
JN

InstallationComplete
tagDiv Member

I think the issue is that it’s trying to reference the font CSS in the Child Theme.

I get an error in the console.

GET http://theme.test/wp-content/themes/Newspaper-child/font-newspaper.css 404 (Not Found)

Simion C.
tagDiv Staff

That is the place, the custom CSS section. You can enter your code after the one you have currently.
The Advanced CSS sections are meant to be used if you want the code to apply for specific view ports. For example if you would like that code to apply only for desktop, and use a different one for tablets.

cruising-sea
tagDiv Member

Thank you, Simion for the quick reply. Yes, but there are many places in the theme panel.
I took a screenshot. Can you tell me where exactly? http://www.screencast.com/t/965DlquHNK2
If you mean in the CSS, then can I put it after the number 9 like in the screenshot? http://www.screencast.com/t/HBYYn6ejC316

Thank you!

Simion C.
tagDiv Staff

Maybe move the other meta instead of the new time format
https://www.screencast.com/t/Lu6RZgNDx

header .td-module-meta-info .td-post-author-name {
top:0;
}

Or do it the same with a div and class. For the mobile theme, CSS code has to be entered here
https://www.screencast.com/t/CsHYYBlQFh7

That code works for me, posts within a month
https://www.screencast.com/t/Ou41YeLbgd
Older posts – https://www.screencast.com/t/5p0PvZjvjq
How did you setup the styling ,what is happening exactly? Provide a link to the website where I can see this if possible.

cruising-sea
Participant
CSS CODE - topic
#0

Hi

I want to customize my contact form 7 with a CSS code. Can you tell me where I can put the code?

Thank you!

Viewing 25 results - 13,476 through 13,500 (of 33,436 total)