Jump to content

GradientWizzard

Senior Moderator
  • Posts

    454
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by GradientWizzard

  1. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  2. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  3. <span class="cftitle">{title}:</span><span class="cfcontent">{content}</span> AdminCP > Themes > THEME NAME > Edit HTML & CSS > CSS > custom.css CSS CODE: .cftitle { float: left; } .cfcontent { float: right; } tried and tested If that doesn't work, please send me a link to your site and i'll have a look
  4. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  5. What about something like this: {template="userPhoto" group="global" app="core" params="\IPS\Member::load( MemberID )"} Replace MemberID with the number of the member
  6. What is it your trying to actually do, this might help us?
  7. Hey guys! I'm wondering if someone can recreate this logo and make it the same please?
  8. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  9. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  10. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  11. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  12. OK locate .ipsUserPhoto and change background to transparent
  13. Admin CP > Customize > Languages > Edit find: member_post_count change to: {# [1:post][?:Post Count]
  14. The question(s) in this support topic have been answered and the topic author has resolved their issue. This topic is now closed. If you have other questions, please open a new topic.
  15. OK, in your globaltemplate find: {template="sidebar" if="theme.sidebar_position == 'right'" app="core" group="global" params="'right'"} under that add {template="breadcrumb" app="core" group="global" params="false, 'bottom'"} If that doesn't work I'll need a copy of the skin to have a look
  16. Admin > Customize > SKIN NAME > Edit HTML & CSS > Core > Front > Global > Breadcrumb. find: {{if $markRead && \IPS\Member::loggedIn()->member_id}} <li> <a data-action="markSiteRead" class='ipsType_light' data-controller="core.front.core.markRead" href='{url="app=core&module=system&controller=markread" seoTemplate="mark_site_as_read" csrf="true"}' title='{lang="mark_site_read"}' data-ipsTooltip><i class='fa fa-check'></i> {lang="mark_site_read_button"}</a> </li> {{endif}} </ul> below add: <ul {{if $useMicrodata}}itemscope itemtype="http://schema.org/BreadcrumbList"{{endif}}> <li {{if $useMicrodata}} itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"{{endif}}> <a title="{lang="home"}" href='{setting="base_url"}' {{if $useMicrodata}}itemscope itemtype="http://schema.org/Thing" itemprop="item"{{endif}}> <span {{if $useMicrodata}}itemprop="name"{{endif}}><i class='fa fa-home'></i> {lang="home"}{{if count( \IPS\Output::i()->breadcrumb )}} <i class='fa fa-angle-right'></i>{{endif}}</span> </a> <meta itemprop="position" content="1"> </li> {{$i = 0;}} {{foreach \IPS\Output::i()->breadcrumb as $k => $b}} <li {{if $useMicrodata}} itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"{{endif}}> {{if $b[0] === NULL}} {$b[1]} {{else}} <a href='{$b[0]}' {{if $useMicrodata}}itemscope itemtype="http://schema.org/Thing" itemprop="item"{{endif}}> <span {{if $useMicrodata}}itemprop="name"{{endif}}>{$b[1]} {{if ( $i + 1 != count( \IPS\Output::i()->breadcrumb ) )}}<i class='fa fa-angle-right'></i>{{endif}}</span> </a> {{endif}} <meta itemprop="position" content="{$i+2}"> </li> {{$i++;}} {{endforeach}} </ul>
×
×
  • Create New...