Search Results for 'css'

Results from the Forum
Simion C.
tagDiv Staff

Hi,

The code I gave you in another topic positions them there. You could enter those codes in the advanced CSS section, for desktop and tablets maybe
https://www.screencast.com/t/ZGg5C58U
That way it will not apply on mobile. That would be best instead of creating a code to position them again in a different way.

Thanks

Arthur
tagDiv Member

Thanks for your hint 😉

I added this CSS code :

@media only screen and (max-width: 840px) {
table.responsive {
margin-bottom: 0;
overflow: hidden;
overflow-x: scroll;
display: block;
white-space: nowrap;
}
}

Look at the result: https://prnt.sc/kszgmh
Do you know how to make possible to have only the possibility to scroll left to right, without having a border at the bottom (and without needing to scroll up to down)?

JayKayCZ
Participant
#0

Hi team, could you please help me with custom css for ad banners in the header and footer to have it in the center?
http://tvguru.cz/
Thanks,
Jiri

Thanks for the reply and info.

Our color was set to #1e90ff, but the blocks still don’t follow the rules of that.

The CSS code that’s been provided didn’t work however. The hover color is still green.

Will I need to add custom CSS for each of these different blocks, or will this be fixed in a new release of the theme?

Screenshots:
https://www.dropbox.com/s/mo8n90kbn5rw8z4/Screenshot%202018-09-10%2010.48.18.png?dl=0
https://www.dropbox.com/s/aul84q4m548q8rn/Screenshot%202018-09-10%2010.39.56.png?dl=0

Thanks again.

Simion C.
tagDiv Staff

Hi,

Seems to be hidden by the theme for some reason, can’t say exactly why. A code like this will make it visible
https://www.screencast.com/t/QuxmqdIBA
I will add this on our list and see why it is set as it currently is. Thank you mentioning it and sorry for the inconvenience.

.woocommerce .page-title {
display: block;
}

This code can be entered in Theme panel->Custom CSS code section.

Thanks

Simion C.
tagDiv Staff

So you entered the video in the post content or in the template in the end?

If it is in the post content it will be there regardless of device used to view the website.
Maybe it could be hidden for mobile devices with CSS, on AMP it will not work however, code will not apply.

If you left it in the template you can hide it per device, most elements can be hidden in the CSS tab and selecting the view port you want. Example
https://www.screencast.com/t/bh1P37dunRC
https://www.screencast.com/t/FYgsu25P64

If you switch to the standard post format the play icon should not be displayed anymore. If it does, it could be caching or even browser cache. Try to clear both if possible and check again.

When you set a featured video a featured image will be displayed from the video. You can remove that image and set a different one if needed, while keeping the featured video.

If I misunderstand please correct me.

Simion C.
tagDiv Staff

Hi,

So you want to change the color in the footer for the email link only? You can use some CSS for that.
You could do something like this – https://www.screencast.com/t/2IMXIPzw

.td-footer-wrapper a[href^="mailto"] {
color: yellow;
}

Change the color as you want, then enter it in Theme panel->Custom CSS code section.

Thanks

Simion C.
tagDiv Staff

Hi,


@Watashi10
You could use some CSS for that, the theme panel will allow a color to be set as background, but not a gradient.
There are quite a few gradient generators if you want to use one, for example
http://www.colorzilla.com/gradient-editor/

Apply it like this – https://www.screencast.com/t/S5Xk15t0gotE

.td-header-main-menu {
your code here
}

More about gradients here – https://www.w3schools.com/css/css3_gradients.asp

Also a guide for the browser inspector tool here
https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/

Thanks

Simion C.
tagDiv Staff

Hi,

Please check this element here – https://www.screencast.com/t/OLErsu1Ck
Edit the page in the composer and click on that element, check in the CSS background settings. Click on remove background image and save the page
https://www.screencast.com/t/sfk5dJODzQR2
Then check if the problem is fixed.

Bogdan B.
tagDiv Staff

Hello,

Usually the space should be there unless you removed it with a custom css code. Please provide a link to your site so we can inspect it.

Thanks

Catalin
tagDiv Staff

Hello ecstaticperson,

You should use the code below and place it in Theme panel -> Custom CSS area.

.tdb-featured-image-bg{
background:none!important;
}

The result is here -> https://www.screencast.com/t/K6aE1frN

Thanks for the message!

Bogdan B.
tagDiv Staff

Hello,
This happens because each item is treated as a separate Ul list when ading sub-lists and they will receive the bottom margin as well.
You can remove the bottom margin using this css code:

.td-post-content ul{
margin-bottom: 0;
}

You can dd the code in the theme panel under custom css.

Thanks

Simion C.
tagDiv Staff

Hi,

That could be done with some CSS. For the search use the hidden setting
https://www.screencast.com/t/0EVoZhSE8k
For a more accurate solution we need to test with your menu, we could give you codes to try but they might not work for you or not work properly.

For example this code should align the menu to the right and allow you to increase the padding left-right between the menu items
https://www.screencast.com/t/So5OGry7g80
You can adjust the value of the padding and test, default is 14px

.td-header-main-menu {
text-align:right;
}
.sf-menu > li > a {
padding: 0 18px;
}

If that does not work or is not what you wanted, please send us admin login at contact@tagdiv.com and mention how exactly you wish it to be. Include a link to this topic in the email.

Thanks

ray
Participant
#0

Hi,
Would anyone know a custom CSS to change the color of the mailto: link in
the footer only. I don’t want to change any other link colors just this single one in the footer. Thanks in advance!
~R
This one 🙂
https://ibb.co/fKKhaU

TutoDS
Participant
#0

Hi.
How to improve performance in my site (tutods.net)?
I do not know how to minify js, html and css, combine external js.
What they recommend?

ctoweett
tagDiv Member

I agree maybe separating the code is a better option, I have seen some people also removing bbpress and woocommerce codes inside the style.css file.

Silverheim
tagDiv Member

Hey Epic. Thank you. Yes, but they can maybe merge the styles (td-multi-purpose and style-9.*.*). Merging both styles reduce requests and make the website lightweight, which is great. By one hand, for whose dont use the feature, will have no impact in css weight but it will when used by the website owner. I think its a must-have feature, but not forgetting to meerge styles haha.

akozoubsky
Participant
#0

Hi, would you have ready the code to do a CSS Reset for font-family and font-size in all theme elements?

Richard04
Participant
#0

Hi there,

I’m trying to make my hyperlinks bold and underlined.

I have tried adding the following CSS in Theme Panel > Custom Code > Custom CSS:

article a:link {
text-decoration: underline !important;
font-weight: bold;
}

Firstly could you please confirm that this code is correct?

More importantly, however, the code looks like it has saved (I get the “tick”) but then it doesn’t save.

I exit and go back in and the code is missing again.

Suggestions?

Many thanks,
Richard

Edward
Participant
#0

Hi!

I’ve made my own CSS-styles to design the text output. Where I can add them in the editor to get WYSIWYG? The button insertion I don’t need, the CSS-styles I inserted using the text tab of the editor.

Thank you!

Simion C.
tagDiv Staff

Hi,

That is the space reserved for the sub-footer copyright text, the menu will be on the right.
If you don’t use a sub-footer menu, I could give you a code to make the text occupy the whole space
https://www.screencast.com/t/QA4GlvqDsGV
The code can be entered in Theme panel->Custom CSS if you should consider this solution.

.td-sub-footer-container .td-sub-footer-menu{
display: none;
}
.td-sub-footer-container .td-sub-footer-copy {
width: 100%;
}

Thanks

Alin [tagDiv]
tagDiv Staff

Hi,

The Read More button from blocks/modules should take the theme accent color you set in panel – https://www.screencast.com/t/h8mvTXfp6sa
There’s no option to change the background color for Read More button on individual blocks, sorry!
However you could use custom css in Theme Panel > Custom Css: https://www.screencast.com/t/WuUZb4NZvT

.td_module_wrap .td-read-more a {
background-color: #c63939;
}

Or you can use Flex Block on your page. It has color options – https://www.screencast.com/t/aywwSBTlAUNhttps://www.screencast.com/t/Jol4FebP

Hope it helps!

Simion C.
tagDiv Staff

All the http links should be redirected to https. I am not an expert in SSL, please check online guides and tutorials for a proper SSL implementation

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/

Maybe also contact the hosting provider assistance.

Alin [tagDiv]
tagDiv Staff

Hi,

Please provide your site url so we can inspect this and try to provide a css solution.

Thanks!

Viewing 25 results - 12,851 through 12,875 (of 33,436 total)