MyBB Community Forums

Full Version: Apart for 1.6 [Released]
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 25 26 27 28 29 30 31 32 33 34 35 36
(2010-09-11, 09:35 PM)Cayo Wrote: [ -> ]First, many thanks to Justin for this very awesome theme series.

As far as I know, a german button set hasn't been released yet.
So I've just created one and now I would like to share it with you.

Download: German button set

If there are any questions or suggestions, just send me a PM Wink

Hey, can you re-upload the Button Set please ?
File is down and I search for a long time for a german button set...

Greetz
i really like them, they're very clean and well done Smile
Those themes are 'Fluid' style. How I can make them like 'Fixed'?
(2010-09-08, 10:42 AM)stoffer Wrote: [ -> ]Hi to all.
Here's the Spanish versions of the post icons just in case you need them.
Cheers.
Spanish Icons for Apart 1.6 Theme on Megaupload

Hey Stoffer, thanks a lot for the buttons.
Now, I see your file has 4 more buttons than the original one, 'Gracias' for example. Are they intended to be used with some particular plug-in? If affirmative, which one?


----------------------------------------------------

Hello.

I have a new question, since this is my first webpage, I'm not pretty sure how to fix this.

This is the header I want to have:

[Image: 442logo2.png]

I replaced the logo.png and header.png images for the appropriates ones into the flame folder (attached you can see the last one), but all that I got is this

[Image: 142logo1.png]

As you can see, there is no change reflected on it. The background is the same and the logo is just an empty box. I'm sure the right files are in the right place: html_public > foro > images > flame but still nothing comes up.
Could somebody please indicate me how to proceed with this?
Well, finally made it. Thanks to the directions left by Cayo (http://community.mybb.com/thread-74333-p...#pid581385), finally I got the header just the way I wanted to have.

Now, nobody answered this question:

(2010-10-07, 03:25 AM)emxgarcia Wrote: [ -> ]Regarding this theme (Apart) I would like to remove the form home link located on the upper left corner. How can I do this? See attached image.

and that's exactly the one I'll like to know. Anybody? Thanks.
the link is not found
Hi,

Unfortunately, I have a big problem with the Sky Theme Apart, the Chrome browser, I get this presentation shown.
Can you help ...

Link
cleverhund.de

Thanks in advance.

Regards
Gregor
How can I edit the white background outside of the posts please? It hurts my eyes quite a lot (no offence).

Any help is much appreciated.
(2010-12-31, 07:37 AM)Gregor.J Wrote: [ -> ]Unfortunately, I have a big problem with the Sky Theme Apart, the Chrome browser, I get this presentation shown.
Can you help ...

http://community.mybb.com/attachment.php?aid=21065

Though it appears you are no longer using Apart, this also seems to be a frequent issue, so I will address this in a general manner. First, let me say that this is entirely the fault of modifications you have made to the theme. The top links menu in Apart is designed differently than the default top links menu, and has different code considerations. You cannot use the format you are used to using when adding top links.

Let me say that again: You cannot use the normal MyBB top links format when adding links to an Apart theme. The top links menu in Apart is designed differently to use CSS for the images.

By the "normal" format, I mean this, where you have a list item, link, and image embedded in the link:

<li><a href="http://example.com/gallery.php"><img src="http://example.com/images/IMAGE" alt="" title="" />Gallery</a></li>

This will not work properly and will cause the issue you are experiencing. Instead, in the header template, you must add code similar to the following to the top links menu (matching the existing links):

<li><a href="http://example.com/gallery.php" class="CLASS">Gallery</a></li>

Then, for the image to be shown, you must edit global.css in Advanced Mode and, after the following:

#panel .upper ul.top_links a.help {
	background-image: url(../../../images/dawn/icons/help.gif);
}

add:

#panel .upper ul.top_links a.CLASS {
	background-image: url(../../../images/IMAGE);
}

where CLASS is the class name you used above and IMAGE is the path to the original image (from the MyBB images directory). For instance, for the above link (where you're linking to a gallery), you could use gallery as the class and icons/photo.gif for the image, assuming you have an image called photo.gif in your MyBB images/icons directory.

If you have any questions with this issue, please ask.

Thanks.
(2011-01-01, 08:38 PM)Hawk Wrote: [ -> ]How can I edit the white background outside of the posts please? It hurts my eyes quite a lot (no offence).

Any help is much appreciated.

Edit the background attribute for #content in global.css, changing the background color to your liking.
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 25 26 27 28 29 30 31 32 33 34 35 36