Advertisement
-
Posts
42 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Downloads
Everything posted by Heroes Killer
-
Font-size in percentages
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
It sounds like a solution! I'll try it as soon as I come home. Custom font size inside ACP's Test BBCode Parsing works. // edit: 19:27 (UTC +1). Yes! It seems this is working. Thank you very much! I've just edited it a little (because of big numbers - || instead of &&). -
Font-size in percentages
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
Huh, thank you for detailed answer. It was not neccessary. I'm not really confused, I just wanted to be sure if I hadn't made any mistake in syntax etc... I hadn't. Code is exactly same as yours, but it doesn't work for me. -
Font-size in percentages
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
Thanks, it's very good perception! I'll try. // Hmm, I tried it and it doesn't work. Could you send me a screen of your default.php (or code)? Maybe I've made some mistake. -
Font-size in percentages
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
Thank you anyway... I'll look at it tommorow (there is very late here). Sry, but I absolutely don't understand you. -
Font-size in percentages
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
-
Font-size in percentages
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
Thank you, but it seems that it's same. -
Font-size in percentages
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
Unfortunatelly, changing defaults.php does not work... Switching between Standart and Rich text editor solves that underlined text, but not font-sizes. -
Font-size in percentages
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
I understand that, I just wanted to edit font-sizes (to be compatible). 1 => 8 ... It's substitution? For example, could I write 150 => 16, so that size 150(% in pphBB) would be size 16 here? By the way, BBCode for underlined text seems to be the same both for phpBB and IPB. However, it's not working properly (see Spoiler 1). -
Font-size in percentages
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
Thank you, but it's not exactly what I mean. I am not converting. I'll try to explain it via images. Posts are not fully compatible. Text in post editor, same for phpBB and IPB (copied). How does it look in phpBB. How does it look in IPB. So... I tried to copy that to BBCode mode (= ). Here it seems fine, except font-sizes. For example... -
Greetings. Is there some way to change font-size settings to percentages? If I set bbcode-mode in post-editor, then THIS is 50. But I'd like to have it like this: = 150% of normal font-size. Thanks in advance. // By the way - the reason is compatibility with phpBB posts.
-
Hi. Use combination of Hide Content and Ajax Thanks.
-
Space in PostControls
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
Yeah, it's OK now. Thanks. -
Greetings. Could somebody tell me, how to fix this problem? I think the problem has appeared after I'd installed some skin. However, I can't find appropriate template. Thanks in advance. // Well, it seems that this is problem with my browser. I've just checked it with Firefox and it's ok there. Deleting cache & cookies doesn't help, any ideas?
-
Hide links from guests in specific categories?
Heroes Killer replied to Oturo's question in Invision Support Archives
This should be what you are looking for. -
Forum Icons 2.0.0 doesn't show on sub-forums.
Heroes Killer replied to Shnepsey's question in Invision Support Archives
Heh, glad to hear it, you're welcome. -
Forum Icons 2.0.0 doesn't show on sub-forums.
Heroes Killer replied to Shnepsey's question in Invision Support Archives
Well, it's not bad idea. Maybe there could be some little error that causes the problem. The main file I'm interested in is forumIndexTemplate. -
Forum Icons 2.0.0 doesn't show on sub-forums.
Heroes Killer replied to Shnepsey's question in Invision Support Archives
Hello. I suppose you had already made changes to Board Index -> boardIndexTemplate. These changes make possible custom icons on the BoardIndex (mainpage). However, have you also changed Forum View -> forumIndexTemplate? If not... ___________________________________________ Go to: Look & Feel -> Look & Feel -> Manage Skin Sets & Templates -> [your skin] -> Manage Templates & CSS -> Forum View -> forumIndexTemplate Find: <td class='col_c_icon'> <if test="$forum_data['_has_unread']"> <a id='forum_img_{$forum_data['id']}' href="{parse url="app=forums&module=forums§ion=markasread&marktype=forum&forumid={$forum_data['id']}&returntoforumid={$this->request['f']}&i=1" base="public"}" data-tooltip="{$this->lang->words['bi_markread']}" class='forum_marker'><img src='{$this->settings['img_url']}/f_icon.png' /></a> <script type='text/javascript'> ipb.global.registerMarker( "forum_img_{$forum_data['id']}", "{$forum_data['img_new_post']}", markerURL + "&forumid={$forum_data['id']}" ); </script> <else /> <img src='{$this->settings['img_url']}/f_icon_read.png' /> </if> </td> and change it to: <td class='col_c_icon'> <if test="$forum_data['_has_unread']"> <a id='forum_img_{$forum_data['id']}' href="{parse url="app=forums&module=forums§ion=markasread&marktype=forum&forumid={$forum_data['id']}&returntoforumid={$this->request['f']}&i=1" base="public"}" data-tooltip="{$this->lang->words['bi_markread']}" class='forum_marker'><if test="$forum_data['icon'] != '' AND $forum_data['icon'] !='0'">{$forum_data['icon']}<else /><img src='{$this->settings['img_url']}/f_icon.png' /></if></a> <script type='text/javascript'> <if test="$this->settings['dp3_fi_mode'] == 'replace'">var unreadIcon = "{$forum_data['icon_read']}";</if> ipb.global.registerMarker( "forum_img_{$forum_data['id']}", "{$forum_data['img_new_post']}", markerURL + "&forumid={$forum_data['id']}" ); </script> <else /> <if test="$forum_data['icon'] != '' AND $forum_data['icon'] !='0'">{$forum_data['icon']}<else /><img src='{$this->settings['img_url']}/f_icon_read.png' /></if> </if> </td> And don't forget to find: <a href="{parse url="showforum={$forum_data['id']}" seotitle="{$forum_data['name_seo']}" template="showforum" base="public"}" title='{$forum_data['name']}'>{$forum_data['name']}</a> change it to: <a href="{parse url="showforum={$forum_data['id']}" seotitle="{$forum_data['name_seo']}" template="showforum" base="public"}" title='{$forum_data['name']}'><if test="$forum_data['_name']">{$forum_data['_name']}<else />{$forum_data['name']}</if></a> -
[Reputation / Like button] Change it's position
Heroes Killer replied to Heroes Killer's topic in IPB 3.4 Legacy
Thank you Sanctuary, I'll add a link to your post in the first post. By the way, it seems, that some idiot is having fun with giving negative reputation here. Both my and your posts. -
[Reputation / Like button] Change it's position
Heroes Killer replied to Heroes Killer's topic in IPB 3.4 Legacy
I am sorry, it seems there is no easy way how to do it. Maybe externally via CSS... -
Greetings. In view of the fact that I had tried to find on the whole internet how to change position of Reputation Bar to the left side of posts and couldn't find it anywhere, now I know how to do it and here is the tutorial. Thanks to user Sanctuary, who told me how to change position of Like-button, so that I could easily find out how to change position of Rep-button. This tutorial shows how to move it to the left side of a post (see the screens below). If you would like to center it in the middle, see by Sanctuary. How to change position of Like button? Simply go to: ACP -> Look & Feel -> Your Skin -> Other Global Templates -> repButtons, find this: <div class='ipsLikeBar right clearfix' id='{$data['domCountId']}'> and replace it with: <div class='ipsLikeBar left clearfix' id='{$data['domCountId']}'> How to change position of Reputation buttons? Simply go to: ACP -> Look & Feel -> Your Skin -> Other Global Templates -> repButtons, find this: <div class='rep_bar clearfix <if test="pos:|:!$data['position'] || $data['position'] == 'right'">right</if>' id='{$data['domCountId']}'> and replace it with: <div class='rep_bar clearfix <if test="pos:|:!$data['position'] || $data['position'] == 'left'">left</if>' id='{$data['domCountId']}'>
-
Reputation button position
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
It's not entirely correct, however, thank you very much and +rep. The code above is related to LikeBox only. If anyone would like to change position of RepBar, change this (it is located in the same template as the code above --> repButtons): <div class='rep_bar clearfix <if test="pos:|:!$data['position'] || $data['position'] == 'right'">right</if>' id='{$data['domCountId']}'> to <div class='rep_bar clearfix <if test="pos:|:!$data['position'] || $data['position'] == 'left'">left</if>' id='{$data['domCountId']}'> -
Greetings, it's me again. Does anybody know how to move reputation button to the left?
-
Forum icons - icon doesn't display
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
Yes, image is getting uploaded and it points to: my-site.nz/uploads/forumicons/icon.png Nevertheless, I've found out what the problem was - permissions. I went to my FTP, found folder called "forumicons" and changed it's CHMOD to 775, so that it could be displayed and launched publicly. Now, it's displaying correctly. Anyway, thanks for replies. -
Forum icons - icon doesn't display
Heroes Killer replied to Heroes Killer's question in Invision Support Archives
Yes, I followed it. However, it doesn't matter - the problem is not in the code, it should display the image even without any code changes (the screenshot is from ACP). This is not how the hook works, it has it's own uploader. -
Hello. I have a little problem with modification called Forum Icons (v 2.0.0). Installation was successful, I've also made code changes. However, when I upload a icon, it shows me this: Any idea how to fix it? Thanks in advance.