MyBB Community Forums

Full Version: Flatty Theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
So basicly yeah, the "Forum" tab in the header navigation menu links to my homepage

dynastyroleplay,xyz

BUT i want it to link to dynastyroleplay.xyz/index.php

How would i do this?
(2017-04-21, 05:47 PM)disovo Wrote: [ -> ]So basicly yeah, the "Forum" tab in the header navigation menu links to my homepage

dynastyroleplay,xyz

BUT i want it to link to dynastyroleplay.xyz/index.php

How would i do this?

Edit the theme templates header_welcomeblock_guest and header_welcomeblock_member

Search in both templates for:
<li><a href="{$mybb->settings['homeurl']}">Forums</a></li>


Replace line with:
<li><a href="{$mybb->asset_url}/index.php">Forums</a></li>
Hello,

The theme is very pretty.
However, I would like to expand the #content (forums list). I think it's too compact. I'd like it to take up more space.

I searched but I can not find ... An idea?

thank you in advance
(2017-04-21, 09:05 PM)SvePu Wrote: [ -> ]
(2017-04-21, 05:47 PM)disovo Wrote: [ -> ]So basicly yeah, the "Forum" tab in the header navigation menu links to my homepage

dynastyroleplay,xyz

BUT i want it to link to dynastyroleplay.xyz/index.php

How would i do this?

Edit the theme templates header_welcomeblock_guest and header_welcomeblock_member

Search in both templates for:
<li><a href="{$mybb->settings['homeurl']}">Forums</a></li>


Replace line with:
<li><a href="{$mybb->asset_url}/index.php">Forums</a></li>

Thanks!
(2017-04-19, 09:33 PM)BritishKitten Wrote: [ -> ]
(2017-04-19, 08:32 PM)Rōshi Wrote: [ -> ]
(2017-04-03, 08:07 PM)BritishKitten Wrote: [ -> ]Hey Roshi!

I'm kinda stuck on something, how can I separate the 'thread_status' bit of the forumdisplay? I'd like seperate icons if a thread is hot, stickied, closed, new post etc instead of it replacing just one icon.

Sorry for the late reply, unfortunately I'm not sure what exactly you're trying to achieve here.

MyBB has one icon for every thread status which changes, I'd like to split them up so three icons would show if the thread is hot, locked and pinned instead of just one. http://i.imgur.com/0dBs9H0.png

I will reply to you shortly.

(2017-04-21, 10:42 PM)Mathie Wrote: [ -> ]Hello,

The theme is very pretty.
However, I would like to expand the #content (forums list). I think it's too compact. I'd like it to take up more space.

I searched but I can not find ... An idea?

thank you in advance

Do you want to increase the width globally or just on a certain page? The "wrapper" class is responsible for the width of the main content.
Ok, how do I change the color of this bar?
[Image: 8vDior0.png]
Same question for the portal.php one
Edit the background/backgroud-color style of CSS class tcat in Flatty global.css
how do i change the language on the theme? http://prntscr.com/fnzkpt
Some language phrases are hardcoded - you've to change them in theme templates e.g. in header or footer template
Bullet points seems to be missing when doing a list.
I added the following code to global.css but still the same:

ul.mycode_list,
ol.mycode_list {
list-style: none !important;
padding: 0.5em 1em !important;
}

ol.mycode_list li{
list-style-type: decimal !important;
margin-left: 1.3em !important;
}

ul.mycode_list li {
font-size: 18px;
padding-left: 1.3em !important;
}

ul.mycode_list li:before {
content: "\f111" !important;
font-family: FontAwesome !important;
display: inline-block !important;
margin-left: -1.3em !important;
width: 1.3em !important;
font-size: 90% !important;
}
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24