Pixelpost

Authentic Photoblog Flavour


Go Back   Pixelpost Forum > DEVELOPMENT > Template design and Front-End Code

Post Reply
 
Thread Tools
  #71  
Old 03-30-2008, 06:21 AM
mgd711's Avatar
mgd711 Offline
pp veteran
 
Join Date: Jun 2007
Posts: 56
Send a message via MSN to mgd711 Send a message via Yahoo to mgd711 Send a message via Skype™ to mgd711
How can I get <BROWSE_MONTHLY_ARCHIVE_PAGED> and <BROWSE_CATEGORIES_PAGED> to centralize on the 'Browse' template.

I tried what I thought was the obvious solution and it just crewed the whole template up.



Mike
__________________
The Fiery Scotsman
MGD Photography
Reply With Quote
  #72  
Old 03-30-2008, 09:14 AM
mgd711's Avatar
mgd711 Offline
pp veteran
 
Join Date: Jun 2007
Posts: 56
Send a message via MSN to mgd711 Send a message via Yahoo to mgd711 Send a message via Skype™ to mgd711
I eventually found it, just needed to stick it in the right place between the tables.



Mike
__________________
The Fiery Scotsman
MGD Photography
Reply With Quote
  #73  
Old 04-01-2008, 03:10 AM
mgd711's Avatar
mgd711 Offline
pp veteran
 
Join Date: Jun 2007
Posts: 56
Send a message via MSN to mgd711 Send a message via Yahoo to mgd711 Send a message via Skype™ to mgd711
I found something strange in Opera, in that the slide to open comments does not work.

with the URL of www.thefieryscotsman.com/index.php all that happens is that the image reloads but with http://www.thefieryscotsman.com/index.php?showimage=261 it works without any problem.

I'm using the latest version of Opera.



Mike
__________________
The Fiery Scotsman
MGD Photography
Reply With Quote
  #74  
Old 04-02-2008, 04:34 AM
fureddo Offline
forum loafer
 
Join Date: Jun 2007
Posts: 8
Quote:
Originally Posted by frozone View Post
Hi Fureddo,

just look in your tempate/simplicious/images/dark (or light) and replace the arrow images with the one from delicious. I think they are called next_btn.png and prev_btn.png

Hope that helps!

Frozone


oh by the way. I also did some minor modifications. My site http://clifficious.de
Frozone, thanks for the info, I got that figured out. Thanks for your help.

The last think I would like to do if anyone can help me is change the site logo on the top left. I would like it to be text just like the other text on the top right. So it all looks streamlined. Same font, size, etc... Anyone know how I could achieve this?


An Elegy of Sorts
Reply With Quote
  #75  
Old 04-04-2008, 02:51 AM
mgd711's Avatar
mgd711 Offline
pp veteran
 
Join Date: Jun 2007
Posts: 56
Send a message via MSN to mgd711 Send a message via Yahoo to mgd711 Send a message via Skype™ to mgd711
Quote:
Originally Posted by mgd711 View Post
I found something strange in Opera, in that the slide to open comments does not work.

with the URL of www.thefieryscotsman.com/index.php all that happens is that the image reloads but with http://www.thefieryscotsman.com/index.php?showimage=261 it works without any problem.

I'm using the latest version of Opera.



Mike
Further to the problem above, I was doing some experimenting and have found that if you go http://thefieryscotsman.com the sliding box for the comments works but not with http://www.thefieryscotsman.com, also when I added the line 'RewriteEngine on' in the dot htaccess file all attemps to reach http://thefieryscotsman.com resulted in a search engine listing several possible sites.

So I think the proble with the 'www' version is down to something in my dot htaccess file.

This is currently what is there.........

Code:
#RewriteEngine on
#RewriteCond %{HTTP_HOST} ^thefieryscotsman.com$ [OR]
#RewriteCond %{HTTP_HOST} ^www.thefieryscotsman.com$
#RewriteRule ^/?$ http://www.thefieryscotsman.com [R=301,L]

Options +FollowSymLinks
RewriteEngine on
RewriteCond % ^thefieryscotsman\.com [NC]
RewriteRule ^(.*)$ http://www.thefieryscotsman.com/$1 [L,R=301]

RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} !^www.thefieryscotsman.com       [NC]
RewriteRule (.*)         http://www.thefieryscotsman.com.com/$1 [R=301,L]
All I want is that all calls to the www and non-www versions are directed to the same page, the www version.



Mike
__________________
The Fiery Scotsman
MGD Photography
Reply With Quote
  #76  
Old 05-06-2008, 05:46 PM
dr_optical Offline
forum loafer
 
Join Date: Jan 2008
Posts: 5
Navigation overlay

I wanted the navigation overlay arrow to match Delicious so I copied and replaced the files and now I get this. http://www.photokinesis.com/ebay/Arrow.jpg Any suggestions?

Andy
Reply With Quote
  #77  
Old 05-07-2008, 02:37 PM
photography's Avatar
photography Offline
pp regular
 
Join Date: Apr 2008
Location: Romania
Posts: 25
Send a message via Yahoo to photography
In light.css and dark.css files from the template search for:

#menu_browse_prev:hover, #menu_browse_prev:visited:hover

and

#menu_browse_next:hover, #menu_browse_next:visited:hover
and replace each block with this, accordind to each file:

light.css:
Code:
#menu_browse_prev:hover, #menu_browse_prev:visited:hover {
	background: url('../images/light/prev_btn.png') center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

#menu_browse_next:hover, #menu_browse_next:visited:hover {
	background: url('../images/light/next_btn.png') center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

dark.css:
Code:
#menu_browse_prev:hover, #menu_browse_prev:visited:hover {
	background: url('../images/dark/prev_btn.png') center center;
	background-repeat: no-repeat;
	cursor: pointer;
}

#menu_browse_next:hover, #menu_browse_next:visited:hover {
	background: url('../images/dark/next_btn.png') center center;
	background-repeat: no-repeat;
	cursor: pointer;
}
PS. Make sure the path to each arrow image is correct (i mean url('../images/dark/next_btn.png').
__________________
· I'm sorry if I make some mistakes here and there, english is not my native language.
· Successfully using this method to fight spam since 01.03.2008. Spam comments encountered so far: 0.
· photography - my website

Last edited by photography; 05-07-2008 at 07:20 PM.
Reply With Quote
  #78  
Old 05-07-2008, 07:48 PM
dr_optical Offline
forum loafer
 
Join Date: Jan 2008
Posts: 5
Thank you! That did the trick. I appreciate your help.

Andy
Reply With Quote
  #79  
Old 05-08-2008, 02:27 PM
photography's Avatar
photography Offline
pp regular
 
Join Date: Apr 2008
Location: Romania
Posts: 25
Send a message via Yahoo to photography
Quote:
Originally Posted by dr_optical View Post
Thank you! That did the trick. I appreciate your help.

Andy
Anytime!
__________________
· I'm sorry if I make some mistakes here and there, english is not my native language.
· Successfully using this method to fight spam since 01.03.2008. Spam comments encountered so far: 0.
· photography - my website
Reply With Quote
  #80  
Old 05-09-2008, 12:50 AM
jamirdesign Offline
forum loafer
 
Join Date: May 2008
Posts: 3
Little Help?

Hi to all,

I am a new user of Pixelpost and been using Simplicious Templates. This is a very good one and I'm using it right now. I have a question though regarding to its features.

Can anyone tell me how to add or to display the number of Comments into its photo? And one thing more, if I'm browsing my gallery and using my laptop the comments popup is doing good in Mozilla and IE but in my Desktop/PC the popup wont appear? I've been using different Security Suite, do you think it just because of those Anti-Something?

Here's the link: http://www.jamirdesign.com/photogall...p?showimage=20 of the photos that have a comment.

Thanks guys in advance and more power to all of us.
Reply With Quote
Post Reply


Thread Tools




All times are GMT. The time now is 04:32 PM.

Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd. | Style Design: d3 designs