diff --git a/sites/all/themes/centum/css/style.css b/sites/all/themes/centum/css/style.css index 3098bc4..9c6baed 100644 --- a/sites/all/themes/centum/css/style.css +++ b/sites/all/themes/centum/css/style.css @@ -4688,6 +4688,52 @@ body.page-home .panel-col-last { body.page-home .panel-col-first { width: 20%; } +div.panel-panel.panel-col-first .contextual-links-region.panel-pane.pane-block.pane-quicktabs-my-stuff-page-tabs{ + display: none; +} + +/* In Mobile for home-page +====================================================================== */ +@media only screen and (max-width: 767px) { + body.page-home .panel-col-first { + width: 52%; + position: relative; + } + + #block-fh-social-annex-membership-rewards{ + border-top: 1px solid #e9e9e9!Important; + display: inline-block!Important; + float: right!Important; + width: inherit!Important; + margin-bottom: 10px; + } + + body.page-home .panel-col-last { + width: 80%; + position: absolute; + top: 299px; + right: 91px; + } + div.panel-panel.panel-col-first .contextual-links-region.panel-pane.pane-block.pane-quicktabs-my-stuff-page-tabs{ + display: initial; + } + div.panel-display .panel-panel.panel-col-last{ + display: none; + } +} +@media only screen and (max-width: 480px) { + body.page-home .panel-col-first { + width: 52%; + position: relative; + } + + body.page-home .panel-col-last { + width: 80%; + position: absolute; + top: 320px; + right: 65px; + } +} body.page-home .panel-col-last a { color: #005460; diff --git a/sites/default/modules/features/ft_user_pages/ft_user_pages.pages_default.inc b/sites/default/modules/features/ft_user_pages/ft_user_pages.pages_default.inc index 40cfbb9..cfe640d 100644 --- a/sites/default/modules/features/ft_user_pages/ft_user_pages.pages_default.inc +++ b/sites/default/modules/features/ft_user_pages/ft_user_pages.pages_default.inc @@ -272,13 +272,13 @@ function ft_user_pages_default_page_manager_pages() { $pane = new stdClass(); $pane->pid = 'new-2'; $pane->panel = 'left'; - $pane->type = 'views_panes'; - $pane->subtype = 'products_categories-products_categories_panel_pane'; + $pane->type = 'block'; + $pane->subtype = 'quicktabs-my_stuff_page_tabs'; $pane->shown = TRUE; $pane->access = array(); $pane->configuration = array( - 'override_title' => 1, - 'override_title_text' => 'Browse by brand', + 'override_title' => 0, + 'override_title_text' => '', ); $pane->cache = array(); $pane->style = array( @@ -292,6 +292,27 @@ function ft_user_pages_default_page_manager_pages() { $display->panels['left'][1] = 'new-2'; $pane = new stdClass(); $pane->pid = 'new-3'; + $pane->panel = 'left'; + $pane->type = 'views_panes'; + $pane->subtype = 'products_categories-products_categories_panel_pane'; + $pane->shown = TRUE; + $pane->access = array(); + $pane->configuration = array( + 'override_title' => 1, + 'override_title_text' => 'Browse by brand', + ); + $pane->cache = array(); + $pane->style = array( + 'settings' => NULL, + ); + $pane->css = array(); + $pane->extras = array(); + $pane->position = 2; + $pane->locks = array(); + $display->content['new-3'] = $pane; + $display->panels['left'][2] = 'new-3'; + $pane = new stdClass(); + $pane->pid = 'new-4'; $pane->panel = 'right'; $pane->type = 'block'; $pane->subtype = 'quicktabs-my_stuff_page_tabs'; @@ -309,8 +330,8 @@ function ft_user_pages_default_page_manager_pages() { $pane->extras = array(); $pane->position = 0; $pane->locks = array(); - $display->content['new-3'] = $pane; - $display->panels['right'][0] = 'new-3'; + $display->content['new-4'] = $pane; + $display->panels['right'][0] = 'new-4'; $display->hide_title = PANELS_TITLE_FIXED; $display->title_pane = '0'; $handler->conf['display'] = $display;