Page 1 of 2 12 LastLast
Results 1 to 10 of 496

Hybrid View

  1. #1
    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

  2. #2
    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

  3. #3
    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

  4. #4
    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>';
      }

  5. #5
    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

  6. #6
    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.

  7. #7
    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
    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.
    You just need to add the html for the link:

    Code:
    <a href="' . zen_href_link(FILENAME_index.php?main_page=login) . '">' . $pointer . BOX_LOGIN_REGISTER . '</a>
    Thanks,

    Anne

  8. #8
    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

  9. #9
    Join Date
    Jun 2012
    Posts
    57
    Plugin Contributions
    2

    Default Re: Dover Fine Responsive Template

    Never mind on my earlier request.

    I figured out the problem was within the supersize script and modified this script so it now allows passing another parameter in the slides array to indicate the banner setting for opening in a new window or not.

    Overall, very pleased with this template! Thanks for the hard work that you do Anne.

  10. #10
    Join Date
    Feb 2009
    Location
    UK
    Posts
    1,303
    Plugin Contributions
    1

    Default Re: Dover Fine Responsive Template

    Quote Originally Posted by batracy View Post
    Never mind on my earlier request.

    I figured out the problem was within the supersize script and modified this script so it now allows passing another parameter in the slides array to indicate the banner setting for opening in a new window or not.

    Overall, very pleased with this template! Thanks for the hard work that you do Anne.
    Hi, would you mind sharing how you did this. I'm about to start a new site with this template and this would be useful.

 

 
Page 1 of 2 12 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

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