Results 1 to 10 of 30

Hybrid View

  1. #1
    Join Date
    Mar 2008
    Location
    USA
    Posts
    560
    Plugin Contributions
    0

    Default Re: Need to move some things

    badarac:

    Thanks for the reply but I guess I'm still new at this. Exactly where is this syylesheet? And do I look for <LABEL, h4.optionName> and change the width to 100%??

    Thank you,

    Silver

  2. #2
    Join Date
    Aug 2009
    Location
    Longs, SC
    Posts
    626
    Plugin Contributions
    2

    Default Re: Need to move some things

    Quote Originally Posted by SilverHD View Post
    badarac:

    Thanks for the reply but I guess I'm still new at this. Exactly where is this syylesheet? And do I look for <LABEL, h4.optionName> and change the width to 100%??

    Thank you,

    Silver
    The stylesheet is in /shop/includes/templates/abbington_mega/css/stylesheet.css The addition needs to be made around line 25.

    LABEL, h4.optionName {
    line-height: 1.5em;
    padding-bottom: 0.2em;
    padding-left: 0.2em;
    padding-right: 0.2em;
    padding-top: 0.2em;
    width: 100%; <------ add here
    }
    Last edited by badarac; 10 Jan 2014 at 11:07 PM.

  3. #3
    Join Date
    Mar 2008
    Location
    USA
    Posts
    560
    Plugin Contributions
    0

    Default Re: Need to move some things

    badarac:

    Thanks for the directions but after
    HTML Code:
    LABEL, h4.optionName {line-height: 1.5em;padding-bottom: 0.2em;
    the rest that you have isn't there.

    This is what it looks like:

    HTML Code:
    LABEL, h4.optionName {line-height: 1.5em;padding: 0.2em;}
    LABEL.checkboxLabel, LABEL.radioButtonLabel {margin: 0.5em 0.3em;}
    LABEL.inputLabel {width: 11em;float: left;}
    LABEL.inputLabelPayment {width: 15em;float: left;}
    LABEL.selectLabel, LABEL.switchedLabel, LABEL.uploadsLabel  {width: 12em;float: left;}
    P, ADDRESS {padding: 0.5em;}
    ADDRESS {font-style: normal;}
    Any idea??

    Silver

  4. #4
    Join Date
    Mar 2008
    Location
    USA
    Posts
    560
    Plugin Contributions
    0

    Default Re: Need to move some things

    Can anybody help with this, please?

  5. #5
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: Need to move some things

    Quote Originally Posted by SilverHD View Post
    badarac:

    Thanks for the directions but after
    HTML Code:
    LABEL, h4.optionName {line-height: 1.5em;padding-bottom: 0.2em;
    the rest that you have isn't there.

    This is what it looks like:

    HTML Code:
    LABEL, h4.optionName {line-height: 1.5em;padding: 0.2em;}
    LABEL.checkboxLabel, LABEL.radioButtonLabel {margin: 0.5em 0.3em;}
    LABEL.inputLabel {width: 11em;float: left;}
    LABEL.inputLabelPayment {width: 15em;float: left;}
    LABEL.selectLabel, LABEL.switchedLabel, LABEL.uploadsLabel  {width: 12em;float: left;}
    P, ADDRESS {padding: 0.5em;}
    ADDRESS {font-style: normal;}
    Any idea??

    Silver
    Quote Originally Posted by badarac View Post
    The stylesheet is in /shop/includes/templates/abbington_mega/css/stylesheet.css The addition needs to be made around line 25.

    LABEL, h4.optionName {
    line-height: 1.5em;
    padding-bottom: 0.2em;
    padding-left: 0.2em;
    padding-right: 0.2em;
    padding-top: 0.2em;
    width: 100%; <------ add here
    }
    HTML Code:
    LABEL, h4.optionName {line-height: 1.5em;padding: 0.2em;}
    And:

    HTML Code:
    LABEL, h4.optionName {
        line-height: 1.5em;
        padding-bottom: 0.2em;
        padding-left: 0.2em;
        padding-right: 0.2em;
        padding-top: 0.2em;
    }
    Are effectively the same, so you would only need to add the one extra line after the last semi-colon. In your file it is all smooshed together to save storage space, because that file gets transmitted to every visitor of the site. The less to transmit, the faster the load time. It just happenes that on badarac's side the simple padding: statement got expanded to the four sides of that control.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  6. #6
    Join Date
    Mar 2008
    Location
    USA
    Posts
    560
    Plugin Contributions
    0

    Default Re: Need to move some things

    Hey Chad:

    Good to hear from you. Hope your Holidays were good!

    OK here we go: Hate to repeat myself but I would rather do that than break the site:

    HTML Code:
    LABEL, h4.optionName {line-height: 1.5em;padding: 0.2em;}
    LABEL.checkboxLabel, LABEL.radioButtonLabel {margin: 0.5em 0.3em;}
    LABEL.inputLabel {width: 11em;float: left;}
    LABEL.inputLabelPayment {width: 15em;float: left;}
    LABEL.selectLabel, LABEL.switchedLabel, LABEL.uploadsLabel  {width: 12em;float: left;}
    P, ADDRESS {padding: 0.5em;}
    ADDRESS {font-style: normal;}
    and I should place that line here??:

    ADDRESS {font-style: normal;width: 100%;}

    Thanks,

    Silver
    Last edited by SilverHD; 11 Jan 2014 at 04:42 PM.

  7. #7
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: Need to move some things

    Quote Originally Posted by SilverHD View Post

    Good to hear from you. Hope your Holidays were good!

    OK here we go: Hate to repeat myself but I would rather do that than break the site:

    HTML Code:
    LABEL, h4.optionName {line-height: 1.5em;padding: 0.2em;}
    LABEL.checkboxLabel, LABEL.radioButtonLabel {margin: 0.5em 0.3em;}
    LABEL.inputLabel {width: 11em;float: left;}
    LABEL.inputLabelPayment {width: 15em;float: left;}
    LABEL.selectLabel, LABEL.switchedLabel, LABEL.uploadsLabel  {width: 12em;float: left;}
    P, ADDRESS {padding: 0.5em;}
    ADDRESS {font-style: normal;}
    and I should place that line here??:

    ADDRESS {font-style: normal;width: 100%;}

    Thanks,

    Silver
    Relatively good thank you.

    In this case yeah, good you asked (though if you had firebug for example installed on firefox, you could test these things out on the fly without affecting your site.)

    The extra "code" of the width goes into the area defined as LABEL, h4.optionName, which in this case is the first line of the information provided and would/could be like the following (color not required :) )

    Code:
    LABEL, h4.optionName {line-height: 1.5em;padding: 0.2em;width:100%;}
    LABEL.checkboxLabel, LABEL.radioButtonLabel {margin: 0.5em 0.3em;}
    LABEL.inputLabel {width: 11em;float: left;}
    LABEL.inputLabelPayment {width: 15em;float: left;}
    LABEL.selectLabel, LABEL.switchedLabel, LABEL.uploadsLabel  {width: 12em;float: left;}
    P, ADDRESS {padding: 0.5em;}
    ADDRESS {font-style: normal;}
    Last edited by mc12345678; 11 Jan 2014 at 05:24 PM.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 

Similar Threads

  1. Replies: 1
    Last Post: 9 Jan 2015, 05:57 AM
  2. I need some help to move the home and log in from the header please
    By Faeriescraps in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 31 May 2012, 08:41 PM
  3. Need to move some thinks around
    By rapro in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 13 Jan 2010, 10:30 PM
  4. Need some help on a few things...
    By in4sit in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 27 Feb 2008, 05:33 AM
  5. i need help to change some things
    By sum_Guy55 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 18 Oct 2007, 01:50 PM

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