• Priority: 0
  • Status: Closed
  • Theme: Alysum
  • Assigned To: No-one
  • Private: No
  • Open Date: 18.01.17, 15:40
  • Opened by: Alex
  • Closed by: Marek
  • Closed on: 09.06.17, 23:15
  • Reason: Closed
  • Comment: Glad to help!

Ticket #10164 - Al4.5 VertFlex issues in portable devices + NOTICE fix

@media (max-width: 768px) {
    .v-bottom-section-links > li {
        text-align: left;
        width: 100%;
    }
    .vert-flexmenu .sections-contaier {background-image: none !important;}
    .vert-flexmenu .bottom-title {font-size:16px}
}

2) Error when debug mode enabled


Undefined index: catid
Fix
file \modules\pk_vertflexmenu\pk_vertflexmenu.php line 1286
the code

if ($itemData['catid']) {

change to

if (isset($itemData['catid'])) {

Comments

No comments yet