Search Results for 'css'

Results from the Forum
Anonymous
tagDiv Member

To move the logo to left side, Go to your theme panel > custom code > custom css then paste this code there :

.td-business .td-header-style-1 .td-header-sp-logo {
float: left;
margin: 5px 15px 0 0;
}

To change the main menu height, pase this code in your custom code section :

.td-header-wrap .td-header-menu-wrap-full {
height: 45px !important;
}
ul.sf-menu>.td-menu-item>a {
line-height: 45px;
}
@media (min-width: 768px) {
.header-search-wrap #td-header-search-button .td-icon-search {
line-height: 45px;}
}

Anonymous
tagDiv Member

@ds-2, Go to your theme panel > custom code > custom css then paste this code there :


.td-business .td-header-style-1 .td-header-sp-logo {
float: left;
margin: 5px 15px 0 0;
}

Catalin
tagDiv Staff

Hello rudhihadhi,

You sohuld try using the code below and place it in Theme panel -> Custom CSS area.

.td-newsmag-magazine .td-post-template-default{
box-shadow:none;
}

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

Thanks.

Simion C.
tagDiv Staff

By default the category tag is not displayed on that module, when viewing from mobile. Also I forgot to mention, that code should be entered in Theme panel->Advanced CSS in the desktop section and tablets. On smaller devices it may not work properly.

In order to position the tag like that I used a fixed value, because it is dependent on the module thumb. The thumbnail will not remain the same size for all devices. A solution that would work on all devices would be to position the tag in the left top corner
https://www.screencast.com/t/IfnYFr4a7a
https://www.screencast.com/t/9PR3ESbD

Catalin
tagDiv Staff

Hello,

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

The code is ->

.td-trending-now-display-area{
height:30px;
}

Thanks.

Simion C.
tagDiv Staff

Insert it in Theme panel->Mobile theme->Custom CSS code and it will apply to all the paragraphs in the post content, on mobile.

Simion C.
tagDiv Staff

Hi,

Indeed this is unusual, the art creek demo is designed the same and this issue is not happening on Firefox. Please try to temporarily remove the custom CSS code you have in the theme panel affecting the image box. Check if this solves the issue.

Thanks

Simion C.
tagDiv Staff

Hi,

So you would like tot remove the page title from pages, when the page with title template is selected
https://www.screencast.com/t/pp6ttajh
That could be done with a code like this
https://www.screencast.com/t/OefAsAuv
Enter the code in Theme panel->Custom CSS

.page-template-page-pagebuilder-title .td-page-title {
display:none;
}

Thanks

ctoweett
tagDiv Member

@Bogdan B. Using Header style 12 with the local news demo, my search and social media icons appear like this even with cache cleared http://prntscr.com/idtrzf. I was forced to use some custom CSS to reposition them. Try to inspect the site (URL is in my profile) and remove the code in the inspector for both icons and see. It looks something like this

@media (min-width: 768px) {
.td-icon-search {
margin-top: -12px;
}
.td-header-sp-top-widget {
margin-top: 11px;
}
}

drjeff_007
tagDiv Member

Hello Bogdan,

I looked at all the page options and none of them create a look I want on the page.

Is there CSS code I can add in to remove page title so that I don’t mess up the look of my page?

Thank you.

Simion C.
tagDiv Staff

Hi,

Regarding the comments, you could change the font for all the elements in it with custom code, like this
https://www.screencast.com/t/2NdIMesS
Try it out, enter it in Theme panel->Custom CSS

.comments .comment-reply-title,
.comments .logged-in-as {
font-family: Georgia, Times, “Times New Roman”, serif;
}

For that module excerpt use a code like this
- https://www.screencast.com/t/jDtx197rxsdj

.td_module_12 .td-excerpt {
font-size: 21px;
line-height: 37px;
}

Thanks

Catalin
tagDiv Staff

Hello Truealeth,

Notice that task involves doing such additional customizations and we cannot provide something like this at the moment, sorry! As a hint, you should check the style.css file and search inside it what kind of CSS you want and change it.

Thanks for your understanding!

Bogdan B.
tagDiv Staff

Hello,

As you may already know, the speedbooster plugin will work with other plugins if they are added to that array or simply removed the compatibility code altogether, but it will not be able to move all of the css or js to the footer. It is only guaranteed to work properly with the plugins found originally in the compatibility list. You will have to try other methods to move the js and css for the ones that speedbooster cannot move.
http://www.wpbeginner.com/wp-tutorials/how-to-move-javascripts-to-the-bottom-or-footer-in-wordpress/

Thank you!

Bogdan B.
tagDiv Staff

Hello,

You can add a bottom border with css. You will need to provide a link to your site so I can inspect it though so I can provide a proper code.

Thanks.

Oana1973
tagDiv Member

The post content text. Textul continutului postarilor este foarte marunt si mi s-au plans cititorii. Cred ca este 16 px si as dori sa vad cum arata cu 18 sau 20. Va rog sa-mi scrieti exact codul pe care are trebui sa-l inserez in casuta CSS de la tema mobila. Va multumesc!

Bogdan B.
tagDiv Staff

Hello,

1. The block title is controlled for each block in particular as well as the ajax filter(the list of categories)
Please read this guide: https://forum.tagdiv.com/block-settings-guide/
2. The same block settings alow you css options in the css tab to reduce the spacing for each block in particular.
3. You can limit the number of posts shown in categories from here: https://www.screencast.com/t/PLzDmBIDq If you use a module that shows 3 posts in a row, the total number must be one that can be divided by 3

Thank you!

Bogdan B.
tagDiv Staff

Hello,

Some links depend on the css from their respective plugin or implementation. Please provide a link to your site so we can inspect it.

Thank you!

Monokromdesign
Participant
#0

Hi.

I want to move the category tag from its position under the title to the thumb (see here)

Site is wefrb.easysite.dk

I have tried to alter the code in td_module_10, but the result is not exactly what I had in mind. Can you pls help? How should I alter the php and css in order to move the category tag?

Looking forward to hearing your answer … and: thanks for a killer theme, we are soon going live!

Best regards fra Lars

Fenix
tagDiv Member

Hello Bodgan,

I know these guides (i read them like 10-12 times) and i said that i’m not a newbie 😛
The plugin is activated (as you can see from the screenshot below) and i’ve followed every step described in the guides you linked above. Except for the second one, because i prefer to verify that every plugin work with speed booster, so i activate every single plugin manually by adding the compatibility code, here:
screen2

screenshot

Here is my custom code in speed booster:

CSS:

screenshot

– Javascript:

screenshot

Simion C.
tagDiv Staff

Hi,

Those would be quotes, these are available in the formats drop-down when creating a post
https://forum.tagdiv.com/post-formats-for-tinymce/
https://demo.tagdiv.com/newspaper/blockquotes-pullquotes/

You can color the font of the text and set a background color like this
https://www.screencast.com/t/nnEB65XyyOv

Of course you can customize the quotes further with custom CSS if needed
https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/

Thanks

Bogdan B.
tagDiv Staff

Hello,
The request is too general. What font do you want change? where? in what size?
I will provide a few example codes for you to edit to your preference:

@media(max-width:767px){
.page .td-excerpt{
font-size:20px!important
}
.page .td-module-title, .page .block-title{
font-size:20px!important
}
.td-post-content p, .td-post-content{
font-size:20px
}} 

You can add the code in the theme panel- custom css box

Thank you!

Simion C.
tagDiv Staff

Hi,

There are plans to provide options to allow customization of the font properties, for the text logo. At the moment there are no settings. It could only be changed with custom CSS or directly in the theme stylesheet. This would be with custom CSS
https://forum.tagdiv.com/topic/font-for-text-logo/
https://forum.tagdiv.com/topic/menubar-contained/
If you are having trouble with this, please provide a link to your website and mention how you want the text logo and tagline to be. We will give you a solution.

Thanks

Truealeth
tagDiv Member

Hi Catalin,

Yes, I have that already set. Is there any way to have this in modules as well?
Also, where can I find the css code of the category tags in general?

Thank you

Bogdan B.
tagDiv Staff

Hello,

You can create a page in the tagdiv composer and split the row in 3: https://www.screencast.com/t/LJddKY1K

You can add content to the rows by using this guide: https://forum.tagdiv.com/tagdiv-composer-tutorial/
This guide should help with the settings: https://forum.tagdiv.com/block-settings-guide/
If you want a block without thumbs, try blocks 9 and 10.
https://demo.tagdiv.com/newspaper/block-9/
https://demo.tagdiv.com/newspaper/block-10/

You do not need a child theme as you can use the tagdiv composer to add css to any block and page.

Thank you!

Bogdan B.
tagDiv Staff

Hello,

If by tracking you refer to letter spacing, then sorry but our theme does not have an option to adjust the letter spacing from the theme panel. You can do it with css though fairly simple.
https://www.w3schools.com/cssref/pr_text_letter-spacing.asp

Thank you!

Viewing 25 results - 14,976 through 15,000 (of 33,436 total)