Search Results for 'css'

Results from the Forum
frankcf
Participant
#0

Hi,

I’m trying to replicate the home page used on the Travel Demo:

https://demo.tagdiv.com/newspaper_travel/

But whatever I do, I can’t figure out how to do it using Visual Composer. Seems like there is some custom/hidden CSS somewhere, but I can’t find it.

Any tips?

Maximuz12
Participant
Broken CSS - topic
#0

Hey guys, please help. My site has its CSS broken. >> https://fantasybrasil.com/cartola-fc/cartola-fc-raio-x-da-2a-rodada/

I know a probable solution would be to disable plug ing by plug in and figure out which one might be doing this, but I have so many that this option seems like a bad one….

It was working fine till today.

Thanks

saketsays
tagDiv Member

Hi Simon,

I tried what you suggested however, it didn’t work.

Currently, the site has following entry in custom CSS

.td-social-pinterest { display: none }
But pinterest icon is still visible, can you please take a look?

jfrere
tagDiv Member

Hi, it’s working. Now need the css for the text.

Simion C.
tagDiv Staff

Hi,

If you mean this dark shadow – https://www.screencast.com/t/2vq6ZqSQ you could remove it with a code like this – https://www.screencast.com/t/OexSZZYiuW
This is the code used, it must be entered in Theme panel->Custom Css

.homepage-post
.td-image-gradient-style8:after {
display:none;
}

Thanks

jfrere
tagDiv Member

It works with the slide, but not with the big grid. Removed the slide to make things easier. Please give me the css to modify the big grid gradient.

  • This reply was modified 9 years by jfrere.
Catalin
tagDiv Staff

Hello jfrere,

If you want to change the parameters from the gradient which applied at the feature images on the big Grid, you should use a bit of CSS code and change the following parameters. Use the code below and add your color code you like.

.td-image-gradient:before{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

Thanks for your understanding!

Simion C.
tagDiv Staff

Hi,

It is quite complicated it seems to do this with css. It seems that you or the plugin have managed to include the custom menu inside the existing menu. Please try the code provided below and enter it in the Theme panel->Advanced Css in the phone section
https://www.screencast.com/t/2Z5DwoLqdzB6
The result should be like this – https://www.screencast.com/t/tcsjTkK3hPi

.td-header-wrap .td-header-main-menu {
padding-left:0;
padding-right:0;
background-color: white!important;
}
.td-header-style-10 #td-header-menu {
margin-top: -54px;
}
.mega-menu-toggle {
height: 54px!important;
padding-top:9px;
}

Thanks

Catalin
tagDiv Staff

Hello hanakousuke,

I have inspected your website and I saw that you are using the Widget -> Custom Menu, right -> https://www.screencast.com/t/D4KcrocjtU? Notice that widget has own functionality to display all categories and subcategories, being a WordPress widget and the theme does not have any such an option that allows you hide the subcategories for the page, sorry! A quick solution in this regard would be to use a bit of CSS code to hide them. Try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.widget_nav_menu .sub-menu {
display:none;
}

Hope this helps!

Thanks for the message!

Lee
Participant
#0

I am also using the post template style2 and want to decrease the font size of the header. I have looked at the source code and it looks like it is ‘h1’ that needs changing but not sure whether this can be done via theme fonts or the css code.

justinjl
tagDiv Member

Any more information on this error? Worked fine before I switched to your theme and I know you say its a plugin error and not the theme but I’m simply pasting in youtube links to post. I can’t figure out how to get rid of 360% Important! in custom css to overide it. Works if I edit it Chrome inspector though, dropping it down to 75%

edlie
tagDiv Member

I see..thanks for the css code 😀
Yup that scrollbar, is there anyway to disable the grid to scroll?

See exquisite-taste-magazine grid in home..the grid not showing scroll when in small screen..using newsmag though

Simion C.
tagDiv Staff

Hi,

That menu displays like that because the menu items are set to float left one after the other. You could try the code provided below to make the menu items centered
https://www.screencast.com/t/L5iI8EBhO
It must be entered in Theme panel->Custom Css

.menu-td-main-menu-container {
text-align: center;
}
.menu-td-main-menu-container .sf-menu li {
float: none;
display: inline-block;
}

About the Big grid I don’t understand exactly what you mean. All the elements are responsive by default. The Big grid does have a scroll that appears when needed
https://www.screencast.com/t/XP1wP7t3dP

Thanks

Simion C.
tagDiv Staff

Hi,

Try entering the code that you used – https://www.screencast.com/t/QEOrY1nrA506 directly in the theme’s style.css file. This is located in the main theme folder. You can open it with a text editor and place the code at the end
https://www.screencast.com/t/ajf51cvgZ6s

Thanks

Simion C.
tagDiv Staff

Hi,

If you want to increase the font size for the text that is entered by the user in the search field, you could do it with a code like this
https://www.screencast.com/t/yoZPeTd1EdC
You just need to enter the code in Theme panel->Custom Css

#td-header-search {
font-size: 18px;
}

Thanks

Bogdan B.
tagDiv Staff

Hello,

If you are looking for page speed improvement please note that page speed is a very personal issue. It starts from the host that you use, to the optimization made and all the way down to the content on your site.
Please use this guide to improve page speed: https://forum.tagdiv.com/how-to-make-the-site-faster/ and please check this link for a note on speedbooster: https://forum.tagdiv.com/topic/tinymce-advanced-and-other-various-disabling-speed-boster/
Using speedbooster is described in the page speed guide.
The links above are not found anywhere in the code as they are. I have pointed the call to the fonts above. The second and third links are the visual composer css and the main theme css file. You should read the speedbooster instructions on how to move render blocking css to the footer. But this does not influence page speed greatly. The images are the ones slowing down your site. Almost 80% of the page speed improvement will come from image optimization and of course a decent host.

Thank you!

joeydekoning
Participant
#0

I’m using a 3-column layout but would like the middle column to appear first in mobile view. Is there a way to do this with css in the theme, similar to bootstrap example below?

https://scotch.io/tutorials/reorder-css-columns-using-bootstrap

h.mendoza
tagDiv Member

Hello,

The picture you sent is exactly what I wanted but when I imputed the copy and pasted code into Custom CSS in theme panel it didn’t alter anything. It also flagged the line with “!important” (line 2) and simply states “use of !important”. Not sure if that has something to do with it?

/Users/h.mendoza/Desktop/Screen Shot 2017-05-17 at 3.12.03 PM.png

Cavemantraining
tagDiv Member

Hello, thanks for the reply. I’m starting to understand now that the demo must be doing something other than changing just the Theme Panel settings. I basically installed the them with the black demo on a development site, not the live one, and copied the settings over.

I’ve been able to adjust the CSS to get the black background, but that does nothing for the rest of the look. I’m guessing installing a demo includes another css file?

How can I get the full Black Demo look on my live site without overwriting anything? It’s a live site that I don’t want to be messing with or adding anything extra if you know what I mean?

thanks in advance.

MattiaVe
tagDiv Member

Ciao Catalin, you have a lot of work, I’m shure about that, so you read too quick…
🙂
the question is:
which is code in customized css for hide comment counter when = 0?
(for show it if > zero)
thank you

elevatestudy
Participant
#0

Hi, I followed a previous post on hiding the search bar using CSS, but I have found that even with hiding it, it flashes on the menu when I click on other pages. What can I do to fix this?
Here is the site: dev.elevate.study

Simion C.
tagDiv Staff

Hi,

The post content width when having a sidebar is 696px in width
https://www.screencast.com/t/9Fga6vooDwu
Without a sidebar this is extended to 1068px
https://www.screencast.com/t/PVOhD625m
That is the width of the container that includes all the elements on the page
https://www.screencast.com/t/ploIi0zwE
You could modify the width of the container with Css only on post pages, or if you want directly in the theme stylesheet – https://www.screencast.com/t/yFgH7vzKl
I would recommend you use Css if possible and target the post, so it would not affect all the pages where the container class is used.

Thanks

EU-uutiset
Participant
#0

Hi,

See this image as reference to my question. We use this code to embed the block 21 into our posts:

[td_block_21 custom_title=”” separator=”” post_ids=”12089″ css=”.vc_custom_1493286824590{border-top-width: 1px !important;border-bottom-width: 1px !important;padding-top: 5px !important;border-top-color: #003399 !important;border-top-style: solid !important;border-bottom-color: #003399 !important;border-bottom-style: solid !important;}” tdc_css=””]

I think it works perfectly except for the border line under the embedded post. I would like to have that border at the same distance to the image as the top border. I’ve tried to set a negative padding, but that doesn’t help. Would that be possible to arrange that line somehow with custom code?

“Live” example: https://eu-uutiset.fi/2017/05/17/eun-tyollistamistukea-suomeen-nokian-entisille-tyontekijoille/

Thanks =)

Catalin
tagDiv Staff

Hello 22p,

If you want to hide the block quotes you should use a bit of CSS code to hide it. Try the code below and place it in Theme panel -> Custom CSS area.

The code is ->

blockquote {
display:none;
}

Thanks for the message!

MattiaVe
tagDiv Member

Nothing…?
I think it is very easy for your capacities..
It should certainly write a string like:
if xxx then xxx (hide) xxx
in customized css of blocks,
but I can’t do by my self…
please…

Viewing 25 results - 17,801 through 17,825 (of 33,436 total)