Search Results for 'css'

Results from the Forum
Simion C.
tagDiv Staff

Hi,

Maybe that will be possible with some CSS. Please provide a link to your website and detailed information about what space you need removed. I will try to give you a solution. Some screenshots with comments will also be helpful if possible, in addition to the website link.

Thanks

pixelwunder
tagDiv Member

OK we found the error. The tagdiv CSS Generator don’t unsterstand comments 🙁

Simion C.
tagDiv Staff

From what I can see online the CSS text-shadow would be supported by most browsers, so there should not be any problem with that code
https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow
https://www.w3schools.com/cssref/css3_pr_text-shadow.asp

Simion C.
tagDiv Staff

Hi,

That would be the cascade effect in which CSS works. If multiple CSS code is used for the same element then the first one will be loaded firs, then the second etc. The black background color is the initial color set for that header style, you could remove it form the theme stylesheet
https://www.screencast.com/t/Vcg3ho5y6Ph
Also there is a default color set for the menu items
https://www.screencast.com/t/ck9TcE4kUV42
Try removing these codes and see how it looks. If you used custom code try entering it directly in the theme stylesheet so it will be loaded faster.

Thanks

Bogdan B.
tagDiv Staff

Hello,

You can see the break point sizes in the advanced css section under the custom code tab of the theme panel: https://www.screencast.com/t/qIZPowEr8nnT

Thank you!

Simion C.
tagDiv Staff

Hi,

That happens because CSS loads in cascade, first the black color will be loaded then then white one. The black demo has custom design to be black, if you want to make modifications to it and remove the black color, you could do it in the demo stylesheet directly instead of overriding it.

This is where the black color is set for the theme elements, if you want remove some of them or make the modifications you want
https://www.screencast.com/t/e4vafpPBh

Thanks

Simion C.
tagDiv Staff

Hi,

I believe that is a background color set for the block, edit the page with the tagDiv composer and select the block, then check in the CSS tab->background color
https://www.screencast.com/t/DvVT3bAl

Thanks

Bogdan B.
tagDiv Staff

Hello,
Css cannot be rewritten too many times. There comes a point where a custom css cannot rewrite the original code anymore. I cannot provide any code that will rewrite the css. You will have to remove it from your custom css and remove the padding from style.css:
https://www.screencast.com/t/4lotTy1k Once both these paddings are removed, the images go full width: https://www.screencast.com/t/xcJ767Mm9
The bar on the right is a scroll bar. That can be removed like so:

::-webkit-scrollbar {
display: none;
}

Thank you!

Simion C.
tagDiv Staff

Hi,

We are aware of this issue and we will fix it in the next update. Indeed when setting a background color for the text with title, the text will be behind the background. Please enter this code in Theme panel->Custom CSS section

.td_block_text_with_title .td-element-style {
z-index:-1;
}

It will fix the issue – https://www.screencast.com/t/xo0nLdfM7Bb4

Sorry for the inconvenience.
Thank you!

Simion C.
tagDiv Staff

Hi,

You could use a code like this one for example
https://www.screencast.com/t/HxnQVfHp
It will change the color of the font in a text with title element as you wish. Use the color you want and enter it in Theme panel->Custom CSS

.td_block_text_with_title h4 {
color: yellow;
}

Thanks

Simion C.
tagDiv Staff

Hi,

Indeed there seems to be an issue with the mobile theme accent color, I will add this issue on our list and it will be fixed as soon as possible.

In the meantime I could give you a code to color the elements you want. This code will color the post content links and the scroll button with the color you want
https://www.screencast.com/t/Db0CzAQ1j

.td-post-content a {
color: #f30f0f;
}
.td-scroll-up {
background-color: #f30f0f;
}

Enter it in Theme panel->Mobile theme->Custom CSS section. I will provide additional code if you want until the issue is taken care of. Sorry for the inconvenience.

Thank you!

blukid
Participant
#0

I’d like to add a text-shadow to the white text on both the home page and category pages.
Can you provide some cross platform/cross browser css to apply this?

It should apply to the title text on the full-width header of the following pages:
https://cubanarts.xyz/
https://cubanarts.xyz/category/visual-arts/

I tried the following but it only works in Chrome.
Thanks.

/*! CATEGORY ARTICLE TITLE DROP SHADOW */
.td-full-layout .td-category-grid-fl .td_block_big_grid_fl_1 .td-big-grid-post .entry-title,
.td-full-layout .td-stretch-content .td_block_big_grid_fl_1 .td-big-grid-post .entry-title {
font-size: 32px;
line-height: 38px;
text-shadow: 1px 1px #000;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
-webkit-text-shadow: 1px 1px 1px #000; /* for chrome */
-text-shadow:1px 1px 1px #000; /* for all browser*/
-moz-text-shadow:1px 1px 1px #000; /* for firefox */
-o-text-shadow:1px 1px 1px #000; /* for opera */
-ms-text-shadow:1px 1px 1px #000; /* for ie 9+ */
-khtml-text-shadow:1px 1px 1px #000; /* for gecko based browser*/
-webkit-filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.9));
-ms-filter: “progid:DXImageTransform.Microsoft.Dropshadow(OffX=1, OffY=1, Color=’#000′)”;
filter: “progid:DXImageTransform.Microsoft.Dropshadow(OffX=1, OffY=1, Color=’#000′)”;
}

AlexSoyer
Participant
#0

Hello all,

https://todaycycling.com/tour-de-france/

We do have a situation, can you see the “black & blue main menu” load ? It happens before our child theme css is applied on the page.

I wanted to know how I can deregister the script that adds the Newspaper’s CSS from /themes/Newspaper.

Thank you 🙂

Rumail Abbas
Participant
#0

how to change the background color in the following block (on style.css)?
https://snag.gy/NgPBYf.jpg

Simion C.
tagDiv Staff

That top ad should be an ad of a maximum of 696px, that is the width of the post content. Seems that ad is larger and it displays below the sidebar.
I could give you a code to position the whole sidebar lower
https://www.screencast.com/t/1KysHjqBRQDc
You can use the value you want in the code, then enter it in Theme panel->Advanced CSS in the desktop section

.single .td-main-sidebar {
top: 320px;
}

Simion C.
tagDiv Staff

Hi,

Indeed, our AMP plugin does not feature a menu at the moment. This is similar to the Yoast SEO website which is leading in SEO solutions
https://yoast.com/social-media-optimization-with-yoast-seo/amp/
Adding a menu will be considered in the future, the plugin is still at the beginning.

The logo will be the one set for mobile, so make sure you have one set
https://www.screencast.com/t/APN4AoJf4Ld

A custom CSS section for AMP does not exist at the moment. This will be added in coming updates. If you want to add custom CSS you could add it directly in the plugin. This is a similar topic
https://forum.tagdiv.com/topic/custom-css-in-amp-posts/

Thanks

Shamdin
tagDiv Member

Thanks for the help I forgot to tell you that it is another plugin and I will add the css to see if it works

masterskg
tagDiv Member

ok , now that actually worked …Jesus ? Thank You Simion

Now onto the next issue , the sidebars , if you go into any of my articles, the ad over the title gets overlapped by the ad on the side bar , this happens only on desktop. Prior to the update , i was able to move the sidebar using the css option in the widget which is no longer available due to the new update

tagdivstar
tagDiv Member

Ah I see…

Then… Are there any ways to make the width of featured images to a certain percentage and make them centered??

I tried below CSS but it does not work very well…

————————-
.td-image-wrap {
max-width: 70%;
margin: 0 auto;
}
————————-

The images themselves became 70% width and centered but other parts (category name, post title, author name and date) stays where they were…

Please see this picture.

Simion C.
tagDiv Staff

You could use another code that will override that one, like this
https://www.screencast.com/t/YgpFbvQNV

.td-blog-fitness .td_module_wrap:hover .td-module-title a {
color: blue !important;
}

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

Simion C.
tagDiv Staff

That modal is not the theme modal so I could not say why it displays like that
https://www.screencast.com/t/Z6OTlZ7VBB3
I could give you a code you could try to make the modal a little lower when opened
https://www.screencast.com/t/J3MZyhtJ

#myModal .modal-content {
margin-top: 200px;
}

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

drcocci@gmail.com
Participant
#0

Hi,
afer updating the theme and plugins (td-composer, td-multi-purpose, etc… included) I can’t see old phone and support dialog icons anymore, in my contact page http://www.uroblog.it/contatti/
This is the code of contact page above:
[vc_row full_width="stretch_row_content td-stretch-content"][vc_column][tdm_block_hero title_text="Q29udGF0dGk=" title_size="tdm-title-bg" image="120576" button_icon="tdc-font-fa tdc-font-fa-chevron-right" tds_button="tds_button3" button_size="tdm-btn-lg" button_icon-1="tdc-font-fa tdc-font-fa-comments-o" tds_button-1="tds_button3" button_size-1="tdm-btn-lg" block_width="tdm-width-1200" content_align_horizontal="content-horiz-center" content_align_vertical="content-vert-top" background_color_a="rgba(0,0,0,0.85)" background_color_b="rgba(22,112,191,0.85)" image_height="847" image_width="1280" block_height="300" tdc_css="eyJhbGwiOnsibWFyZ2luLXRvcCI6Ii00OCIsImRpc3BsYXkiOiIifX0=" tds_title="tds_title1" image_size="100% auto" image_alignment="" background="rgba(30,115,190,0.3)"][/vc_column][/vc_row][vc_row][vc_column][vc_row_inner tdc_css="eyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ=="][vc_column_inner width="1/2"][tdm_block_icon_box icon_id="tdc-font-tdmp tdc-font-tdmp-old-phone" title_text="Q29udGF0dGElMjB1biUyMEF1dG9yZQ==" title_tag="h3" description="SSUyMG5vc3RyaSUyMHByb2Zlc3Npb25pc3RpJTIwc3Bhemlhbm8lMjBkYWxsJUUyJTgwJTk5dXJvbG9nbyUyMGluJTIwc2Vuc28lMjBzdHJldHRvJTJDJTIwYWwlMjBnaW5lY29sb2dvJTJDJTIwbmVmcm9sb2dvJTJDJTIwc2Vzc3VvbG9nbyUyQyUyMHBpc29jb2xvZ28lMjBlZCUyMGFsdHJvLi4lMjBhcHByb2ZpdHRhbmUlM0ElMjBlbnRyYSUyMGluJTIwY29udGF0dG8h" button_text="I nostri Autori" icon_size="80" title_size="tdm-title-md" button_size="tdm-btn-lg" button_icon="tdc-font-fa tdc-font-fa-long-arrow-right" tds_button="tds_button5" content_align_horizontal="content-horiz-center" tds_icon1-color="eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiIjZjU3YThiIiwiY29sb3IyIjoiI2Y5YjkxYyIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZDogLXdlYmtpdC1saW5lYXItZ3JhZGllbnQoLTkwZGVnLCNmOWI5MWMsI2Y1N2E4Yik7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KC05MGRlZywjZjliOTFjLCNmNTdhOGIpOyIsImNzc1BhcmFtcyI6Ii05MGRlZywjZjliOTFjLCNmNTdhOGIifQ==" tds_icon_box="tds_icon_box1" tds_icon1-shadow_color="rgba(33,185,209,0.1)" tds_icon1-shadow_size="40" tds_icon1-border_radius="50" tds_icon1-hover_border_radius="50" icon_padding="2" tds_icon1-shadow_offset_vertical="14" tds_title1-hover_title_color="#1e73be" button_url="/autori/" tds_icon_box1-icon_box_url="http://www.uroblog.it/autori/" tdicon_id="tdc-font-tdmp tdc-font-tdmp-old-phone"][/vc_column_inner][vc_column_inner width="1/2"][tdm_block_icon_box icon_id="tdc-font-tdmp tdc-font-tdmp-support-dialog" title_text="Q2hpZWRpJTIwYWQlMjBVcm9ibG9n" title_tag="h3" description="VnVvaSUyMGZhcmUlMjB1bmElMjBkb21hbmRhJTIwcmlnaWFyZG8lMjB1biUyMHRlbWElMjB0cmF0dGF0byUyMGRhJTIwVXJvYmxvZyUzRiUyMElsJTIwbm9zdHJvJTIwbWlnbGlvcmUlMjBlc3BlcnRvJTIwaW4lMjBtYXRlcmlhJTIwcmlzcG9uZGVyJUMzJUEwJTIwcGVyc29uYWxtZW50ZSUyMGVkJTIwaW4lMjB0ZW1waSUyMHJhcGlkaS4u" button_text="L'esperto risponde" icon_size="80" title_size="tdm-title-md" button_size="tdm-btn-lg" button_icon="tdc-font-fa tdc-font-fa-long-arrow-right" tds_button="tds_button5" content_align_horizontal="content-horiz-center" tds_icon1-color="eyJ0eXBlIjoiZ3JhZGllbnQiLCJjb2xvcjEiOiIjZjU3YThiIiwiY29sb3IyIjoiI2Y5YjkxYyIsIm1peGVkQ29sb3JzIjpbXSwiZGVncmVlIjoiLTkwIiwiY3NzIjoiYmFja2dyb3VuZDogLXdlYmtpdC1saW5lYXItZ3JhZGllbnQoLTkwZGVnLCNmOWI5MWMsI2Y1N2E4Yik7YmFja2dyb3VuZDogbGluZWFyLWdyYWRpZW50KC05MGRlZywjZjliOTFjLCNmNTdhOGIpOyIsImNzc1BhcmFtcyI6Ii05MGRlZywjZjliOTFjLCNmNTdhOGIifQ==" tds_icon_box="tds_icon_box1" tds_icon1-shadow_color="rgba(33,185,209,0.1)" tds_icon1-shadow_size="40" tds_icon1-border_radius="50" tds_icon1-hover_border_radius="50" icon_padding="2" tds_icon1-shadow_offset_vertical="14" tds_title1-hover_title_color="#1e73be" button_url="/esperto-risponde/" tds_icon_box1-icon_box_url="/esperto-risponde/" tdicon_id="tdc-font-tdmp tdc-font-tdmp-sms-phone"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]

Regards
Dr. A. Cocci

dubaiposter
Participant
#0

I just installed AMP plugin and looks like a lot of features are missing. The logo is missing on the frontend, there is no menu, and no way to edit CSS for AMP. Here’s the link of the site: https://dubaiposter.com/blog/

Bogdan B.
tagDiv Staff

Hi,
Please use this custom css code:

.home .entry-crumbs{
display:none!important;
}
.home .td-crumb-container{
margin-bottom:0;
padding-top:0
min-height:25px;
}

Thank you!

adrian_van_hal
tagDiv Member

Hello Catalin,

How to create text on a page from which the font type and size can be changed by settings in the theme panel. I do not prefer to work with CSS. Its quite elementary to change a webfont without using CSS code I think?

Many thanks,

Ad

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