Search Results for 'css'

Results from the Forum
Lucian
tagDiv Staff

Hi,

Unfortunately the theme doesn’t have a feature like that and you would need to use custom css for it, you could try something like this for start but it would need additional customization: http://screencast.com/t/FVNSVZqFQR
Hope this helps!

Thanks

Lucian
tagDiv Staff

Hi,

You can use the custom css to fix the issue with the grey background:

@media (max-width: 467px) {
.td-big-grid-post-1,
.td-big-grid-post-2,
.td-big-grid-post-3,
.td-big-grid-post-4 {
width: 50%;
max-height: 110px;
}
}

This fix will be also include in the next theme version so either use this css or you wait until update which will be tomorrow or the monday.

@fbengo
The social networks aren’t set to appear on header style 6 so that is why you don’t have them there.

Thanks

Lucian
tagDiv Staff

Hi,

Unfortunately this isn’t easy as the space between posts/images comes from the theme’s grid and it’s not easy to be modified.
For the line you can use this custom css: http://screencast.com/t/FPkNFrFEGik

Add this css into the custom css filed in theme panel:
.home .td_mod_wrap {
border-bottom: 1px solid #000000;
}

Hope this helps!

Thanks

gazgaz
Participant
#0

installed shop.
when ordering appears incomprehensible code.
Moreover, it appears only in IE.
In Google Chrome’s OK

ie:
http://s017.radikal.ru/i412/1411/d6/7edff2d60762.jpg

google chrome:
http://s57.radikal.ru/i155/1411/c8/cb9203cbeb45.jpg

this is my func file child-theme

<?php

/*  ----------------------------------------------------------------------------
    WordPress booster framework - this is our theme framework - all the content and settings are there
    It is not necessary to include it in the child theme only if you want to use the API
*/
if (!defined('TD_THEME_WP_BOOSTER')) {
	include TEMPLATEPATH . '/includes/td_wordpres_booster.php';
}

//Удаление цветовой схемы
remove_action( 'admin_color_scheme_picker', 'admin_color_scheme_picker' );

//Редактирование полей в профиле
function modify_contact_methods($profile_fields) {
    // Add new fields
     //$profile_fields['twitter'] = 'Twitter Username';
     //$profile_fields['facebook'] = 'Facebook URL';
     //$profile_fields['gplus'] = 'Google+ URL';
       $profile_fields['dopplr'] = 'VK';
       $profile_fields['delicious'] = 'Battlelog';
	

    // Remove old fields
	unset($profile_fields['google']);
	unset($profile_fields['evernote']);
	unset($profile_fields['dribbble']);
	unset($profile_fields['digg']);
	unset($profile_fields['blogger']);
	unset($profile_fields['deviantart']);
	unset($profile_fields['forrst']);
	unset($profile_fields['github']);
	unset($profile_fields['googledrive']);
	unset($profile_fields['googlemaps']);
	unset($profile_fields['grooveshark']);
	unset($profile_fields['html5']);
	unset($profile_fields['lastfm']);
	unset($profile_fields['linkedin']);
	unset($profile_fields['myspace']);
	unset($profile_fields['path']);
	unset($profile_fields['picasa']);
	unset($profile_fields['pinterest']);
	unset($profile_fields['posterous']);
	unset($profile_fields['reddit']);
	unset($profile_fields['sharethis']);
	unset($profile_fields['slashdot']);
	unset($profile_fields['spotify']);
	unset($profile_fields['stackoverflow']);
	unset($profile_fields['stumbleUpon']);
	unset($profile_fields['tehnorati']);
	unset($profile_fields['sharethis']);
	unset($profile_fields['addthis']);
	unset($profile_fields['behance']);
	unset($profile_fields['tumblr']);
	unset($profile_fields['viddler']);
	unset($profile_fields['virb']);
	unset($profile_fields['windows']);
	unset($profile_fields['woordpress']);
	unset($profile_fields['zerply']);
	unset($profile_fields['paypal']);
	unset($profile_fields['yahoo']);
	unset($profile_fields['vimeo']);
	unset($profile_fields['rss']);
	unset($profile_fields['soundcloud']);

    return $profile_fields;
}
add_filter('user_contactmethods', 'modify_contact_methods');

//Удаление админбара для всех кроме админа
add_action('after_setup_theme', 'remove_admin_bar');

function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
  show_admin_bar(false);
}
}

//логотип при входе
function my_login_logo(){

echo '

<style type="text/css">

#login h1 a { background: url('. get_bloginfo('template_directory') .'/images/logo.png) no-repeat 0 0 !important; }

</style>';

}
add_action('login_head', 'my_login_logo');

//Теперь нам необходимо сделать так, чтобы логотип ссылался не на сайт wordpress.org, а на наш с вами. 
//Тут тоже особо трудного ничего нет, добавляем всего лишь еще одну строку
add_filter( 'login_headerurl', create_function('', 'return get_home_url();') );

//Всплывающую подсказку что сайт работает на WordPress надо тоже убрать, и добавить свою фразу. 
//Тут нам поможет эта строка:
add_filter( 'login_headertitle', create_function('', 'return "Brothers in Games - Сообщество любителей поиграть вместе";') );

//убрали лого из админбара
add_action( 'wp_before_admin_bar_render', function() {
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wp-logo');
}, 7 );

//убрали ненужные виджеты 
function shailan_remove_dashboard_widgets() {
    // Remove Quick Press Widget
    remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' );
    // Remove Incoming Links Widget
    remove_meta_box( 'dashboard_incoming_links', 'dashboard', 'normal' );
    // Remove Recent Comments Widget
    remove_meta_box( 'dashboard_recent_comments', 'dashboard', 'normal' );
    // Remove Latest Plugins Widget
    remove_meta_box( 'dashboard_plugins', 'dashboard', 'normal' );
    // Remove WordPress Blog Widget
    remove_meta_box( 'dashboard_primary', 'dashboard', 'side' );
    // Remove Other WordPress News Widget
    remove_meta_box( 'dashboard_secondary', 'dashboard', 'side' );
}  
add_action('wp_dashboard_setup', 'shailan_remove_dashboard_widgets' );

//удалили версию из футера админки
function my_footer_shh() {
    remove_filter( 'update_footer', 'core_update_footer' ); 
}
add_action( 'admin_menu', 'my_footer_shh' );

//удалили указание на вп в футере 
function remove_footer_admin () {
echo '';}
add_filter('admin_footer_text', 'remove_footer_admin'); 

//удалили таб помощи сверху
add_action('admin_head', 'mytheme_remove_help_tabs');
function mytheme_remove_help_tabs() {
    $screen = get_current_screen();
    $screen->remove_help_tabs();
}

//убрали метатег из хедера показывающий использование вп
function fjarrett_remove_wp_version_strings( $src ) {
     global $wp_version;
     parse_str(parse_url($src, PHP_URL_QUERY), $query);
     if ( !empty($query['ver']) && $query['ver'] === $wp_version ) {
          $src = remove_query_arg('ver', $src);
     }
     return $src;
}
add_filter( 'script_loader_src', 'fjarrett_remove_wp_version_strings' );
add_filter( 'style_loader_src', 'fjarrett_remove_wp_version_strings' );

//Hide WP version strings from generator meta tag
function wpmudev_remove_version() {
return '';
}
add_filter('the_generator', 'wpmudev_remove_version');

//скрытие пунктов меню слева от посторонних глаз
add_action( 'admin_init', 'my_remove_menu_pages', 999 );

function my_remove_menu_pages() {
    // If the user does not have access to publish posts
    if(!current_user_can('administrator')) {
        remove_menu_page('bsf-dashboard');
	remove_menu_page('wpcf7');
        remove_menu_page('edit.php?post_type=explandict');
        remove_menu_page('tools.php');
    }
}

// get the "author" role object
$role = get_role( 'author' );

// add "organize_gallery" to this role object
$role->add_cap( 'unfiltered_html' );

// убираем инфу о неправильном пароле при входе
add_filter('login_errors',create_function('$a', "return null;"));

// убираем из кода страницы упоминание о Yoast WordPress SEO plugin
add_action('get_header', 'rmyoast_ob_start');
add_action('wp_head', 'rmyoast_ob_end_flush', 100);
 
function rmyoast_ob_start() {
    ob_start('remove_yoast');
}
function rmyoast_ob_end_flush() {
    ob_end_flush();
}
function remove_yoast($output) {
    if (defined('WPSEO_VERSION')) {
        $output = str_ireplace('<!-- This site is optimized with the Yoast WordPress SEO plugin v' . WPSEO_VERSION . ' - https://yoast.com/wordpress/plugins/seo/ -->', '', $output);
        $output = str_ireplace('<!-- / Yoast WordPress SEO plugin. -->', '', $output);
    }
    return $output;
}
Lucian
tagDiv Staff

Hi,

Use this css to have them like this: http://screencast.com/t/X5fjtw6mW

.single_template_5 header .entry-comments-views {
right: 400px;
}

Thanks

Lucian
tagDiv Staff

Hi,

You can use this post text formats on your text: http://screencast.com/t/RqIVVCNU and set it to apply a padding on both sides like in the screen and then increase the padding via css, like this: http://screencast.com/t/GbCzrByhT5

Use this css in theme panel > custom css filed:

.td-post-content.span8 .td-paragraph-padding-1, .column_container.span8 .td-paragraph-padding-1, .mceContentBody-max-width-small .td-paragraph-padding-1 {
padding-left: 30% !important;
padding-right: 30% !important;
}

Hope this helps!

Thanks

Lucian
tagDiv Staff
4.6 - reply

Hi,

Thanks @Steven!
Unfortunately we do have an issue with tagdiv speed booster plugin which is the cause of the css flash. I have also tested this and noticed that this issue, as you all figured out by now only happens when using the latest version of the speed booster plugin (3.0).
Added this on our issue list, we will investigate it and we will try to find a solution asap and hopefully we can provide the fixed version on the next theme update, until then you can use the previous version of the plugins which works fine(2.5).

Sorry for the inconvenience and thanks for understanding!

Lucian
tagDiv Staff

Hi,

You can use this custom css: http://screencast.com/t/eAhPvuriK
You also need to edit the td_module.php file and remove this “-” from the right of the author, like this: http://screencast.com/t/xO3zj17gp
Add this css into custom css field from theme panel:

.single .td-block-author {
position: absolute;
right: 20px;
}

.single header time {
font-style: normal !important;
margin-right: 10px;
}

.single header .entry-comments-views {
right: auto;
float: left;
}

Thanks

athabaska
Participant
#0

Hello
I’m having problems in creating pages, by using the Block 1.

Problem is that size of thumbnail and whole DIV is not large as expected 326×235 but 214×154.

I’ve noticed that this does not happen if I select 3 columns layout.
Any Sidebar I load, (even empty) will reduce the whole div size

I suspect this should change in css around this


class="wpb_row row-fluid"

and

.row-fluid .span4 {
width: 30.3483%;
margin-left: 4.47761%;
}

sorin.manica
Participant
#0

Salutare din nou!

I have three small issues, you can see the website live here… https://horoscopia.ro/

1. I decided to hide the date of the posts, however in the slider on the frontpage, a shadow for the date still appears. Can you give me a .css solution to hide that extra shadow?

2. There’s a white bar below the footer, that is obvious / still visible because of my background, that although is streched, is almost black. Do you have a solution to hide it / change its colour?

3. Can you give me a solution to change / translate the name of the ”Featured” catgory, while still keeping its functionality?

Multumesc frumos 🙂

jb
tagDiv Member

OK. I have deleted the media query’s. Now it works.

Is it possible that in a new update the media query’s are in an extra css-file or an option in the theme panel? It would be very helpful.

nsitu
Participant
#0

I noticed the following very generic rule in Newspaper/wp-admin/content-metaboxes/meta.css :

select {
width: 200px;
}

This breaks the backend layout for various plugins, so my suggestion is that it should either be made more specific or be removed altogether in a future version.
Thanks.
Harold

Robert
tagDiv Member

@lucian Thanks for your response!
I have used de custom css for the rest that don’t have an option.

Lastpost
tagDiv Member

1. Same problem on my mobile phone (Note 4) with the grey background. Just made the image size bigger in css to hide the grey part. Can also be seen on your desktop by making the screen smaller. 😉
2. Is working all right here so I can’t comment on that.

Lucian
tagDiv Staff

Hi,

You can, using this custom css in theme panel > custom css filed: http://screencast.com/t/jXtzbhKPHB

.td-post-template-1 .td-post-featured-image {
float: right;
margin-left: 21px;
}

Thanks

Steven
tagDiv Member

Try this css code and let me know if it work for you…you can play with the height to it please you…

.td-head-style8-logo-desktop img {
height: 68px;
}

Lucian
tagDiv Staff

Hi,


@RobertVerwaal
Unfortunately you will have to do this manually from theme panel for the available options and use custom css for the rest that don’t have an option. You can also do this by editing the style.css file and replace all font families with your desired font.

@Branstone
Only if you have made the customization/changes directly into to the theme’s files, your theme settings will not be affected when you update the theme. If you do have modification to the code you should make a copy of the files changed by you, updated the theme and make those changes again if the files where changed.

Thanks

Steven
tagDiv Member
4.6 - reply

Also if it was a theme issue you’ve been having the same issue on ur homepage,but in this case ur homepage load normal it’s just ur post pages that having issues with the css code…

Lucian
tagDiv Staff

Hi,

Have you manages to fix this? I have check your site and haven’t found any issues with it.
Usually this happens when you sue the speed booster plugin as the theme style gets moved to the footer and this css flash appears.
Please let me know!

Thanks

Steven
tagDiv Member
4.6 - reply

@Mark Clifford as i told you yesterday it’s a css issue on ur site,i’m using the speed booster and don’t have these issues,something is not playing nice with the td speed booster may be another plugin are some css code you added…

You have some kind of plugin called “AdRotate CSS” see if that is the culprit,try disable that and enable back the td speed booster..only you can fix ur site not us…because it’s not a theme issue it’s a plugin issue that messing up ur css code on ur post pages…

Lucian
tagDiv Staff

Hi,

Use this css: http://screencast.com/t/jl9QcjcoMxTr

.home .span12 .span12.wpb_column {
margin-left: auto;
}

For that menu item that falls into another row I recommend you to set a smaller font size for your menu item and also use smaller title for your menu items to prevent them from falling into another row.

Thanks

Lucian
tagDiv Staff
4.6 - reply

Hi,

Thanks @Steven! I have tested the latest theme version and haven’t had any issues of this type.

@Jorge
/@SALZBURG12 Please make sure you empty all cache/purge files then deactivate all plugins leaving just Visual Composer active then check again and also clear your browser cache (use Ctrl+Shift+R to re-download the page ignoring cache content) if this dose not helps please update the theme copying the theme’s files manually via FTP using this guide: https://forum.tagdiv.com/how-to-update-the-theme/ because the envato toolkit seems to case some issue when used for update and could not update the it right.

@Mark
Clifford The css flash usually happens when using the speed booster plugin. Just checked your site and seems that it doesn’t happen anymore have you managed to solve it? Please let me know!
The 4.5d version of the theme from theme panel was added by mistake it should state 4.6 so it’s not an issue.

@Jalo
I have tested this again using winmerge and that file hasn’t been changed in the latest theme versions, maybe you had an older theme version as the last time this file was changed is 4.1

@skykid
Sorry for the inconvenience. More feature will be added, unfortunately I can’t give you any exact details about this but I can let you know that will happen in next updates.

Thanks

Steven
Participant
#0

I’ll like a css code to style my block 6 “READ MORE BOTTOM” i need to have a hover color also removed that line under the word,in version 5 that you guys working on please removed those lines it seem no one like them and it make the site clutter..

Also i need a css code to have a hover color for my breadcrumb category in post..

Lucian
tagDiv Staff

Hi,

Unfortunately this happens because of the width of the logo which you will need to adjust it on each screen via css.
Sorry for the inconvenience!
Thanks for the message!

sorin.manica
tagDiv Member

Ok, everything is default, the sidebar is default (”Newspaper Default”) and also the position of it is default everywhere (on the right, as in the demo, and ”default” for every category in the theme’s settings, under the ”CUSTOM SIDEBAR + POSITION” setting everything is default).

Thanks for the solution, but a little sad it doesn’t work, with everything on default and also with the ”My menu” name for it. Also updated the theme, and redone all the settings above, and it still doesn’t work.

Or maybe I haven’t entered correctly the .css values? It was supposed to enter it in the theme settings under Theme Panel / Misc / Custom css / Your custom css, right?

Thanks again 🙂

Viewing 25 results - 30,626 through 30,650 (of 33,436 total)