Search Results for 'css'

Results from the Forum
Andrei L.
tagDiv Member

Hi

Sorry about that, I forgot p selector in css code. Replace the previous css with this one, it should work fine now: http://screencast.com/t/GGZnzPa6

.page-id-250 .td-pb-span4 .td_block_text_with_title p{
font-size: 12px;
}

Thanks!

Catalin
tagDiv Staff

Hello Matija,

If you want to change the hover color for your text from your footer, please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.widget a:hover {
color:red;
}

The result you should see here -> http://screencast.com/t/EC8ui7s2A

Thank you for the message!

Catalin
tagDiv Staff

Hello Technicss,

Unfortunately, this kind of setting is not controlled by the theme. If you want to have access to change the attribute from your post title in your link, you have to use SEO Yoast and the simplest way to do them uppercase it is to change them manually when you edit each post, like this -> http://screencast.com/t/u7pdrJgKWL -> http://screencast.com/t/NsnuOs4gKFL -> and the result you should see here -> http://screencast.com/t/9h5qYOvNFY
The plugin is SEO by Yoast -> https://yoast.com/wordpress/plugins/

Hope this helps!

Thank you for your understanding!

Catalin
tagDiv Staff

Hello emil86,

Unfortunately, you cannot have the video player to run in full width but only on the width of our theme, as you can see in our “Sport demo”, like this -> http://screencast.com/t/2ESUICCBiB If you want to have the same player, you have to use Video Playlist for YouTube from Visual Composer and place this element in stretch RAW, like this -> http://screencast.com/t/3kVSw6hez Please notice that in our demo is used background image and in this case, the layout of the theme will be automatically boxed. Also, if you do not want the padding for your playlist, you have to remove them with o bit of CSS code, like this -> http://screencast.com/t/UC7w6XLJ
-> the code -> http://screencast.com/t/YNwNw74N7f

Hope this helps!

Thank you for the message!

Bogdan B.
tagDiv Staff

Hi,

I assume you want to reduce the text are size as without a sidebar, the text are has a width of 1068px
Please provide a link to your website to I can inspect it and create the css directly.

Thank you!

Catalin
tagDiv Staff

Hello Udutronik,

If you want to have the main menu bar to be full width (“unboxed”) for header style 3 and 4 you have to use a bit of CSS code to do that. Please notice that if you want to add a background for the whole theme, the layout of this will be boxed ->this is the behaviour of the theme and if you want to change this functionality you need customization services.

The code for header style 3 is ->

.td-header-style-3 .td-header-menu-wrap-full{
background-color:black!important
}

The result is -> http://screencast.com/t/4yigIFMfd

The code for header style 4 is ->

.td-header-style-4 .td-header-menu-wrap-full{
background-color:black!important
}

The result is -> http://screencast.com/t/YxdqIFI2WxeH

Hope this helps!

If is not what you mean, please provide more details about your desired changes so I will be able to provide a more accurate response.

Thank you for the message!

Bogdan B.
tagDiv Staff

Hi Paul,

If you upload small images, then it depends on the post type you chose. DIfferent poist types will display the image differently. You can use a css trick to center your images like so:
.td-post-template-default .td-post-featured-image img,
.td-post-template-1 .td-post-featured-image img,
.td-post-template-2 .td-post-featured-image img
{
margin-left: auto!important;
margin-right: auto!important;
}

This will work for the default, template 1 and template 2 post types.

Thanks.

Andrei L.
tagDiv Member

Hi

Sorry about that, I forgot a line of css. Replace the last css code with this one, it should work fine now:

.block-title {
border-bottom: 2px solid red!important;
display: -webkit-box;
}
.block-title > span{
top: 1px;
width: 100%;
}

Thanks!

Andrei L.
tagDiv Member

Hi

The theme was designed to work only with background click link and cannot render shortcodes for background ad. To achieve that are required some customizations in td_background_render.php in order to achieve that: http://screencast.com/t/amMVV9P2 also adapted to support the new code.
This is a complex task which require good css coding skills and many tests in order to be accomplished. If you still need guidance on this or you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you as we can’t offer customization services at the moment.

Thanks!

Catalin
tagDiv Staff

Hello emil86,

If you want to have the YouTube player like our sport demo, you have to add it from Visual Composer like this -> http://screencast.com/t/H80UCU4A7c according to our documentation here -> https://forum.tagdiv.com/video-playlist-2/ If you want to reduce the padding you have to use a bit of CSS code to remove them, like this -> http://screencast.com/t/jctEXLpt
If you need more assistance in this regard, pleae provide your website URL so I can inspect it closer so I will be able to provide a more accurate response.

Thanks.

Bogdan B.
tagDiv Staff

Hi,
The top menu is hidden on the mobile menu, but you need to provide a link to your website so we can create a css code for it.
Thanks.

Catalin
tagDiv Staff

Hello Technicss,

If you want to have all your title from your website to be “uppercase”, you have to use the code below to transform them.

The code is ->

.entry-title {
text-transform:uppercase;
}

The result you should see here -> http://screencast.com/t/azEmvtv6

Hope this helps!

Thank you for the message!

dano1066
tagDiv Member

Hi Chris,

Thanks for the response. I tried putting a wildcard redirect and it ended up giving me a redirect loop error. This same thing happens when i use define(‘FORCE_SSL_LOGIN’, true);

In order to test this without bringing the site down i have implemented the following. Its working, bar the mismatch issues with the css and js. if i can figure out what causes the redirect loop on the login page it should sort the same issue when i put the global redirect

if ($_SERVER[‘HTTP_X_FORWARDED_PROTO’] == “https”)
{
define(‘WP_HOME’, ‘https://’ . $web_site_url);
define(‘WP_SITEURL’,’https://’ . $web_site_url);
//define(‘FORCE_SSL_LOGIN’, true);
}
else
{
define(‘WP_HOME’, ‘http://’ . $web_site_url);
define(‘WP_SITEURL’,’http://’ . $web_site_url);
}

teleradiopace
tagDiv Member

Hi Bogdan, thanks for your answer.
Really I don’t want to change the width of the whole page… I’d like to aling the blue block (Telepace1, Telepace2, …) on the right togheter with the other elements of the page. I think it’s a padding space issue of the single element, not of the page width. I’cant find the name of the block to modify the css.

Thanks!
Andrea

Example

Andrei L.
tagDiv Member

Hi

The easiest way it’s by using media queries with css like in this example:

@media(max-width: 768px){
.container-for-mobile{
display: none;
}
}

This code will load the same content on mobile as on desktop but will hide the container-for-mobile container on screens with the width bigger than 769px. For more details about media queries usage you can check this link: http://www.w3schools.com/cssref/css3_pr_mediaquery.asp

Thanks!

Andrei L.
tagDiv Member

Hi

Try this css in theme panel > custom code > custom css and modify the fon value as you want:

.page-id-250 .td-pb-span4 .td_block_text_with_title{
font-size: 12px;
}

Thanks!

Technicss
tagDiv Member

I try editing css files and classes but I can’t found newspaper title class in css files. What is title class name?

Technicss
tagDiv Member

I try editing css files and classes but I can’t found newspaper title class in css files. What is title class name?

Catalin
tagDiv Staff

Hello Technicss,

For a more accurate code, please provide your website URL so I can inspect it closer. You should try to add the uppercase form using a bit of CSS and target your title class -> text-transform:uppercase.

Hope this helps!

Thanks.

dano1066
Participant
#0

I have moved my site over to HTTPS. I have altered the DB as i usually do to add https to the url. This has updated all of the URLs on the site, but all of the CSS and JS files are being blocked because they are being included as http files. I dont think its a major error, but based on the help i have gotten so far people are blaming the theme for this. I have checked header.php and functins and there are no lines that could be causing this.

In rooting through header.php i found <?php echo td_global::$http_or_https?>. What triggers this to be https? Is this the cause of the site not including external files as https?

Catalin
tagDiv Staff

Hello

Okay. If you want to remove this you have to use a bit of CSS code to hide it. Please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-icon-search{
display:none!important;
}

Thanks.

Catalin
tagDiv Staff

Hello dizajn,

If you want to have the author name and the date in two different line, you have to change the display option for the first container. Please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-post-author-name {
display:block;
}

The result you should see here -> http://screencast.com/t/jklmVIkOq2ok

Thanks.

teleradiopace
Participant
#0

Hi. What is the css code to reduce padding in this place of the home page? (only there!) We’d like to aling the blu block to the right and put it near the slideshow. (see image below)

The arrows show where we want to reduce padding

dizajn
Participant
#0

Can someone send me css trick so author and date would be in separate lines like on photo?

http://s24.postimg.org/pxljq3ox1/prva.jpg

Thanks

notranjskoprimorske.si

Bogdan B.
tagDiv Staff

Hello,
You can remove the gradient using this css:

.td-grid-style-1.td-hover-1 .td-module-thumb a:last-child:before{
opacity:0!important
}

But it will impact your images that are brighter (white images/background) as the text is white and it will be difficult to see without the gradient.
Hope this helps.
Thanks.

Viewing 25 results - 23,826 through 23,850 (of 33,436 total)