Results 1 to 4 of 4

Thread: Problem with bold buttons link and modal window

  1. #1
    Join Date
    Feb 2008
    Posts
    85
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Problem with bold buttons link and modal window

    I am tryiny to use the bold buttons css and while some links work others dont.
    I have a modal window in one of these.
    can anyone help please.
    The code is
    Code:
    <p>
        <br />
        <div class="buttonwrapper">
        <a class="boldbuttons" href="http://www.authorbank.com"><span>Got a Book in You?<span></a></p>
        </div>
        <br />
        </p>
        
        <div class="buttonwrapper">
        <a  class="boldbuttons" href="contact_mail.php" params="lightwindow_width=350,lightwindow_height=400" class="lightwindow" title="Contact Hawkesley Publishing Solutions"><strong><span>Contact form</span></a>
        </div>
        <br />
        <div class="buttonwrapper">
        <a class="boldbuttons"> href="authors2.html" class="lightwindow"><span>Authors</span></a>
        </div>
        <br />
        <div class="buttonwrapper">
        <a class="boldbuttons"> href="../sample_chapters/index.php"><span>Free Downloads</span></a>
        </div>
    This is link where the code is at the bottom of the left column.
    http://217.46.159.226/e_cart22/

  2. #2
    Join Date
    Feb 2008
    Posts
    85
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    There is an error I have found < a class="boldbuttons">
    Now corrected.
    The lightwindow will not open though.
    Is this a problem with having 2 class calls in the a tag?

  3. #3
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    If you're inserting more than 1 CSS class inside an element, you should do it by separating each class name with a space within the same attribute, for example:

    Code:
        <a href="contact_mail.php" params="lightwindow_width=350,lightwindow_height=400" class="lightwindow boldbuttons" title="Contact Hawkesley Publishing Solutions"><strong><span>Contact form</span></a>
    Remove the duplicate class="boldbuttons" attribute.
    DD Admin

  4. #4
    Join Date
    Feb 2008
    Posts
    85
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Many thanks. Thats solved it.

Bookmarks

Posting Permissions

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