Search Results for 'css'

Results from the Forum
johanbaldewijns
Participant
#0

Hi,

when wanting to delete a message in concept status I get this error:
Warning: Cannot modify header information – headers already sent by (output started at /customers/6/5/1/welovemisses.be/httpd.www/wp-content/themes/Newspaper/includes/td_css_generator.php:1) in /customers/6/5/1/welovemisses.be/httpd.www/wp-includes/pluggable.php on line 1228

Hence I cannot delete it.

Also uploading an image in a new message does not work

daniel.baron
Participant
#0

Hello
I tried to add child theme for Newspaper but it doesn’t properly load the parents css and js
Even tried with this plugin Child Theme Wizard, but still the same
Instead of the side bar i get 2 blue headers with
Slider HTML
Jquery-Slider script

The example child theme does the same

functions.php

<?php /*

This file is part of a child theme called Newspapper Child.
Functions in this file will be loaded before the parent theme’s functions.
For more information, please read https://codex.wordpress.org/Child_Themes.

*/

// this code loads the parent’s stylesheet (leave it in place unless you know what you’re doing)

function theme_enqueue_styles() {
wp_enqueue_style(‘parent-style’, get_template_directory_uri() . ‘/style.css’);
wp_enqueue_style(‘child-style’, get_stylesheet_directory_uri() . ‘/style.css’, array($parent_style));
}
add_action(‘wp_enqueue_scripts’, ‘theme_enqueue_styles’);

/* Add your own functions below this line.
======================================== */

and style.css

/*
Theme Name: Newspapper Child
Theme URI:
Description: A child theme of Newspapper 6
Author: admin
Author URI: http://vrn-dev.local
Template: Newspaper
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

/* == Add your own styles below this line ==
——————————————–*/

Andrei L.
tagDiv Member

Hi

By default Newsmag theme does not have the border included in its style but you can use this css to achieve a similar rezult: http://screencast.com/t/rFdeQkYYgdCX

.td-pb-span8 .block-title{
border-bottom: 2px solid red;
width: 94%
}
.td-pb-span12 .block-title{
border-bottom: 2px solid red;
width: 96%
}
.td-pb-span4 .block-title{
border-bottom: 2px solid red;
width: 88%
}
.td-wrapper-pulldown-filter {
position: relative;
top: -48px;
}
.block-title > span{
top:0;
}

Thanks!

danimian
tagDiv Member

Hi Catalin,
I made the changes in td_block_social_counter.php, its working fine with replaced text but unfortunately with social counter and if i override the code in Theme panel->Custom CSS area as you recommended in your first post both counter and text are vanishing.
.td_social_info {
display:none;
}
Could you please suggest me the solution to display replaced text without Social counter?
Best Regards and Thanks in advance
Adnan

Catalin
tagDiv Staff

Hello res,

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

The code is ->

.td-related-right {
display:none!important;
}

Thanks.

Andrei L.
tagDiv Member

Hi

Try this css in theme panel > custom code > custom css: http://screencast.com/t/n74dYoc6

.td-header-top-menu{
background: none;
}

Thanks!

Andrei L.
tagDiv Member

Hi

That happens because of search container display. You can correct that by replacing the previous css with this one:

@media(min-width: 768px){
#td-top-search {
margin-top: 0px!important;
position: initial;
display: inline-block}
}

Please note that this header style wan’t designed to have a full width background and by affecting it’s layout may appear some issues with menus functionality.

Thanks!

Catalin
tagDiv Staff

Hello DonLuigi,

I have checked your website URL and I saw the color switching in your header and also, I saw that you have speed booster to the active mode that moves the js and stylesheet file in the footer, process that could cause this flash. Please notice that the CSS working in cascade and the first time take the code from style.css that is black and then take the color that you have changed from Theme panel that is green and practically this flash is generated by this cause. As a workaround, you have to check your style.css and try to add directly in this file your desired value of color, like this -> http://screencast.com/t/Sx4ULlT0mzB

Hope this helps!

Thank you for the message!

Bogdan B.
tagDiv Staff

Hi,

Unfortunately there is no easy solution to this as it’s added with css, but you can inspect pull quote center paragraph for example and see how it was designed – http://screencast.com/t/pwnaeAeGihttp://screencast.com/t/UknMTzAHXGas and modify the default blockquote. You will have to add :before and :after to blockquote paragraph to add double qoutes and you can change the font from the theme panel: http://screencast.com/t/Vg3S0mefEt

Thanks!

Catalin
tagDiv Staff

Hello joyceloh,

Please notice that this extra white space from your bottom page is not theme related. I suppose that come from your untested plugins which you are using in our theme -> http://screencast.com/t/n6OiQjJJ6JPh. Please try the code below and lace it in Theme panel->Custom CSS area.

The code is ->

.home iframe {
display:none
}

The result -> http://screencast.com/t/JNzAaPtOF

Please try to disable all the active plugins, leave just Visual Composer to active and install only the plugins that come bundled with our theme and rule out the conflicting plugins.

Thanks.

Andrei L.
tagDiv Member

Hi

To achieve the current layout on our demos we combined different blocks on the page and set a specific configuration for them.
Please check our documentation for more details about page setup, blocks settings and visual composer usage: https://forum.tagdiv.com/newsmag-how-to-use-visual-composer/https://forum.tagdiv.com/newsmag-block-settings-tutorial/https://forum.tagdiv.com/newsmag-homepage-how-to-build-and-set-it/ Also you can check our youtube videos here: https://www.youtube.com/watch?v=TUdVeZ1pbuc&list=PL6CsDkMaejhpWFcFNOIDfdp5nIT0NbUbj

1. On top of our travel demo we use a big grid 6 with grid style 7: http://screencast.com/t/kK4cxADm4M7
2. I assume that you’re referring at this part from our demo: http://screencast.com/t/1K76Jyg8bb6 There we use latest article part and module 14 for layout: http://screencast.com/t/bzWaMkx7qMpq You can also use a block 13 from Visual Composer to achieve the same layout: http://screencast.com/t/uvzjovotqyS
3. To move the title below the featured image on module 14 add this css in theme panel > custom code > custom css: http://screencast.com/t/1N8UqmYG0qw

.td_module_14 .meta-info {
position: initial;
}

Thanks!

Bogdan B.
tagDiv Staff

Hi Adnan,

If you want to remove the page title, you can either chose a different page template from here: http://screencast.com/t/XjoHMLM1jV
If you do not want to change the template, you can simply rename your page to something other than home, or you can hide the title with css like so:
.td-page-header .entry-title{
display:none!important;
}

This will leave breadcrumbs intact. If you want to remove them also you need to add this part:
.page .td-crumb-container{
display:none!important;
}

Hope this helps.
Thank you!

Catalin
tagDiv Staff

Hello alaisne,

If you want to change the color for the block arrows pagination, you have to use a bit of CSS code to do that. Please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-next-prev-wrap a {
color: red;
}

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

Thanks.

Bogdan B.
tagDiv Staff

Hi,

The icon was hidden with css for mobile, but you can activate it with this code:
@media (max-width: 767px){
.td-scroll-up-visible {
display: block!important;
}}

Simply add the code in the theme panel -> custom css box.

Thank you!

Andrei L.
tagDiv Member

Hi

Add this css in theme panel > custom code > custom css to make the menu full width when page scroll down: http://screencast.com/t/yE1oILfynSKh

.td-header-main-menu.td-affix{
width: 100%;
}

Thanks!

Bogdan B.
tagDiv Staff

Hi,

It works with this css code:

.bullet-list{
list-style-type: none;
}
.bullet-list li{
margin-left:0!important;
}

result: http://screencast.com/t/BD29DNKWe
Simply add the code in the theme panel -> custom css box.

Thanks.

Bogdan B.
tagDiv Staff

Hi,

1) I don’t think there is a maximum amount of memory you can allocate to wordpress. It’s the minimum that creates issues. Please follow this topic for more details:
https://wordpress.org/support/topic/increasing-memory-allocated-to-php-1

2) CSS will do that unfortunately if you set it in the thme panel. If you want it to be hidden by default, you need to edit style.css and add the code inside the file.

Thank you!

Bogdan B.
tagDiv Staff

Hi,
It seems the buddypress registration page is pretty messed up. It could be a plugin conflict that interferes with the css. You can edit the page from buddypress as the registration form comes from the plugin. You can try to disable all other plugins except visual composer and buddypress to see if there is a plugin conflict. Also clear your cache and reset cdn files.
Let us know how it goes.
Thanks.

ashokudhayan
Participant
#0

How to Change the Default font name in css for Post title/content. Please assist.

alasnor
Participant
#0

I tried to install the theme but could not. WordPress said it is missing the CSS style sheet.

sarawakv
tagDiv Member

hi,

i hv a couple of question.

1. what is the maximum memory allocation that i can set for the wordpress as subject to above matter.

2. as u replied on #97190, i have place to code to the custom css. but the count view can still be seen for a split second. how can i hide it completely from visitors’ eye?

thank you so much for ur help.

Bogdan B.
tagDiv Staff

Hi,
Well, I’m not sure how optimizepress is supposed to work as we have not tested it so I cannot provide a solution out of the box. Please provide a link to your website so I can inspect it and see if a css trick will do it.
Thank you!

Bogdan B.
tagDiv Staff

Hi,
I have checked your site and the code works as expected: http://screencast.com/t/DEFPuonii
Please make sure you add the code in the theme panel ->custom css box and make sure all your previous code is properly closed before adding the new code.
Thank you!

Anonymous
tagDiv Member

The theme is excellent but very sophisticated lol. Recently purchased it. ;). I have been using clodflare for 2 years with never an issue. Is it possible for me to host the icons in my server and have them point there if it is an issue? What CSS file loads them ? Thanks

Bogdan B.
tagDiv Staff

hi,
Our theme uses one single big css file. That is style.css found in the root directory. If you wish to customize the css it,s best to simply add your code in the theme panel- custom css box: http://screencast.com/t/SLMRM5Yr2mOM
Thank you!

Viewing 25 results - 23,401 through 23,425 (of 33,436 total)