Search Results for 'css'

Results from the Forum
Catalin
tagDiv Staff

Hello saucemonsters,

I have inspected your website and I saw that you are using the module 3 to display your posts in Trending Now section of your right sidebar. If you want to hide the date from their location, you should use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS Area.

The code is ->

.td-grid-style-1 .td-post-date{
display:none;
}
.td-ss-main-sidebar .td_module_3 .td-post-date{
display:none;
}

Thanks for your understanding!

Bogdan B.
tagDiv Staff

Hello,

You can add such a border by using a css code. please add this code to your theme panel-> custom css box:
.td-header-menu-wrap{
border-bottom: 8px solid orange
}

Thank you!

joeydekoning
Participant
#0

For the Bottom Box (e.g. Grid Style 4 on Big Grid Full 10), I see that it is an an opacity adjustment to the Theme Panel –> Theme Colors –> Theme Accent Color.

Is it possible to customize the Bottom Box color without changing the Theme Accent Color?

Additionally, the Bottom Box does not fit the full size of the center image in Big Grid Full 10 when it is in a row set to “Stretch row and content (no paddings)”.

Is there a css adjustment to make the bottom box width = the width of the thumbnail?

joeydekoning
Participant
#0

I’m looking to remove the white space under Big Grid 5 and above the next content row in Visual Composer. How can I adjust this space in css?

bemibel
tagDiv Member

I solved it with more custom css

Thank you.

atozhairstyles
Participant
#0

Hi
My website atozhairstyless.com is not fully loading. I check with Hosting providers, He told me that all css files and Java scrip and Jquery files have been missing from my website. Can you please help me out of this. How to fix this issue.

Thank you

joeydekoning
Participant
#0

I’m looking to use the full page width on my homepage with a 3-col layout in the NewsPaper theme. What CSS elements can I adjust to customize the width/padding of the content columns?

simchris
Participant
#0

Hi
for those who have been emailing me via Facebook about how to use WordPress — a great learning resource is free to all at WordPress.org, called the “codex” or “official docs” for learning WP.

To wit, the section on editing the wp-config.php file explains simply how to change the name/location of your theme folder, change name of your plugins/themes folder (wp-content), and put explicit paths to your website URL which helps when moving from http to https.

See:
https://codex.wordpress.org/Editing_wp-config.php#Moving_wp-content_folder

so, this allows you to – for example:

change

/wp-content/themes/Newspaper

to

/wp-content/themes/mysitename

(need to actually change folder; and name in style.css too!)

*and*

you can go step further, and do change to wp-content to be something like

/assets/themes/mysitename

Obviously you need to clear caching, and update any CDN shenanigans, if any.

Pretty simple really. Just need to “read the friendly manual” (RTFM). 🙂

Bogdan B.
tagDiv Staff

Hi,

That means you use probably use speedbooster and have the css moved to the footer to improve page speed. Css will provide this effect. Please add the code in style.css at the very bottom of the file to have it not blink.

Thanks.

Catalin
tagDiv Staff

Hello WakeUpCallProject,

If you want to make this container to be darker, you should apply a background-color with opacity (RGBa) on this container. For more information about how this can be done, please consult here -> https://www.w3schools.com/cssref/tryit.asp?filename=trycss_color_rgba

Thanks for your understanding!

Simion C.
tagDiv Staff

Hi,

I have inspected your website and it seems to be displaying the mobile theme at the moment on some pages
https://www.screencast.com/t/rbuoWYCv
In previous topics related to this problem usually it was a caching plugin to blame. Please try and disable the plugin and check to see if the problem is fixed. Also update all the plugins provided with the theme, from the theme package – https://forum.tagdiv.com/how-to-update-visual-composer-plugin/
It is recommended to use WP Super Cache for best results, with the settings mentioned in this guide
https://forum.tagdiv.com/cache-plugin-install-and-configure/
For the Big Grids you could use a code like this, and change the values how you want
https://www.screencast.com/t/cC81UruuCFsX
This is the code used, you must enter it in Theme panel->Custom Css

.td_module_mx19 .td-module-title a,
.td_module_mx20 .td-module-title a{
font-size: 30px;
line-height: 30px;
font-weight: bold;
}

Thanks

Simion C.
tagDiv Staff

Hi,

I see what you are referring to. This seems to be caused by a link present in the post content
https://www.screencast.com/t/0xwQLtfkS
https://www.screencast.com/t/Y59RAhVJ0kKJ
Please try the code provided below, and it should make the link display properly on mobile
https://www.screencast.com/t/Q0AcnwH1

.single .td-post-content p a {
word-break: break-word;
}

The code must be entered in Theme panel->Mobile theme->Custom Css
https://www.screencast.com/t/wdf5eaLR
Please let me know if this is a working solution for you.

Thanks

Bogdan B.
tagDiv Staff

Hello,

If you want to remove the search on the mobile menu you can simply use a css code to remove it.
Add this code in the theme panle-> custom css box:
@media(max-width:767px){
.header-search-wrap{
display:none;
}}

If you use the mobile theme plugin you must add the co0de in the mobile theme section (the very last menu in the theme panel)

Thank you!

Catalin
tagDiv Staff

Hello WakeUpCallProject,

I have inspected your website and I saw that you are using the Big Grid 4 for your top of the homepage. If you want to display in full width the text of your meta info container, you should use a bit of CSS and make this container to be 100%.

The code is ->

.td-grid-style-1 .td-big-thumb .td-big-grid-meta {
width: 100%;
}

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

Thanks for your understanding!

Simion C.
tagDiv Staff

Hi,

You can try the tool provided in this topic to compile your files
https://forum.tagdiv.com/topic/tool-to-compile-css/

Thanks

Bogdan B.
tagDiv Staff

Hello,

you probably altered a line height attribute in your custom css. Please check for any line height change in your code or in the theme panel-> fonts section.

Thank you!

Bogdan B.
tagDiv Staff

Hello,
You can center the menu items on header style 12 by using this css code in your theme panel-> custom css box:
.sf-menu{
margin-left: auto;
margin-right: auto;
display: table;
}

Thank you!

Bogdan B.
tagDiv Staff

Hello,

Please add this css to your theme panel->custom css box:

.td-image-gradient-style8:after{
display:none;
}
.td-post-template-8 .td-post-header{
background-color:transparent;
}

Thank you!

morlando
tagDiv Member

Can you post the CSS and php code you used to create it? I’ll look at it for you.

Abdulrahman
tagDiv Member

Hello,
You’re right this problem happened after using speedbooster plugin ,
I will exclude the style.css from the speedbooster plugin .
Thank you very much for your help 🙂

bemibel
Participant
#0

The text on social share is not centered in the middle height of the box.

I attach you a picture of it.

View post on imgur.com

As you can see, the text is not vertically centered.

Is there any css that can solve it?

Thank you.

simchris
tagDiv Member

What I do here is “remove” the sections of the style.css I’m not using, like buddypress, woocommerce, etc.

Vishal
Participant
#0

Hi What setting/css i need to a page css, if I want only sticky menu to be displayed not expanded header.

baztanet
tagDiv Member

Hi,

I don’t have any custom CSS or any plugin installed.
The webpage it’s located in http://nabarralde.eus/.
Can I write here WordPress background access? Or do I need to write the password in a specific way?

Thanks,

Catalin
tagDiv Staff

Hello Imagineer,

It seems that your style.css do not apply to your website. I suggest you make a new fresh install from scratch via FTP way because this is the surest method in this regard.

Thanks for the message!

Viewing 25 results - 18,026 through 18,050 (of 33,436 total)