Page 17 of 50 FirstFirst ... 7151617181927 ... LastLast
Results 161 to 170 of 496
  1. #161
    Join Date
    Feb 2009
    Posts
    13
    Plugin Contributions
    0

    Default Re: Dover Fine Responsive Template

    Thank you I resolved all the above.
    Is the link roll over function java script or css based? I want to play with the fade in color and am having trouble reading the code. None of the hover codes in the css looked right to me and I know very little about java script.

  2. #162
    Join Date
    Feb 2009
    Posts
    13
    Plugin Contributions
    0

    Default Re: Dover Fine Responsive Template

    Never mind I found them in the css files finally with the help of chromium's inspect element.

  3. #163
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Dover Fine Responsive Template

    Quote Originally Posted by Potterpoole View Post
    Never mind I found them in the css files finally with the help of chromium's inspect element.
    I am happy that you figured it out. The chrome web developer tools are great!

    Thanks,

    Anne

  4. #164
    Join Date
    Mar 2008
    Location
    Brampton, Cumbria, United Kingdom, United Kingdom
    Posts
    816
    Plugin Contributions
    2

    Default Re: Dover Fine Responsive Template

    I would like to re-iterate everybody else; Fantastic template.

    I would like to 'squash' the template so that everything is closer together.

    andy
    Learning Fast.
    Eden Craft Supplies

  5. #165
    Join Date
    Mar 2008
    Location
    Brampton, Cumbria, United Kingdom, United Kingdom
    Posts
    816
    Plugin Contributions
    2

    Default Re: Dover Fine Responsive Template

    Quote Originally Posted by adb34 View Post
    I would like to re-iterate everybody else; Fantastic template.

    I would like to 'squash' the template so that everything is closer together.

    andy
    What I was trying to say; I would like to close everything up on the left column so that the page is shorter in length
    Learning Fast.
    Eden Craft Supplies

  6. #166
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Dover Fine Responsive Template

    Quote Originally Posted by adb34 View Post
    What I was trying to say; I would like to close everything up on the left column so that the page is shorter in length
    I think that what you want to do is lessen or remove the padding-top and padding-bottom on the various elements in the left hand column. I would recommend using firefox or chrome and the web developer tools to isolate the exact lines of the files that need to be changes.

    Thanks,

    Anne

  7. #167
    Join Date
    Feb 2009
    Posts
    13
    Plugin Contributions
    0

    Default Re: Dover Fine Responsive Template

    I am trying to add a link to the more information side box that takes me to the log in page
    the following is what i inserted but it isn't working.I am no programmer but I thought I would give this a shot.
    ether i am missing something I need to add to another page, the programming isn't right or both. Can you help?
    Code:
    this was added to english.php
    
    // information box text in sideboxes/more_information.php - were TUTORIAL_
      define('BOX_HEADING_MORE_INFORMATION', 'Wholesale Information');
      define('BOX_LOGIN_REGISTER', 'Login/Register');
      define('BOX_INFORMATION_PAGE_2', 'Wholesale Account Information');
      define('BOX_INFORMATION_PAGE_3', 'Wholesale Account Requirements');
      define('BOX_INFORMATION_PAGE_4', 'Minimum Orders');
    
    
    this was added to more_information.php
    
    // test if links should display
      if (DEFINE_LOGIN_REGISTER_STATUS <= 1) {
        $more_information[] = '<a href="' . zen_href_link(FILENAME_index.php?main_page=login) . '">' . $pointer . BOX_LOGIN_REGISTER . '</a>';
      }
      if (DEFINE_PAGE_2_STATUS <= 1) {
        $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_2) . '">' . $pointer . BOX_INFORMATION_PAGE_2 . '</a>';
      }
      if (DEFINE_PAGE_3_STATUS <= 1) {
        $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_3) . '">' . $pointer . BOX_INFORMATION_PAGE_3 . '</a>';
      }
      if (DEFINE_PAGE_4_STATUS <= 1) {
        $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_4) . '">' . $pointer . BOX_INFORMATION_PAGE_4 . '</a>';
      }

  8. #168
    Join Date
    Jul 2009
    Location
    picaflor-azul.com
    Posts
    6,928
    Plugin Contributions
    45

    Default Re: Dover Fine Responsive Template

    Quote Originally Posted by Potterpoole View Post
    I am trying to add a link to the more information side box that takes me to the log in page
    the following is what i inserted but it isn't working.I am no programmer but I thought I would give this a shot.
    ether i am missing something I need to add to another page, the programming isn't right or both. Can you help?
    Code:
    this was added to english.php
    
    // information box text in sideboxes/more_information.php - were TUTORIAL_
      define('BOX_HEADING_MORE_INFORMATION', 'Wholesale Information');
      define('BOX_LOGIN_REGISTER', 'Login/Register');
      define('BOX_INFORMATION_PAGE_2', 'Wholesale Account Information');
      define('BOX_INFORMATION_PAGE_3', 'Wholesale Account Requirements');
      define('BOX_INFORMATION_PAGE_4', 'Minimum Orders');
    
    
    this was added to more_information.php
    
    // test if links should display
      if (DEFINE_LOGIN_REGISTER_STATUS <= 1) {
        $more_information[] = '<a href="' . zen_href_link(FILENAME_index.php?main_page=login) . '">' . $pointer . BOX_LOGIN_REGISTER . '</a>';
      }
      if (DEFINE_PAGE_2_STATUS <= 1) {
        $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_2) . '">' . $pointer . BOX_INFORMATION_PAGE_2 . '</a>';
      }
      if (DEFINE_PAGE_3_STATUS <= 1) {
        $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_3) . '">' . $pointer . BOX_INFORMATION_PAGE_3 . '</a>';
      }
      if (DEFINE_PAGE_4_STATUS <= 1) {
        $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_4) . '">' . $pointer . BOX_INFORMATION_PAGE_4 . '</a>';
      }
    I don't think that you need the if because the login page is not controlled in the admin--configuration--define pages status

    Thanks,

    Anne

  9. #169
    Join Date
    Mar 2008
    Location
    Brampton, Cumbria, United Kingdom, United Kingdom
    Posts
    816
    Plugin Contributions
    2

    Default Re: Dover Fine Responsive Template

    Quote Originally Posted by picaflor-azul View Post
    I think that what you want to do is lessen or remove the padding-top and padding-bottom on the various elements in the left hand column. I would recommend using firefox or chrome and the web developer tools to isolate the exact lines of the files that need to be changes.

    Thanks,

    Anne
    Thanks Anne for the advice. I will give it a go.
    Learning Fast.
    Eden Craft Supplies

  10. #170
    Join Date
    Feb 2009
    Posts
    13
    Plugin Contributions
    0

    Default Re: Dover Fine Responsive Template

    well I reconfigured the more information php to this

    Code:
    // test if links should display
      $more_information[] = '<a href="' . zen_href_link(FILENAME_index.php?main_page=login) . '">' . $pointer . BOX_LOGIN_REGISTER . '</a>';
      if (DEFINE_PAGE_2_STATUS <= 1) {
        $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_2) . '">' . $pointer . BOX_INFORMATION_PAGE_2 . '</a>';
      }
      if (DEFINE_PAGE_3_STATUS <= 1) {
        $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_3) . '">' . $pointer . BOX_INFORMATION_PAGE_3 . '</a>';
      }
      if (DEFINE_PAGE_4_STATUS <= 1) {
        $more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_4) . '">' . $pointer . BOX_INFORMATION_PAGE_4 . '</a>';
      }
    the link box won't show up though.

 

 
Page 17 of 50 FirstFirst ... 7151617181927 ... LastLast

Similar Threads

  1. v154 dover fine - removing links
    By simon3215 in forum Addon Templates
    Replies: 8
    Last Post: 3 Oct 2018, 03:42 AM
  2. v154 Best Responsive Template
    By martynbaker52 in forum General Questions
    Replies: 4
    Last Post: 12 Sep 2015, 02:35 AM
  3. v154 Dover Fine configuration
    By tuborg in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 3 Feb 2015, 02:27 PM
  4. v154 Using Dover Fine & Image Handler 4
    By wlamoreaux in forum General Questions
    Replies: 1
    Last Post: 28 Jan 2015, 11:17 PM
  5. v151 responsive template problems
    By irishshopper in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 23 May 2014, 07:11 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