I know many topics have same question, but I mean how can remove tabbing style and set my own theme to user profile.
I know how can remove tab, but I lost all data when removing for example: view tab from user profile. I made my own theme with html and just replace to user profile with still user profile data.

Comments

VM’s picture

per: https://www.drupal.org/node/644164 please edit the opening post and move it to the 'post installation' forum. Thank you.

I suggest looking into the display suite module @ https://www.drupal.org/project/ds

bahman2216’s picture

Thanks for your comment, But I just use THEME_pager_alter in my template.php:

function THEME_page_alter(&$page){
  $page['#theme'] = 'my-custom-tpl';
}

it is good idea for me, remove tabbing style and all header and footer and I can use my own template file. But my tpl file parse into div with class "content" and I have still some extra div and meta content from drupal. can I remove all extra div before my tpl content?