Recent Topics

1 Sep 15, 2009 23:54    

My b2evolution Version: Not Entered

Converted WP Pyrmont V2 theme

Fixed width adapted for 1024px screens
After posts & Post bottom containers
[url=http://forums.b2evolution.net/viewtopic.php?t=15593]Advanced Search[/url] & [url=http://forums.b2evolution.net/viewtopic.php?t=17010]Star rating[/url] ready
Gravatar comments
No b2evo 3.x footer spam ;)
IE6 compatible
Print stylesheet

[url=http://skins.b2evo.net/2/index.php?tempskin=pyrmont]DEMO[/url]

[url=http://www.sonorth.com/travel/download/X7T8F36KH1]Download[/url]

http://demo.sonorth.com/skins/pyrmont/skinshot_lg.jpg

2 Jan 02, 2010 22:56

For some reason, the number of comments appears at the top of the post. I think most people are used to seeing them below. How do I disable the gravatar stuff/no avatars? : p

Also, how to justify the text on blog entries?

Apart from that, awesome work 5/5

3 Jan 02, 2010 23:43

For some reason, the number of comments appears at the top of the post. I think most people are used to seeing them below.

Open the file index.main.php on line 80. Move the feedback block below the post content.

// POST CONTENT INCLUDED HERE
	skin_include( '_item_content.inc.php', $params );
	
	// Link to comments, trackbacks, etc.:
	$Item->feedback_link( array(
		  'type'		=> 'comments',
		  'link_before'	=> '<div style="margin:0 20px 20px 0; font-size:12px; text-align:right">',
		  'link_after'	=> '</div>',
		  'link_text_zero'	=> '#',
		  'link_text_one'	=> '#',
		  'link_text_more'	=> '#',
		  'link_title'		=> '#',
		  'use_popup'		=> false,
	  ) );

How do I disable the gravatar stuff/no avatars?

Comment or delete line 83 in _item_content.inc.php

// Display gravatar
//$Skin->disp_gravatar_img( $Comment );

How to justify the text on blog entries?

Add text-align:justify in style.css on line 93

div#main div.bPost div.content_excerpt { padding: 5px 20px 10px 20px; overflow: hidden; font-size: 13px; text-align:justify }

Also, where do I add links to the header, next to the home and login links?

Add a Free HTML widget to the Menu container. Use the following code

<li><a href="http://myurl.com">My Link</a></li>

Apart from that, awesome work 5/5

Thanks

5 Jan 03, 2010 00:51

Regarding the comments appearing below, did you mean to check the _item_block_inc.php instead? That's the only place I can find the lines in question.

Edit: All sorted, nicely done.

7 Jan 03, 2010 18:32

Just noticed a small inconsistency between browsers.

Google chrome renders the extra menu links as standard links (they appear orange rather than white, like the rest).

http://www.marunchak.co.uk

Probably Chrome's fault, it' still new after all. :]

8 Jan 03, 2010 20:31

You have to clean up the code in menu container. This is what you have now

<li><a href="http://zante.myzen.co.uk/blog/blog1.php">Home</a></li><a href="http://zante.myzen.co.uk/blog/blog1.php/engines/"></a><li><a href="http://zante.myzen.co.uk/blog/blog1.php/engines/">      
     3D Engines</a></li><a href="http://zante.myzen.co.uk/blog/blog1.php/engines/"> </a>
<a href="http://zante.myzen.co.uk/blog/blog1.php/currentproj/"></a><li><a href="http://zante.myzen.co.uk/blog/blog1.php/currentproj/">      
    &nbsp; Projects</a></li><a href="http://zante.myzen.co.uk/blog/blog1.php/tutorials/"></a><li><a href="http://zante.myzen.co.uk/blog/blog1.php/tutorials/">      
    &nbsp; Tutorials</a></li>&nbsp;&nbsp;&nbsp;<a href="http://zante.myzen.co.uk/blog/blog1.php/engines/unity3d/"></a><li><a href="http://zante.myzen.co.uk/blog/blog1.php/engines/unity3d/">Unity 3D</a></li>

And this is what you should change it to

<li><a href="http://zante.myzen.co.uk/blog/blog1.php">Home</a></li>
<li><a href="http://zante.myzen.co.uk/blog/blog1.php/engines/">3D Engines</a></li>
<li><a href="http://zante.myzen.co.uk/blog/blog1.php/currentproj/">Projects</a></li>
<li><a href="http://zante.myzen.co.uk/blog/blog1.php/tutorials/">Tutorials</a></li>
<li><a href="http://zante.myzen.co.uk/blog/blog1.php/engines/unity3d/">Unity 3D</a></li>

9 Jan 03, 2010 23:41

Sorted, nice one.

Thanks for your excellent support!

10 Jan 04, 2010 16:44

Last question ever... ;)

What's the most reliable way to replace the text-based title at the top of a blog with a logo?

11 Jan 04, 2010 17:58

Place a Blog logo widget in header container above the Tagline, then remove the Blog title widget. Don't forget to upload an image in blog media directory like /media/blogs/a/

You can style the logo using this class in style.css

div#header div.blog_title h1 img { SOMETHING HERE }

12 May 31, 2010 14:04

*I'm an arse so all my spamming crap got deleted and I got made ino a muppet :(

13 Jun 18, 2010 12:51

Hi,

I have a pretty simple question I think. But first: Nice Skin I love it:)

Now to the issue. Let's say I want to do some minor color changes e.g. everything thats now orange (ff5a00) should be red (bd0000).
So i make a new date.gif and make changes to the style.css (ff5a00->bd0000).
Works fine but links in posts or in the sidebar are still orange.
What would I have to change to get those red?

on a sidenote: I'm no webdesigner programmer or anything like that.....

to check what i'm talking about: http://blog.sn00kums.org

14 Jun 18, 2010 13:50

open up styles.css and change below; -line 31 approx.-

a {
border:medium none;
color:#FF5A00;
text-decoration:none;
}

15 Jun 18, 2010 14:31

tilqicom wrote:

open up styles.css and change below; -line 31 approx.-

a {
border:medium none;
color:#FF5A00;
text-decoration:none;
}

Thx but there is no appearance of ff5a00/FF5A00 in styles.css. I already replaced every encounter with bd0000.

You can take a look at it: http://blog.sn00kums.org/style.css

17 Jun 21, 2010 17:08

sam2kb wrote:

Move your modified style.css here http://blog.sn00kums.org/skins/pyrmont/style.css ;)

It is. The other one you can look at is just a copy.

EDIT: Well at least I thought so... thanks for the help. Seems that I forgot to upload the newest version to the pyrmont folder. So thx again. I wont bother you anymore :)

19 Jun 24, 2010 16:19

ah dammit! I have to bother another time :D

(How) Can I place an Image in the background?

Not the Blogtitle as described earlier but the entire bg.

20 Jun 24, 2010 17:15

Just edit this image http://blog.sn00kums.org/skins/pyrmont/images/bg.gif

If you want the image to repeat along the whole page you should add it do body

body { font-family: "Lucida Grande", Arial, Helvetica, Sans-Serif; background-color: #121315; background: url(images/some_image.jpg) }

21 Jun 28, 2010 11:08

Thanks that works (of course DUH! :D)
but it seems to be limited in size. Is there any way to use a larger image that fills the entire background without repeating?

22 Jun 28, 2010 17:44

Upload your own image and use

background: url(images/some_image.jpg) no-repeat

24 Jul 18, 2010 00:14

Skin updated
Fixed some display bugs

26 Aug 22, 2010 01:52

Feel free to customize the skin and release it, I don't have plans about this skin.


Form is loading...