Clan Adverts

Sponsors

CT on Facebook

Latest Product

User Box

Anonymous
38.107.179.217
Nickname:

Password:

Security Code
Security Code
Type Security Code


PND Downloads Feed

Phpnuke Downloads
How to Delete or Reset yo...
How to Delete or Reset your PHPNuke Admin Account
Lost your admin password ?  Cant login to your admin account ? This s...
Back Online & Stuff
Back Online & Stuff
Look at us with our nifty website back up and running… Seriously...
How to edit the admins in...
How to edit the admins in the forums
Here is a way to make someone admin in your forums on your Evo site. I...
Demo Splash Screen
Demo Splash Screen
Ped @ Clan Themes has released a simple splash screen entrance hack. ...
Free Phpnuke Business The...
Free Phpnuke Business Theme 6
This is the 6th Business theme for Phpnuke that Clan Themes has releas...
Tricked Out Slider
Tricked Out Slider
We have seen some great new things come out of Tricked Out News and th...

Custom Work

PHP Nuke Custom Work

www.clanthemes.com :: View topic - need help
need help

4 Replies / 2461 Views


Post new topic   Reply to topic  

   www.clanthemes.com Forum Index » Modules

View previous topic :: View next topic


fr34k123
Reputation: 473 Add RepSubtract Rep
Local time: 4:55 PM

uk.gif

Armour Whore
Armour Whore

0.02 posts per day
Medals: 0

Joined: May 19, 2007
Last Visit: 11 Nov 2008
Posts: 43
Points: 695 

Post need help Posted: Wed Aug 08, 2007 4:16 pm

Hi was wondering if someone could help me out.

Basically i am looking for a way to make navigating through the pages of a specific review a bit more user friendly. At the moment when a review has been completed the only way to navigate through that specific review is by using the previous and next buttons at the bottom of each review.

I was looking for a way to implement either a simple drop down box within the actual review module, to have the page numbers displayed at the bottom of each review or alternatively have a block with a boarder within each review at the top of each page displaying the pages and titles.

E.g
page numbering at the bottom of each page (replacing the original paging within each review - i guess this would need a recode within the index,.php of the reviews module to do this):
1|2|3|4|5|6 and so on


Horizontal page listing (this would require manually editing each review and adding this code before each pagebreak within each review - some of our reviews are 13 pages long) - possibly this is the hardest way of doing things:

Introduction | Specifications | Packaging | A closer Look etc....
Website: horizontal list
Code:

<ul id="navlist">
    <li><a href="#">Home</a></li>
    <li><a href="#">Products</a></li>
    <li><a href="#">Store</a></li>
    <li><a href="#">About</a></li>
    <li class="last"><a href="#">Contact Us</a></li>
</ul>

Blend in some nice CSS

To convert an unordered list to a horizontal menu requires only a few CSS rules. Let's take a look:
#navlist li {
    display:inline;
    padding:0 .9em;
    border-right:1px solid #009;
}
#navlist li.last {
    border:none;
}
#navlist {
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:.7em;
    font-weight:bold;
    text-align:center;
}
#navlist a {
    color:#009;
    text-decoration:none;
}
#navlist a:hover {
    color:#39F;
    text-decoration:underline;
}




Block with boarder within each review with page and title (again this would need to be manually added just after each pagebreak within each specific review):
Page 1: Introduction
Page 2: Specifications
Page 3: Package Contents
Page 4: A Closer Look
Page 5: Testing
Etc......

I have found something similar but am unsure where i should place the css and how i would align this menu to be displayed within the top right corner of each page within each specific review:

Website: vertical list with boarder

Code:
<div id="navigationcontainer">
<ul id="navigation">
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
<li><a href="#">Link 5</a></li>
<li><a href="#" class="bottomborder" >Link 6</a></li>
</ul></div>

CSS

#navigation li a {
color: #800000;
text-decoration: none;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #666666;
width: 100px;
display: block;
padding: 3px;
border-right-width: 1px;
border-left-width: 1px;
border-right-style: solid;
border-left-style: solid;
border-right-color: #666666;
border-left-color: #666666;
text-align: center;
}
#navigation {
width: 100px;
}
#navigation li {
list-style-type: none;
}
#navigation li a:hover {
text-decoration: none;
color: #800000;
background-color: #DBDBDB;
}
.bottomborder {
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #666666;
}




My phpnuke expertise is limited to if i know what to put and where i can do it.

any help would be greatly apreciated
 

 
View user's profileSend private messageSend e-mailVisit poster's website Reply with quote

floppy
Reputation: 2088.8 Add RepSubtract Rep
votes: 22
Local time: 11:55 AM
Location: Jackson Mississippi
usa.gif

Site Admin
Site Admin

1.17 posts per day
Medals: 2 (View more...)
Super Dedicated User (Amount: 1)
Scripts/Coder
Scripts/Coder
Joined: Nov 14, 2006
Last Visit: 03 May 2012
Posts: 2353
Points: 132516 

Post need help Posted: Thu Aug 09, 2007 3:10 am

Shop Purchases:
Clan Roster 2.0 · Multi Gaming (Warrior) Evo Theme · COD6 ModernWarfare 2 Teaser Splash Screen · Left for Dead Evo Extreme Version

With a little recoding of your idea (which I don't fully understand yet). We could possibly work up a function for all pages.

Try to give me a few more idea's of exactly what you want?
 

Phpnuke Downloads | VMaxxRx Male Enhancement  
View user's profileSend private messageVisit poster's website Reply with quote

fr34k123
Reputation: 473 Add RepSubtract Rep
Local time: 4:55 PM

uk.gif

Armour Whore
Armour Whore

0.02 posts per day
Medals: 0

Joined: May 19, 2007
Last Visit: 11 Nov 2008
Posts: 43
Points: 695 

Post need help Posted: Sun Aug 12, 2007 12:15 pm

Hi Floppy
Thanks for the reply.

To better explain what i was hoping to achieve (or something similar) i have taken some screenshots from other popular sites which use an easy navigation system at the bottom of all their review pages:









Thanks for all your help.
 

 
View user's profileSend private messageSend e-mailVisit poster's website Reply with quote


floppy
Reputation: 2088.8 Add RepSubtract Rep
votes: 22
Local time: 11:55 AM
Location: Jackson Mississippi
usa.gif

Site Admin
Site Admin

1.17 posts per day
Medals: 2 (View more...)
Dedication (Amount: 1)
Scripts/Coder
Scripts/Coder
Joined: Nov 14, 2006
Last Visit: 03 May 2012
Posts: 2353
Points: 132516 

Post need help Posted: Sun Aug 12, 2007 2:03 pm

Shop Purchases:
Clan Roster 2.0 · Multi Gaming (Warrior) Evo Theme · COD6 ModernWarfare 2 Teaser Splash Screen · Left for Dead Evo Extreme Version

Wow thats a project you got there bud. I don't think you can include the form on each page because it would require a variable from the module such as $pagenumber.

Hmm.... The only way I see it happening is with a nice load of custom coding in the module.
 

 
View user's profileSend private messageVisit poster's website Reply with quote

fr34k123
Reputation: 473 Add RepSubtract Rep
Local time: 4:55 PM

uk.gif

Armour Whore
Armour Whore

0.02 posts per day
Medals: 0

Joined: May 19, 2007
Last Visit: 11 Nov 2008
Posts: 43
Points: 695 

Post need help Posted: Sun Aug 12, 2007 2:43 pm

Hi Floppy,
Thanks for the quick reply.

I had a feeling it would require custom coding. As i have never coded anything before without clear instructions and the code that needs to be added - i wouldnt be able to do this - wouldnt know where to begin or even know what to add

If someone could help me with this project i would be happy to provide them with the reviews module we use (which took a hell of a lot of coding help) to get it working and displaying the reviews correctly.

Thanks
 

 
View user's profileSend private messageSend e-mailVisit poster's website Reply with quote
Post new topic   Reply to topic  
   www.clanthemes.com Forum Index » Modules


 
4 Replies / 2461 Views
Page 1 of 1
All times are GMT
Display posts from previous:   
 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum