The Official Website of AgoraCart and Agora.cgi
AgoraCart.com Demos Download AgoraCart User Manuals & Wiki Gold Members Forum Go Gold Now! Gold Version Memberships

AgoraCart.com

About
Features
Download
Payment Gateways
Send a Donation
Founders Club
BLOG: News & Updates

Showcases & Demos

AgoraCart Demos
Shop Live Stores

Downloads & Add-ons

Gold Version Downloads
DBwizz Database Mgr.
AgoraCart.com Store

Help & Support

User Manuals
Gold Version Users Forum
Gold Version Chat
Tech Support
Certified Agora Pros
Certified Designers
Hire a Freelancer

Gold Version Members

Member Benefits
Join Today!
Gold Members Home
Gold Version Users Forum
Gold Version Chat Rooms
Gold Version Downloads

For Store Owners

Merchant Accounts
Cool Resources
Advertise Here
"Powered by" Logos
Web Hosting Search

Misc.

Contact Us
MEET's Talking Guide
The Ancient Greek Agora






AgoraCart Free User Forums

This is the official FAQ and Cool Tips guide For the AgoraCart shopping Cart software


Official Sponsors of the AgoraCart Project:

       


RegisterSearchFAQLog in
Reply to topic Page 1 of 1
Making the "Next 12 Matches" Bold
Author Message
Reply with quote
Post Making the "Next 12 Matches" Bold 
For example, if the page says "Found 33 items, showing 1 to 12." at the bottom. How can I make the "Next 12 Matches" more noticeable (i.e bold or larger)?

Thanks!!

AgoraCart Store Manager ver 5.0.000

http://www.staffpatrol.com/store5/agora.cgi

View user's profile Send private message Visit poster's website
Reply with quote
Post  
currently each element in the "next" process isn't defined in the css file and the agora_html.lib file. your best bet would be to hack the html.lib file "next" sub routine for precise css control.
one thing you might try though is to hack the css file which should allow for altering the link styles.
in the agorastyles.css file find the .ac_seach_results class. this controls the "next" display and there is no other. except, obviously, the inherited definitions. the thing is the "Next 12 Matches" is a text link which, allows us to override the "a" and "visited" definitions that are inherited for this class. so, for example, one of my agorastyles.css files looks like this...
.ac_seach_results{
margin: 0px auto;
background-color:#f0f0f0;
width:500px;
font-size:12pt;
text-align:center;
}
whether or not that is default, i don't know but it doesn't matter. underneath that add a new defintion for the "a:link" (link) .ac_seach_results class and the hover. you may need to add more (visited) but these are the basics. so, make a space and add this...
.ac_seach_results a:link{
color: black;
font-weight: bold;
text-decoration: underline;
}
.ac_seach_results a:hover{
color: red;
font-weight: bold;
text-decoration: underline;
}
so the classes for the search results will look like this...
Code:

.ac_seach_results{
  margin: 0px auto;
  background-color:#f0f0f0;
  width:500px;
  font-size:12pt;
  text-align:center;
}
.ac_seach_results a:link{
  color: black;
  font-weight: bold;
  text-decoration: underline;
}
.ac_seach_results a:hover{
  color: red;
  font-weight: bold;
  text-decoration: underline;
}

upload and check results. once you've confirmed the changes are displaying then you can customize the color and other defs.
any probs just holler.
d

Reply with quote
Post  
the above will change the display for the "next", "last" and the "previous" links, automagically.
also, you should add visited...
.ac_seach_results a:visited{
color: red;
font-weight: bold;
text-decoration: underline;
}
and customize for your needs.
d

Reply with quote
Post  
Staffpatrol,
I see you are still using v5.0...
That version was highly buggy, current version is v5.2 with lots of nice fixes.
You might consider upgrading your store...


_________________
God Bless!
Bonnie - AgoraCart Moderator

Get a Gold Membership
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Display posts from previous:
Reply to topic Page 1 of 1
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