Page 35 of 40 FirstFirst ... 253334353637 ... LastLast
Results 341 to 350 of 392
  1. #341
    Join Date
    Nov 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by clydejones View Post
    check your cache folder and check what the myDEBUG log files have to tell you.
    Sorry.

    In the folder "cache" can not find any files "myDEBUG"

    I'm no expert on this, where I have to find that file?

    Thanks for your help

  2. #342
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by donostiarra123 View Post
    Sorry.

    In the folder "cache" can not find any files "myDEBUG"

    I'm no expert on this, where I have to find that file?

    Thanks for your help
    As I said previously, without actually seeing your site, I can't really track down what the problem might be.

  3. #343
    Join Date
    Nov 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by clydejones View Post
    As I said previously, without actually seeing your site, I can't really track down what the problem might be.
    Ok, I'll upload it to any domain, we notice here and I enclose the link.

    Thank you very much and sorry for the trouble

  4. #344
    Join Date
    Oct 2008
    Posts
    53
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Hi Clyde,

    can you help with stylesheet.css to make a few tweaks to the template. I'm trying to acheive the same rounded boxes for the center box as you have with the sidebox content backgrounds. My current stylesheet has already been slightly modified but only as far as the colours go and adding a background image to my header to match my logo. I'm also trying to acheive this look by horizontally aligning the center box with the sidebox sidebox_header_bg.gif image.

    Can this be achieved with the current stylesheet?

    Best regards,

    Giles.

    I'm running your most recent release of the template & v.1.3.9h my test website can be found at www.a19bs.com/shop/

  5. #345
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by NSABaits View Post
    Hi Clyde,

    can you help with stylesheet.css to make a few tweaks to the template. I'm trying to acheive the same rounded boxes for the center box as you have with the sidebox content backgrounds. My current stylesheet has already been slightly modified but only as far as the colours go and adding a background image to my header to match my logo. I'm also trying to acheive this look by horizontally aligning the center box with the sidebox sidebox_header_bg.gif image.

    Can this be achieved with the current stylesheet?

    Best regards,

    Giles.

    I'm running your most recent release of the template & v.1.3.9h my test website can be found at www.a19bs.com/shop/
    easiest way:
    open includes/templates/glacial_age/css/stylesheet.css

    find the following declaration and add the highlighted portion.

    #centerOuterBorder {
    margin: 10px auto; /*gives spacing at top and bottom*/
    padding: 15px 15px 15px 15px; /*spacing between this and the mainWrapper*/
    background: #6c90dc;
    /*width: 850px;*/
    border:2px solid #6c90dc;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius:10px;

    }

  6. #346
    Join Date
    Oct 2008
    Posts
    53
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Only works for non IE browsers due to it being CSS3. Any other ideas?

    Giles.

  7. #347
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by NSABaits View Post
    Only works for non IE browsers due to it being CSS3. Any other ideas?

    Giles.
    For pure simplicity and ease of implementation, I find it worth the inconvenience of losing the effect in just one browser.

    there are many tutorials on implementing rounded corners available, just do a google search.

    try this one ( http://www.spiffycorners.com/ )

    or this one ( http://www.html.it/articoli/nifty/index.html )

  8. #348
    Join Date
    Oct 2008
    Posts
    53
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Agreed in the end with you Clyde. Just added the CSS3 code and all is working well.

    However I'm seeing another problem with the center box in ie8 and FF (havent checked other browsers yet).

    Some items are falling outside of the center box. This can be seen best using this link.

    http://www.a19bs.com/shop/index.php?main_page=page_2

    It can also be seen at the following link where the buttons are outside of the light blue center box.

    http://www.a19bs.com/shop/index.php?...e=shippinginfo

    Fault 2 only occurs in ie8 after the addition of the CSS3 code that you provided.

    Do you have any ideas?

    Cheers, Giles.

  9. #349
    Join Date
    Oct 2008
    Posts
    53
    Plugin Contributions
    0

    Default Re: Glacial Age Template Support Thread

    Ignore problem 1(link 1) i've managed to resolve that one.

  10. #350
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Glacial Age Template Support Thread

    Quote Originally Posted by NSABaits View Post
    Agreed in the end with you Clyde. Just added the CSS3 code and all is working well.

    However I'm seeing another problem with the center box in ie8 and FF (havent checked other browsers yet).

    Some items are falling outside of the center box. This can be seen best using this link.

    http://www.a19bs.com/shop/index.php?main_page=page_2

    It can also be seen at the following link where the buttons are outside of the light blue center box.

    http://www.a19bs.com/shop/index.php?...e=shippinginfo

    Fault 2 only occurs in ie8 after the addition of the CSS3 code that you provided.

    Do you have any ideas?

    Cheers, Giles.
    Open the stylesheet.css and add the following

    .clearfix:after {
    clear: both;
    content: '.';
    display: block;
    visibility: hidden;
    height: 0;
    }
    .clearfix {display: inline-block;}
    * html .clearfix {height: 1%;}
    .clearfix {display: block;}

    Open tpl_page_2_default.php find the following
    Code:
    <div id="pageTwoMainContent" class="content">
    and replace with this
    Code:
    <div id="pageTwoMainContent" class="content clearfix">
    open tpl_shippinginfo_default.php find the following
    Code:
    <div id="shippingInfoMainContent" class="content">
    and replace with this
    Code:
    <div id="shippingInfoMainContent" class="content clearfix">

 

 
Page 35 of 40 FirstFirst ... 253334353637 ... LastLast

Similar Threads

  1. Quick Help With Glacial Age Template
    By andycowboy in forum Addon Templates
    Replies: 3
    Last Post: 29 Dec 2011, 02:19 PM
  2. Glacial Age help
    By zbdude in forum Addon Templates
    Replies: 3
    Last Post: 10 Jul 2010, 07:05 PM
  3. Glacial Age V2.0 Template
    By irishshopper in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 19 May 2010, 02:12 PM
  4. Logo Full Width - Glacial Age template
    By RiverCity in forum Addon Templates
    Replies: 2
    Last Post: 6 Jul 2009, 06:54 PM
  5. glacial age template help
    By bubblycrazy in forum General Questions
    Replies: 5
    Last Post: 26 Jan 2009, 01:28 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