Search Results for 'css'

Results from the Forum
christinascotti
Participant
Header Ad - topic
#0

Hi!

I want to use the header ad but I want my logo to go fully across the top of the page and the ad to be centered below it. How do I make this happen? Custom CSS perhaps. If you go to my site mycommunity.news you can see what happening now. It’s being pushed down by the logo. I am fine with the position actually but I just want it centered. Please help! Thanks!

Tommy
tagDiv Member

Hallo Alin,
do not mind. Therefore the correct link you sent did not solve the problem.
I solved it using this modified css

.td-visible-tablet-manchette {
display: none;
/* responsive portrait tablet */
}

@media
(min-width: 768px) {
.td-visible-tablet-manchette {
display: block;
}
}

thank you.
Regards.

gfran5
tagDiv Member

Hi,

This may be what your looking for..
CSS tweak is needed to .td-header-style-10 #td-header-menu

Remove: /* margin-left: auto; margin-right: auto; */

Change: display: block;

Andrei L.
tagDiv Member

Hi

1. You can use header style 10 and remove the margins around the logo with custom css:

.td-header-style-10 .td-header-text-logo{
margin:0;
}

The result should be like here: http://screencast.com/t/KwPqcFjUGGvl

2. The size of social icons from top menu and footer can be changed using custom css: http://screencast.com/t/Qjtloicy3L

.td-social-icon-wrap i{
font-size: 18px;
width: 30px;
height: 30px
}

You can modify this values as you like.

3. To add the line between post

-in block 12 use this custom css: http://screencast.com/t/RgwLycBvzygI

.td-block-span12{
border-bottom: 1px solid black;
margin-bottom: 35px;
}

-in module 8: http://screencast.com/t/h5AM7N0Qp

.td_module_8 .item-details{
border-bottom: 1px solid black;
}

-in module 11: http://screencast.com/t/6UTSJvxMQAeT

.td_module_11{
border-bottom: 1px solid black;
margin-bottom: 35px;
}

4. We didn’t tested any plugin for that request so I can’t recommend one, this is the theme’s mega menu https://forum.tagdiv.com/menus-newsmag/ which you can use, but if you need another appearance for it you can look for a plugin.

5 For the big grid title you can use this css: http://screencast.com/t/ltBUOngPS8at

.td-big-grid-post .entry-title a{
background-color: red;
display: inline-block;
opacity: 0.8;
}

You can change the color and opacity as you like.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please try this custom css in Theme Panel > Custom Csshttp://screencast.com/t/pYito2ia

.td-post-template-default .td-post-featured-image img {
margin-left: auto;
margin-right: auto;
}

Thanks!

Andrei L.
tagDiv Member

Hi

The logo div it’s located in header style file, for example for header style 3 the file it’s header-style-3.php as you can see here: http://screencast.com/t/0hgHc5VQ The logo class is td-header-sp-logo and you can apply some css and center how you want, depending by the header style used. Here are some good information about css positioning: http://www.w3schools.com/css/css_positioning.asp
If you can’t manage to do it let us know and provide a link of your site.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Your logo looks fine blank background like you have on desktop. You can change also the background color for mobile menu using custom css in Theme Panel > Custom Csshttp://screencast.com/t/GdbfzhveFH4

@media (max-width: 767px) {
.td-header-wrap .td-header-menu-wrap-full, .td-header-wrap .td-header-menu-wrap, .td-header-wrap .td-header-main-menu {
background-color: #fff !important;
}
#td-top-mobile-toggle i, .header-search-wrap #td-header-search-button .td-icon-search {
color: #222 !important;
}
}

Hope this helps!

Alin [tagDiv]
tagDiv Staff

Salut,

Nu sunt sigur ca intelg care e problema. Un text block poate fi folosit oriunde in pagina, doar adaugi on text block folosind Visual Composer sau daca vrei il adaugi din Widgets daca vrei sa-l folosesti in sidebar – http://screencast.com/t/Odgk6pL6Z iar marimea fontului se poate customiza folosind custom css(poti folosi chiar inline) – http://screencast.com/t/2Dc0lXY6Q

<h1 style="font-size: 16px; line-height: 20px; margin-bottom: 10px;">I am text block. Click edit button to change this text.</h1>
<h2 style="font-size: 14px; line-height: 20px; margin-top: 10px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</h2>

Mersi!

Andrei L.
tagDiv Member

Hi

The theme doesn’t have an option to display different font size on mobile devices but you can use media queries to do that like in this example.

/* the query for mobile devices */ @media (max-width: 767px){
/* classes for the selected element */ .td-post-template-default header .entry-title{
/* css rule */ font-size: 28px;
}
}

Notice that this example it’s for the post title from post template default. For other elements and post templates classes will be different and you need to inspect the element (hover over, right click >
Inspect element) and target that specific classes that the changes take effect.

Thanks!

SaL
Participant
#0

I have been doing many live edits to the style.css and want to ensure folks are loading the correct version (high traffic site). So for example I save the .css as style1-1.css and force everyone to reload the new css file?

However I cannot find the file that calls the path to the style.css file in order to make these changes.

Andrei L.
tagDiv Member

Hi

You can hide the comment block title using custom css in Theme Panel > Custom Css like here: http://screencast.com/t/9IH1dq9GiCW

.td-comments-title-wrap{
display: none;
}
.comments .comment-reply-title{
display:none!important;
}

If you only want to translate this titles you have this option in theme panel> translations http://screencast.com/t/H2yxjPyYk

Thanks!

Andrei L.
tagDiv Member

Hi

You can hide the pagination using custom css in theme panel > custom css: http://screencast.com/t/jXEfSE2cPQ

.td_block_related_posts .td-next-prev-wrap{
display: none !important;
}

and you can set the number off related article from theme panel like here: http://screencast.com/t/tXCOYim0

Thanks!

  • This reply was modified 11 years by Andrei L..
Alin [tagDiv]
tagDiv Staff

Hi,

This did not happen on my side, you can try also this custom csshttp://screencast.com/t/pVzVc8wx7Y and see if it works.

.footer-email-wrap {
color: #fff;
}

Provide a link so we can take a look if this doesn’t help.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

You can change the color for woocommerce button using custom css in Theme Panel > Custom Css as the theme doesn’t have an option for this. You can try this – http://screencast.com/t/AAXhVNr00fXx

.woocommerce .product a.button, .woocommerce .product #respond input#submit, .woocommerce .checkout input#place_order, .woocommerce .woocommerce.widget .button {
background-color: red !important;
}

You need to inspect every button take the default css and change the color – http://screencast.com/t/FfnKwAiVwS

.single-product .product .summary .cart .button {
background-color: red !important;
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately the top menu was not designed for mobile devices, we try to find a better implementation for sign in/register widgets in a future update. Until then you can try this custom css in Theme Panel > Custom Css: http://screencast.com/t/cw4mTt1hSINv

@media (max-width: 767px){
.td-header-top-menu-full {
display: block !important;
}
.td-header-sp-top-menu {
display: block!important;
}
.menu-top-container {
display: none !important;
}
.td-header-sp-top-widget {
display: none !important;
}
}

Thanks!

Lucian
tagDiv Staff

Hi,

It seems that the theme rewrites some of the widget’s css rules. Use this custom css to fix it: http://pastebin.com/50z5cAP6 like this: http://www.screencast.com/t/a1JwFtAJD1

Add it int heme panel > custom css section: http://screencast.com/t/BfVd7fPx

Thanks

Alin [tagDiv]
tagDiv Staff

Hi,

If you use blocks on different rows you can set a negative margin for specific row/column:
Before – http://screencast.com/t/EIPvPZMwpByH
After – http://screencast.com/t/LjQiFe7kTPhttp://screencast.com/t/1JbJXCREir

If you use blocks in the same row, it can be done only with custom css.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please check this without any plugins active, leave just Visual Composer active, clear cache and purge your files if you use CDN. If you minify css/js disable it. Also paste a link so we can take a look.

Thanks!

jonybigude
Participant
#0

Hi!

I wonder if there is a way to control the size of the entry thumbnails per category? If I change it via CSS, I will be applying the changes universally, that means, in the whole website. I would like to see the entry thumbnails in a different way but only in one category. Is there a way to do that?

Thanks in advance!

Lucian
tagDiv Staff

Hi paiano,

I’ve replied you on themeforest dashboard.


@Shashank
Shekhar
Remove this css: http://screencast.com/t/iNjPn4NUuHiQ

Thanks for the message!

psalm91
tagDiv Member

Thanks. It works.

Here is the Custom CSS Code for others to use:

.white-menu #td-header-menu .td-normal-menu .sub-menu {
-webkit-box-shadow: -6px 10px 6px -6px rgba(0, 0, 0, 0.4);
-moz-box-shadow: -6px 10px 6px -6px rgba(0, 0, 0, 0.4);
box-shadow: -6px 10px 6px -6px rgba(0, 0, 0, 0.4);
background-color:#F2F2F2;
}

.td-header-sp-top-menu .top-header-menu .sub-menu {
-webkit-box-shadow: -6px 10px 6px -6px rgba(0, 0, 0, 0.4);
-moz-box-shadow: -6px 10px 6px -6px rgba(0, 0, 0, 0.4);
box-shadow: -6px 10px 6px -6px rgba(0, 0, 0, 0.4);
background-color:#F2F2F2;
}

flaubi
Participant
#0

Hello,

I’ve made some changes in the sizes of fonts via the theme panel. How can I make the changes do not appear on mobile screens. As I increased the size of the font titles, in the mobile the font is absurdly large.

Thanks,

Flaubi.

Andrei L.
tagDiv Member

Hi

To change the color of background title add the css style inline like here: http://screencast.com/t/pIMrRhTg

<h4 class="block-title" style= "border-color:blue;">
<span style= "background-color:blue;">
MOST POPULAR
</span> 

Here is the result: http://screencast.com/t/pIMrRhTg

Thanks!

  • This reply was modified 11 years by Andrei L..
InstallationComplete
tagDiv Member

Alin, Thanks for the quick response. A -60px seemed to work for me, I’ll have to experiment with different size images to make sure it’s consistant.

One problem I ran into was on Mobile. When in portrait mode, the caption still covers the image, when in landscape it looks similar to desktop viewing.

Is there css specifically for portrait mobile?

Thanks in advance.

Alin [tagDiv]
tagDiv Staff

Hi,

You can try this custom css in Theme Panel > Custom Csshttp://screencast.com/t/mfYvbdy8a

.mfp-bottom-bar {
bottom: -35px;
}

Thanks!

Viewing 25 results - 27,526 through 27,550 (of 33,436 total)