English 中文(简体)
HMENU, 图表
原标题:HMENU with graphics

在1个People3站点,我有一份有色页的一览表。 每个网页都有一些“媒体”领域的图像。 试图航行,前往紫外线/深海生物。 迄今为止,我有:

# Append Sitenavi for projects
[PIDupinRootline = 43]

page.10.marks.MAIN.20 = HMENU
page.10.marks.MAIN.20{

    special = browse
    special{
        items = next|prev
    }

    1 = TMENU
    1{
        NO = 1
    }
}
[global]

但是,不使用页标题,而是想利用“档案”领域的第一种形象。 我怎么办?

最佳回答

这是获得其他领域的途径:

page.10.marks.MAIN.20 = HMENU
page.10.marks.MAIN.20 {
  special = browse
  special {
    items = prev | next
  }

  1 = TMENU
  1 {
    NO = 1
    NO.stdWrap.field = subtitle // title
  }
}

现在,如果您的改动<代码>下/标题至>image,并加上<代码>NO.stdWrap.wrap = <img src>/>,则该编码应当发挥作用。

问题回答

暂无回答




相关问题
TYPO3 extensions and symlinks

Can I create a symlink to the local extension from aonther project folder? I have a common local-server and i need to implement same extension on all local project-installations. I tried to put the ...

TYPO3: Use TCA.php to build Frontend Forms?

I m searching for a solution, to build a frontend form from the TCA.php of my TYPO3 extension. Is there any way, to select TCA.php values, from my extension Class? I want to build a select-element ...

How to automatically reload TYPO3 calendar from external ics

Hi I m using the calendar base extension (cal) for displaying my calendar in a TYPO3 website. I configured an external calendar and it imports all events correctly. How can I automatically reload the ...

Does a svn frontend for git exist

We are planing to migrate our repositories from svn to git. However there are some people using np_subversion which integrates SVN into the TYPO3-Backend. np_subversion calls the svn client to make ...

wurfl2 integration in TYPO3

everytime i try to install the wurfl2 extension in TYPO3 i get the following error message: Fatal error: require_once() [function.require]: Failed opening required (include_path= .:/usr/local/php/...

TYPO3: getTypoLink_URL alternative (generating url aliases)

Is there an alternative way of getting the URL to a page (by id) apart from using cObj->getTypoLink_URL? I m trying to create URL aliases, so a page can have multiple URLs (for example "/about" ...

热门标签