Page 12 of 28 FirstFirst ... 2101112131422 ... LastLast
Results 111 to 120 of 279
  1. #111
    Join Date
    Mar 2011
    Posts
    20
    Plugin Contributions
    0

    Default Re: Flexible Attributes support

    Quote Originally Posted by littlekid440 View Post
    I know its possible to do this... its just a couple of lines of code
    I had to change the manufacture's image size on every product info page and it wasn't build in.. i was able to find a modded code that worked for me.
    I don't know how good your PHP skills are but check out
    http://www.zen-cart.com/forum/showthread.php?t=119585
    its not what you are looking for but its basically the same consent
    and don't give up someone will find a way to solve this
    Thanks that looks really useful, If I just change from Manufacturers_Side_Box it just might work!

  2. #112
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Flexible Attributes support

    Thanks, littlekid440, that looks like it would do the job. Flexible Attributes in itself does not address the image size at all.

  3. #113
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Flexible Attributes support

    For your radiobutton spacing isue, add to stylesheet_flexible_attributes.css

    #wAttrib-6 input {
    height: 1.8em;
    }

  4. #114
    Join Date
    Dec 2009
    Posts
    55
    Plugin Contributions
    0

    Default Re: Flexible Attributes support

    Thank you
    that worked wonders
    just one slight problem
    I added this -
    #wAttrib-6 input {
    height: 1.8em;
    float:right;
    }

    it looks great on Firefox and chrome however on internet explorer it is not straight on top of each other.
    feel free to check it out
    http://xlegends.com/beta/index.php?m...&products_id=8

    is there another code that I should be using insted of float:right?

  5. #115
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Flexible Attributes support

    I don't have time to look at it in IE, but you might try text-align: right; instead of float: right;


    Or maybe the text-align should go on the next level up from the input...

  6. #116
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Flexible Attributes support

    This works in ff:

    #wAttrib-6 input {
    height: 1.8em;
    }
    #wAttrib-6 .attribsOptions {
    text-align:right;
    }

  7. #117
    Join Date
    Dec 2009
    Posts
    55
    Plugin Contributions
    0

    Default Re: Flexible Attributes support

    IT WORKED!
    looks PERFECT on Firefox and chrome!
    a bit buggy but works on IE but its satisfactory for now. I don't think I want to spend any more time on trying to figure out IE bug right now either... not until the other parts of the website is complete. When I do figure it out i'll be sure to post it here on the forums so others would know.



    Thank You for all your help "Black Belt gjh42"

  8. #118
    Join Date
    Mar 2011
    Posts
    20
    Plugin Contributions
    0

    Default Re: Flexible Attributes support

    Hello gjh42, I have been trying to get my attributes to line up next to each other but have not had any success. I was wondering if you could look at my page and see what is wrong. I have added the pages to the correct place and edited the CSS sheet, which I did have a basic understanding of, but they are not lining up.

    http://www.theblackweddingdress.com/...products_id=15

    here is my current CSS code so you don't have to look at each line:

    .wrapperAttribsOptions label {font-size: 1.0em;}/*make "label" elements match other text*/
    h3#attribsOptionsText {

    }
    /*hide the "Please Choose:" heading*/
    h4.optionName {
    font-size: 10px;
    font-weight: bold;
    }
    .wrapperAttribsOptions+br.clearBoth {display:;}/*allow floated attributes to sit side by side if desired*/
    #wAttrib-5 {clear: left; float: left;}

    #wAttrib-6 {float: left;}/*this will sit beside #wAttrib-11*/
    #wAttrib-8 {float: left;}
    #wAttrib-9 {clear: left;}/*this will sit on a new line*/
    #wAttrib-10 {float: left;}
    #wAttrib-14 h4 {display: none;}
    #wAttrib-15 h3 {font-size: 1em; font-weight: normal;}/*make comments above attribute like standard text*/
    #wAttrib-35 .attribsOptions {display: none;}/*for a read-only attribute to hide all but comments*/

    Thanks for taking the time. I was also wondering if you knew where the "please choose:" to edit it to another wording, my search funtion on my editor is not finding it for some reasons.
    Thanks
    Mike

  9. #119
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Flexible Attributes support

    As an example of why we need to see a site live and look at the stylesheets for ourselves, the critical factor is that you have a rule in stylesheet_y.css (line 32) which is loaded after stylesheet_flexible_attributes.css and overrides it:
    #productAttributes .clearBoth {
    clear: left;
    display: inline;
    float: right;
    width: 50%;
    }

    This negates the rule in stylesheet_flexible_attributes.css (line 26)
    .wrapperAttribsOptions + br.clearBoth {
    display: none;
    }

  10. #120
    Join Date
    Dec 2009
    Posts
    55
    Plugin Contributions
    0

    Default Re: Flexible Attributes support

    Hello gjh

    Just wanted to let you know ive managed to fix all of my IE problem by adding "meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"" to the all ready declared statement located in the template file html_header.php

    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" "Content-Type" content="text/html; charset=<?php echo CHARSET; ?>" />
    hope this helps some out there

 

 
Page 12 of 28 FirstFirst ... 2101112131422 ... LastLast

Similar Threads

  1. v154 Flexible Footer Menu Multilingual [Support Thread]
    By rbarbour in forum All Other Contributions/Addons
    Replies: 128
    Last Post: 6 Sep 2023, 10:30 PM
  2. v152 Flexible Language/Currency Header Options (Support Thread)
    By rbarbour in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 20 May 2021, 03:46 PM
  3. v151 Flexible Return Authorization (RMA) for ZC v1.5.x [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 167
    Last Post: 11 Apr 2021, 08:56 PM
  4. Flexible Product Listing [support]
    By gjh42 in forum All Other Contributions/Addons
    Replies: 27
    Last Post: 27 Apr 2015, 11:16 AM
  5. help with flexible product listing addon
    By artifaxworthing in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 19 Jun 2010, 11:25 AM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR