Jump to content

Caleeco

Apprentice
  • Posts

    103
  • Joined

  • Last visited

Profile Information

  • Language
    English
  • Software
    IPS4
  • Version
    4.4.10

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Caleeco's Achievements

Apprentice

Apprentice (3/14)

  • First Post
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

19

Reputation

  1. Hello, All the screenshots are from the same website. The ones on the left are Font Awesome, just and older version. This is the custom CSS. /*== [Forums] ==*/ span.ipsItemStatus.ipsItemStatus_large[data-forumid='7'] > i:before{ content: "\f197" } /*War Room*/ span.ipsItemStatus.ipsItemStatus_large[data-forumid='8'] > i:before{ content: "\f234" } /*Introduce Yourself*/ span.ipsItemStatus.ipsItemStatus_large[data-forumid='3'] > i:before{ content: "\f0e3" } /*Boardroom*/ span.ipsItemStatus.ipsItemStatus_large[data-forumid='2'] > i:before{ content: "\f1cb" } /*Test Forum*/ span.ipsItemStatus.ipsItemStatus_large[data-forumid='10'] > i:before{ content: "\f074" } /*Random*/ But when i change to the new THEME - FLUENT. The icons revert back to their defaults & the custom CCS is not applied. So im not sure why that would be, unless there is some CSS somewhere overriding the custom CSS? Many Thanks Caleeco
  2. I wish I wasn't such a fool. ? I wanted to update the CKEditor to include some additional plugins. So I created a new CKE install. https://ckeditor.com/cke4/builder I then used my webhost file manager to extract/overwrite into this location: public_html/forum/applications/core/interface/ckeditor/ckeditor I cleared Cache in my browser and reloaded page. Also purged cache from my Cloudflare cache. However, now my CKEditor will not show up in the forum or the settings (Attached image). Am i missing a step? Any help is apprecited Thanks Caleeco
  3. Hello @S!r.ReaDy Thanks for the reply. I have attached a picture to illustrate what I mean. LEFT: Existing Theme with updated FA icons using custom CSS MIDDLE: New Theme RIGHT: The Icons I'm trying to edit (example on 1st subforum) So this line: .cForumList .cForumRow[data-categoryid="4"] .cForumTitle::before {content: "\f1c3";} Will edit the SOCIAL & RANDOM category. But I'm trying to edit the subforums items also Many Thanks Caleeco
  4. Hello, I am using the Fluent theme, and am trying to set the icons of each forum in 4.4.10. The theme interface allows you to edit the Category icon using the line of code below: .cForumList .cForumRow[data-categoryid="4"] .cForumTitle::before {content: "\f1c3";} However, this does not work for forums contained in each category. I presume i need to reference the data-forumid instead. But my random code editing doesn't seem to take effect! I can do a live edit using 'inspect element' and can change the font awesome icon, but cant figure out how to do it in the theme. I also tried following the guidance found here, but it doesn't seem to take effect: Any help is appreciated Cheers Caleeco
  5. You Legend! Works like a charm Thanks for helping me solve this problem , its much appreciated! Caleeco
  6. Hey @S!r.ReaDy I appreciate you taking the time to help! Im a HTML Noob! This is my topContributors Module <h3 class='ipsType_reset ipsWidget_title'>{lang="block_topContributors"}</h3> <div class='ipsTabs ipsTabs_small ipsTabs_stretch ipsClearfix' id='elTopContributors' data-ipsTabBar data-ipsTabBar-updateURL='false' data-ipsTabBar-contentArea='#elTopContributors_content'> <a href='#elTopContributors' data-action='expandTabs'><i class='fa fa-caret-down'></i></a> <ul role="tablist" class='ipsList_reset'> <li> <a href='#ipsTabs_elTopContributors_el_topContributorsWeek_panel' id='el_topContributorsWeek' class='ipsTabs_item ipsTabs_activeItem' role="tab" aria-selected='true'>{lang="week"}</a> </li> <li> <a href='{url="app=core&module=system&controller=ajax&do=topContributors&time=month&limit={$limit}&orientation={$orientation}"}' id='el_topContributorsMonth' class='ipsTabs_item' role="tab" aria-selected='false'>{lang="month"}</a> </li> <li> <a href='{url="app=core&module=system&controller=ajax&do=topContributors&time=year&limit={$limit}&orientation={$orientation}"}' id='el_topContributorsYear' class='ipsTabs_item' role="tab" aria-selected='false'>{lang="year"}</a> </li> <li> <a href='{url="app=core&module=system&controller=ajax&do=topContributors&time=all&limit={$limit}&orientation={$orientation}"}' id='el_topContributorsAll' class='ipsTabs_item' role="tab" aria-selected='false'>{lang="alltime"}</a> </li> </ul> </div> <section id='elTopContributors_content' class='ipsWidget_inner ipsPad_half'> <div id="ipsTabs_elTopContributors_el_topContributorsWeek_panel" class='ipsTabs_panel'> {template="topContributorRows" group="widgets" app="core" params="$topContributorsThisWeek, 'week', $orientation"} </div> </section> As you suggested, i cut the activeITEM and pasted it in the ALL section. I also update the aria-selected TRUE/FALSE statements. However, after Saving, the widget remains unchanged. What have i done wrong ? <h3 class='ipsType_reset ipsWidget_title'>{lang="block_topContributors"}</h3> <div class='ipsTabs ipsTabs_small ipsTabs_stretch ipsClearfix' id='elTopContributors' data-ipsTabBar data-ipsTabBar-updateURL='false' data-ipsTabBar-contentArea='#elTopContributors_content'> <a href='#elTopContributors' data-action='expandTabs'><i class='fa fa-caret-down'></i></a> <ul role="tablist" class='ipsList_reset'> <li> <a href='#ipsTabs_elTopContributors_el_topContributorsWeek_panel' id='el_topContributorsWeek' class='ipsTabs_item ipsTabs_activeItem' role="tab" aria-selected='false'>{lang="week"}</a> </li> <li> <a href='{url="app=core&module=system&controller=ajax&do=topContributors&time=month&limit={$limit}&orientation={$orientation}"}' id='el_topContributorsMonth' class='ipsTabs_item' role="tab" aria-selected='false'>{lang="month"}</a> </li> <li> <a href='{url="app=core&module=system&controller=ajax&do=topContributors&time=year&limit={$limit}&orientation={$orientation}"}' id='el_topContributorsYear' class='ipsTabs_item' role="tab" aria-selected='false'>{lang="year"}</a> </li> <li> <a href='{url="app=core&module=system&controller=ajax&do=topContributors&time=all&limit={$limit}&orientation={$orientation}"}' id='el_topContributorsAll' class='ipsTabs_item ipsTabs_activeItem' role="tab" aria-selected='true'>{lang="alltime"}</a> </li> </ul> </div> <section id='elTopContributors_content' class='ipsWidget_inner ipsPad_half'> <div id="ipsTabs_elTopContributors_el_topContributorsWeek_panel" class='ipsTabs_panel'> {template="topContributorRows" group="widgets" app="core" params="$topContributorsThisWeek, 'week', $orientation"} </div> </section> Many Thanks Caleeco
  7. Hello, I am running IPS 4.4.10, and would like to modify the Popular Contributors Widget that appears in the FORUM. By default the 'Week' tab is selected. Is it possible to make it so that the 'All Time' tab is instead selected by default? (see attached) Any help is appreciated Thanks Caleeco
  8. Hi Jeffrey, Thanks for the response, i went through the Settings > Support prompts and the interface seems to have fixed itself (all icons are back!) Out of interest how do I execute that second method? Do I flush dns via IPS interface or is that a command I would run on my WebHost? Thanks, marked as solved! Caleeco
  9. Hello, I moved my forum recently (from MyWebsite.com to MyWebsite.com/forum). The data seems to have ported across ok, but lots of images seem to be missing (things like the Quote button, reputation, icons in the main nav bar etc). So something has gone wrong. I wanted to re-install my current version 4.4.10, to hopefully fix these issues. So I followed the usual upgrade method > Backup > Upload IPS Files to install location > go to MyWebsite.com/forum/upgrade/ However, I now get an error message saying "There are no applications available to upgrade". Does anyone know what I'm doing wrong here? Many Thanks, Caleeco
  10. Never used anything other than windows! So i dont know what i could be missing haha
  11. My default is a light theme, I think a dark theme comes across as a section of the deep dark web ?
  12. AH ok, thanks for the clarification. I skipped that step.. and the install worked great! Must have been fixed in the 4.3.5 release as you say
  13. Thanks I just upgraded using your guide Could someone enlighten me as to what the above step does? Thanks Caleeco
  14. This looks clean... will look to integrate it and let you know how i get on
  15. Welcome! The translator is pretty good! ;)
×
×
  • Create New...