| View previous topic :: View next topic |
| Author |
Message |
sam2kb da ruski mafia
Joined: 02 Dec 2007 Posts: 2927
   votes: 53
|
Posted: Tue Sep 15, 2009 16:54 Post subject: [3.x] New Skin: Pyrmont V2 |
|
|
My b2evolution Version: Not Entered
Converted WP Pyrmont V2 theme
Fixed width adapted for 1024px screens
After posts & Post bottom containers
Advanced Search & Star rating ready
Gravatar comments
No b2evo 3.x footer spam
IE6 compatible
Print stylesheet
DEMO
Download
 _________________ Russian b2evolution | Download
Last edited by sam2kb on Sat Jul 17, 2010 17:17; edited 2 times in total |
|
| Back to top |
|
 |
zante Seasoned Poster

Joined: 15 Jul 2008 Posts: 44
   
|
Posted: Sat Jan 02, 2010 16:56 Post subject: |
|
|
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
Last edited by zante on Sat Jan 02, 2010 17:45; edited 1 time in total |
|
| Back to top |
|
 |
sam2kb da ruski mafia
Joined: 02 Dec 2007 Posts: 2927
   votes: 53
|
Posted: Sat Jan 02, 2010 17:43 Post subject: |
|
|
| Quote: |
| 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.
| PHP: |
// 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,
) );
|
| Quote: |
| How do I disable the gravatar stuff/no avatars? |
Comment or delete line 83 in _item_content.inc.php
| PHP: |
// Display gravatar
//$Skin->disp_gravatar_img( $Comment );
|
| Quote: |
| How to justify the text on blog entries? |
Add text-align:justify in style.css on line 93
| Code: |
| div#main div.bPost div.content_excerpt { padding: 5px 20px 10px 20px; overflow: hidden; font-size: 13px; text-align:justify } |
| Quote: |
| 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
| Code: |
| <li><a href="http://myurl.com">My Link</a></li> |
| Quote: |
| Apart from that, awesome work 5/5 |
Thanks _________________ Russian b2evolution | Download |
|
| Back to top |
|
 |
zante Seasoned Poster

Joined: 15 Jul 2008 Posts: 44
   
|
Posted: Sat Jan 02, 2010 18:06 Post subject: |
|
|
Haha, such a fast reply! Thank you again, I'm currently using the skin.
http://www.marunchak.co.uk |
|
| Back to top |
|
 |
zante Seasoned Poster

Joined: 15 Jul 2008 Posts: 44
   
|
Posted: Sat Jan 02, 2010 18:51 Post subject: |
|
|
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.
Last edited by zante on Sat Jan 02, 2010 18:56; edited 1 time in total |
|
| Back to top |
|
 |
sam2kb da ruski mafia
Joined: 02 Dec 2007 Posts: 2927
   votes: 53
|
|
| Back to top |
|
 |
zante Seasoned Poster

Joined: 15 Jul 2008 Posts: 44
   
|
Posted: Sun Jan 03, 2010 12:32 Post subject: |
|
|
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. :] |
|
| Back to top |
|
 |
sam2kb da ruski mafia
Joined: 02 Dec 2007 Posts: 2927
   votes: 53
|
Posted: Sun Jan 03, 2010 14:31 Post subject: |
|
|
You have to clean up the code in menu container. This is what you have now
| Code: |
<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/">
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/">
Tutorials</a></li> <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
| Code: |
<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> |
_________________ Russian b2evolution | Download |
|
| Back to top |
|
 |
zante Seasoned Poster

Joined: 15 Jul 2008 Posts: 44
   
|
Posted: Sun Jan 03, 2010 17:41 Post subject: |
|
|
Sorted, nice one.
Thanks for your excellent support! |
|
| Back to top |
|
 |
zante Seasoned Poster

Joined: 15 Jul 2008 Posts: 44
   
|
Posted: Mon Jan 04, 2010 10:44 Post subject: |
|
|
Last question ever...
What's the most reliable way to replace the text-based title at the top of a blog with a logo? |
|
| Back to top |
|
 |
sam2kb da ruski mafia
Joined: 02 Dec 2007 Posts: 2927
   votes: 53
|
Posted: Mon Jan 04, 2010 11:58 Post subject: |
|
|
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
| Code: |
| div#header div.blog_title h1 img { SOMETHING HERE } |
_________________ Russian b2evolution | Download |
|
| Back to top |
|
 |
bevisaxel Muppet
Joined: 31 May 2010 Posts: 1  
|
Posted: Mon May 31, 2010 7:04 Post subject: |
|
|
*I'm an arse so all my spamming crap got deleted and I got made ino a muppet  |
|
| Back to top |
|
 |
Sn00kumS New Poster

Joined: 18 Jun 2010 Posts: 6  
|
Posted: Fri Jun 18, 2010 5:51 Post subject: |
|
|
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 |
|
| Back to top |
|
 |
tilqicom Guru

Joined: 14 Nov 2007 Posts: 1624
       votes: 20
|
Posted: Fri Jun 18, 2010 6:50 Post subject: |
|
|
open up styles.css and change below; -line 31 approx.-
| Quote: |
a {
border:medium none;
color:#FF5A00;
text-decoration:none;
} |
_________________
.: linkback ≠ spam, yes to linkback, no to spam  |
|
| Back to top |
|
 |
Sn00kumS New Poster

Joined: 18 Jun 2010 Posts: 6  
|
Posted: Fri Jun 18, 2010 7:31 Post subject: |
|
|
| tilqicom wrote: |
open up styles.css and change below; -line 31 approx.-
| Quote: |
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 |
|
| Back to top |
|
 |
|