Search Results for 'css'

Results from the Forum
Calin
tagDiv Staff

Hi,

Please move the custom css from Custom code > Custom css in Advance code> Desktop in in this way will apply only on desktop version and will look good in movie version too.

Thank you!

Calin
tagDiv Staff

Hi,

If you want to style the BBPress button yu can try this custom css
.bbp-form .button {
background-color: #1e8cbe;
color: #FFF;
font-family: "Oswald", "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
text-shadow: none;
font-size: 26px;
font-weight: bold;
}

.bbp-form .button:hover {
background-color: #1e8cbe;
color: #FFF !important;
}

Set the code in Newspaper >Theme Panel>Custom code>Custom css

Thank you!

bricolage-facile
Participant
#0

Dear all,

I set up my home page without any problems, but when I try to change just the image (Text is OK, CSS is OK…), but nothing updated, 🙁

Many thanks for your help 🙂
Cédric

cosmacelf
Participant
#0

I’m trying to change a couple of font parameters for my excerpts, but these seems to be getting overridden in the css somewhere. This is the change I’m making:

ex

And this is what the css looks like – as you can see, my 10px changes get overridden.

ex

centennia
Participant
#0

Hi,

Please check this screenshot: http://prntscr.com/niah91. I’m testing the latest version of the theme in a local installation so I have no link to give you.

Block 1, which I’m using in the sidebar, has a margin-bottom that is way too big. What do I do? Is there a css I can apply?

Thanks.

Lola

creps
Participant
#0

Hello!

I wanted to ask you a question, to see if you can help me. Currently in the different posts I’m doing, I’m using the “Subtitle” section since I need to use it and it appears under the post title and it goes well.

I would like for SEO to not penalize me, that the subtitle field was an H2, but that I do not change at all the current style that appears.

How could I make the subtitle with the H2 tag so that it does not penalize SEO and does not change the CSS style?

wspeed
Participant
#0

Hi Team,
I made a recording of the problem… https://www.screencast.com/t/pjfYOsblZ

I didn’t customize at all the css at this point, just used Dental Studio theme, replaced the logo for a same size and added the menu.

What should I do so it gets good on top?

Should I remove that Home and it might work?

Thanks.

willkar
tagDiv Member

Hello nachding.

Try going to TD Composer, clicking on that row and scroll down and try to stretch it out (play with this feature). Then, in the same row, go to CSS and select a background color or play with a overlay color 1 and 2 to achieve what you want 🙂

garyjones
tagDiv Member

Hi Calin

Apologies about the web site but it’s all sorted now. However, I am confused about the new Envato-compliant version of Newspaper 9.7.2 and the use of child themes.

Given I have modified module 8 and the corresponding CSS where does this now sit in terms if a child theme, as the related block/module includes has moved to a “legacy” folder within wp-content>plugins etc.

This seems to me that I cannot create a child and my customised block will be overwritten each time their is an update.

Is this the case? If so, how do you recommend getting around this?

Thanks

Best

Gary

GiacomoLaw
Participant
#0

In amp, my header image is tiny: https://www.google.co.uk/amp/s/www.thenerdystudent.com/2018/11/putio/%3famp

However when it’s served off my server: https://www.thenerdystudent.com/2018/11/putio/?amp

Normal sized. I’m serving the header image off the Jetpack cdn, photon.

Is there any way I can only customise the AMP CSS to make it normal sized? Where can I find the AMP only style sheet?

Thanks

moenuddin
Participant
#0

Dear sir,
I want to find footer css on theme panel but not found. I want to customized footer pannel. Please give me suggestion.

dragoerny
tagDiv Member

Hi Calin (or other)

I thought that the problem was now solved but I can see that it sometimes happens.
On front page – Everything ok
On a page – Everything ok
On a post – OK, in desktop mode, but fails in mobile mode.

If you look at : http://dragoernyheder.dk/2019/04/26/usaedvanlig-varme-kan-give-os-aarets-foerste-sommerdag/ and try to refresh the page the header suddenly disappears.

Can you perform you magic again. I have tried to debug the CSS and from my chair it looks okay.

jayjay
tagDiv Member

Hi Calin,

Your link is not working. I wasn’t talking about a border, sorry for the confusion. I mean the rounded corners of the photo within the author box. I want the photo to be in a square.I have a author box on the homepage sidebar. There I can change this setting (round/square) with TD composer. On other pages/posts I don’t know how to change it. Can I change it in settings or do I need to create custom CSS.
https://snag.gy/QTMvCD.jpg

Thanks!

mmorhulets
Participant
#0

Hi guys!
Could you please help me?

everything is great and add basic JPG banner isn’t a problem.
But how can I add HTML5 banner to Ad place?
I have an archive with html, css, js, jpg files and I confused

zekavr
tagDiv Member

OK, that’s ok. But can you explain me procedure when I want to downgrade the theme from 9.7.2 to 9.5 ? Only with that theme version, I don’t have any problem, all after having some bugs. Now in 9.7.2. I try to write some custom CSS in theme panel-mobile theme-custom CSS, and theme just can’t remember settings after savings.
Do I need to delete first theme folder, or first to deactivate plugins and delete them and after that to change theme with old and install plugins?

  • This reply was modified 7 years by zekavr.
barelliluca
tagDiv Member

So now the full list of css mods is


.td-big-grid-post .td-module-thumb img {
max-width:100%!important;
}
.td_module_mx1 .td-module-thumb .entry-thumb {
max-width:100%!important;
}
img {
width:auto!important;
}

@media (min-width: 1019px) and (max-width: 1140px) {
.td-header-style-8 .td-header-sp-logo img {
width:80%!important;
}
}

@media (max-width: 767px) {
.td_block_image_box .td-image-box-row {
margin:0!important;
}
}

barelliluca
tagDiv Member

Oh by the way. I’d like to help out reporting mistypes in style.css such as a typo in row 446 “auto/9;” on img. How can I do that?

barelliluca
tagDiv Member

Hi Simion,
thank you for your kind answer!
I’ve followed your advice to no avail since perspective:unset is already called in main.css but doing so I’ve found what’s the real problem.
It seems that td-composer is calling td_legacy_main.css which overrides main.css. I’ve tried to deregister and dequeue with this to no avail:


function dequeue_legacy_css() {
wp_dequeue_style('td_legacy_main');
wp_deregister_style('td_legacy_main');
}
//add_action('wp_enqueue_scripts','dequeue_my_css');
// add a priority if you need it
add_action('wp_enqueue_scripts','dequeue_my_css',100);

So now I’m making several manual overrides such as


.td-big-grid-post .td-module-thumb img {
max-width:100%!important;
}

I understand that you’ve got to implement the legacy files for those that have made heavy modifications to their themes but can you kindly implement a way to disable single legacy parts via theme panel (or functions.php) please?
Best,

– Luca

adescalis
Participant
#0

Hi,
I would like to resize the height of a video but only on desktop view and not on mobile view. Here is an exemple : https://zoominvest.fr/2019/04/25/le-produit-du-moment-offre-un-gros-coupon-chez-agapan-solutions/

I would need the height to be 80% on desktop but 100% on mobile.

Thx for your help

The CSS added in the page :

.td-post-content iframe {
height: 100%!important;
}
.td-post-content .su-responsive-media-yes {
padding-bottom: 100%;
}

Mick Pacholli
tagDiv Member

I built the site with Visual Composer and am using latest versions of Newspaper 9 (as far as I know, I keep getting notifications that you have updated 9 but my site says I have updated versions of it and the latest WordPress version.

The buttons are missing, they were there, I tried using tagdiv composer but it broke the css? of the image blocks in the VC layouts.

http://www.tagg.com.au

knaggsy
Participant
#0

Since the update my child theme no longer works correctly.
Post pages while showing on the Home page do not open as single post pages.
If I activate the Newspaper theme only then the loop works correctly.
Why is my child Theme not working?
How do I customise functions without the safety of a child theme?
How do I customise CSS safely outside the Theme without the safety of a child theme?

knaggsy
Participant
#0

Since the update my child theme no longer works correctly.
Post pages while showing on the Home page do not open as single post pages.
If I activate the Newspaper theme only then the loop works correctly.
Why is my child Theme not working?
How do I customise functions?
How do I customise CSS safely outside the Theme?

Simion C.
tagDiv Staff

Hi,

I can’t see that ad at the moment – http://prntscr.com/ngri2j
Maybe something could be done with CSS. Could be the same issue as in this topic
https://forum.tagdiv.com/topic/mobile-theme-menu-issue-2/ so that code may work.

Thanks

Calin
tagDiv Staff

Hi,

Please download the Newspaper theme v9.7.2 again and re-update the theme
https://tagdiv.com/update-newspaper-theme/ this will solved your problem with homepage.

If this is what you need -> https://www.screencast.com/t/mmHfVs70lu then please add this custom css in Theme panel>Custom code>Custom css
.td-ss-main-sidebar{
background: #cccccc;
}

Thank you for your understating!

Catalin
tagDiv Staff

Hi,

You need to remove the hashtag or your FB link if you want that icon to go away. If is not what you mean, provide more details and your website URL so I can provide a CSS for that.

Thank you!

Viewing 25 results - 10,351 through 10,375 (of 33,436 total)