Results 1 to 5 of 5
  1. #1
    Join Date
    May 2006
    Posts
    87
    Plugin Contributions
    0

    Default Should know this but cant locate in css

    Hi

    I would like to make elements of a page bigger and feel that the code should be changed somewhere within the css, but cant work out where

    http://www.greatbaits.co.uk/index.ph...dex&cPath=1_10

    I would like to make the following changes:

    1) Price - bigger
    2) ....more info - bigger
    3) Links to pages 1,2 ,3 and NEXT> - bigger

    I searched for this text in the source code and found the following:

    <div class="listingDescription"></div></td>
    <td class="productListing-data" right>£1.20<br /><br /><a href="http://www.greatbaits.co.uk/index.php?main_page=product_info&amp;products_id=45&amp;zenid=edee66067322bee0f9 15899b3d46392b">... more info</a><br /><br /></td>

    I cant seem to match this with a reference in css?

    A gentle kick in the right direction would be appreciated


    Thanks

  2. #2
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Should know this but cant locate in css

    The gentle prod is ... don't assume that everything you need has already been done. If the CSS hook you need isn't in your stylesheet - put it there yourself!
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  3. #3
    Join Date
    May 2006
    Posts
    87
    Plugin Contributions
    0

    Default Re: Should know this but cant locate in css

    Thanks for the input kuroi, so (correct me if I am wrong)

    <td class="productListing-data" right>£1.20<br /><br /><a href="http://www.greatbaits.co.uk/index.php?main_page=product_info&amp;products_id=45">... more info</a><br /><br /></td>

    By searching the source code, I found the statement above. I can see what I would like to make bigger (... more info) but wouldnt know what to enter into my css to make this happen. I am looking for a 'divclass' statement but cant find one

    I have searched and read about 'css hooks' but still a little unsure about exacxtly what to do

    div class="listingDescription" - this is contained on the line of code immediately above, is this what I am looking for?

  4. #4
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,550
    Plugin Contributions
    9

    Default Re: Should know this but cant locate in css

    1) Price - bigger
    2) ....more info - bigger
    Around line 525 of stylesheet you will find:
    PHP Code:
    .centeredContentTH#cartEmptyText, #cartBoxGVButton, #navCatTabsWrapper, #navEZPageNextPrev, #bannerOne, #bannerTwo,  #bannerThree,  #bannerFour,  #bannerFive,  #bannerSix, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP, .center, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, .cartTotalsDisplay, #cartBoxGVBalance, .leftBoxHeading, .centerBoxHeading,.rightBoxHeading, .productListing-data, .accountQuantityDisplay, .ratingRow, LABEL#textAreaReviews, #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .gvBal, .attribImg {
            
    text-aligncenter;
            } 
    Take out the .productListing-data from that line, and create 2 new as follows:
    PHP Code:
    .productListing-data {
            
    text-aligncenter;
            
    font-size14px;
            }

    .
    itemTitle {
            
    text-aligncenter;
            
    font-size14px;
            }

    /*substitute 14px for desired size*/ 
    3) Links to pages 1,2 ,3 and NEXT> - bigger
    Add the following to your stylesheet:
    PHP Code:
    .navSplitPagesLinks {
            
    font-size14px;
            }

    /*substitute 14px for desired size*/ 
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  5. #5
    Join Date
    May 2006
    Posts
    87
    Plugin Contributions
    0

    Default Re: Should know this but cant locate in css

    Thanks very much for your help

 

 

Similar Threads

  1. I didn't know where I should ask this, so I just posted here.
    By Mocuts4u2000 in forum General Questions
    Replies: 2
    Last Post: 4 Mar 2010, 05:11 AM
  2. I know this is simple but I can't figure it out
    By rvdsabu4life in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 10 Dec 2008, 06:55 PM
  3. I don't know if this belongs in this forum but...
    By innovafire in forum General Questions
    Replies: 6
    Last Post: 12 Jan 2008, 05:57 AM
  4. I don't know if this is possible but...
    By softget in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 8 Feb 2007, 03:48 PM
  5. things we should all know but i cant figure out....
    By Lala_G_Clef_Jewelry in forum General Questions
    Replies: 2
    Last Post: 8 Aug 2006, 02:01 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg