Thread: Westminster New

Page 161 of 187 FirstFirst ... 61111151159160161162163171 ... LastLast
Results 1,601 to 1,610 of 1865
  1. #1601
    Join Date
    Jun 2007
    Posts
    47
    Plugin Contributions
    0

    Default Re: Westminster New

    This is related to font awesome icons. For some reason your font awesome style sheet is not loading properly. Check you link. if that's ok, you might try another version of font-awesome.

    Reference: https://stackoverflow.com/questions/...ot-showing-why

  2. #1602
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Westminster New

    Quote Originally Posted by irishshopper View Post
    Help with Westminster-new on mldfurniture.ie

    Getting the following on bottom right hand corner of screen where social media buttons should be. What has caused this and how can I fix it ?

    SHARE AND CONNECT
    <a href="https://www.facebook.com/mldfurniture" target="_blank"><i class="fa fa-facebook"></i></a><a href="https://twitter.com/mldfurniture" target="_blank"><i class="fa fa-twitter"></i></a>
    There are a couple of posts in this thread that address this problem. It is essentially a security thing.

    One can be found here at post #64 on this page https://www.zen-cart.com/showthread....67#post1308467

    AFTER CHANGING LINKS AND AFTER ADDING init_includes file into 'admin/includes/init_includes/overrides/' as per post above ....

    THEN a) copy your modified social media links in flexible footer menu and then b) DELETE THE TEXT links in the box and 'update' then c) paste the links back and update again.

    this will solve your problem.

    cheers,
    Mike

  3. #1603
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Westminster New

    v1.5.5f

    Looking for some assistance with layout please ... refer to image attached. (site is www.harmonyball.net.au)

    1. REMOVE 'details' tab under price in a product listing - using inspector in Firefox I found reference to stylesheet.css line 258 .pl-details - I edited this line out but the tab still shows and I cannot find any configuration specifically for this in admin ... ??

    2. REDUCE the amount of whitespace as indicated - I have found and adjusted what I can in stylesheet.css however I have likely missed some lines or there is some other method of reducing the whitespace .. ??

    Thanks in advance for your help.

    cheers,
    Mike

    Attachment 18029

  4. #1604
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,748
    Plugin Contributions
    0

    Default Re: Westminster New

    @shags38

    Try this stuff
    stylesheet.css: line 169
    Code:
    .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {margin: 1em 0;}
    change to (or remove rule completely)

    Code:
    .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {/*margin: 1em 0;*/}

    ----------------------------------------------------------------------------------------------------------------------------------------------------

    stylesheet.css: line 236

    Code:
    .box_image{margin:15px 0 20px 0;}
    adjust margin around image


    ---------------------------------------------------

    stylesheet.css: line 228

    Code:
    .product_title {margin:20px auto 0 auto;min-height:45px;color:#444;font-size:120%;line-height:18px;}
    adjust margin: 20px to margin: 5px

    ---------------------------------------------------

    stylesheet.css: line 231

    Code:
    .product_detail {margin-top:30px;margin-bottom:10px;}
    change to
    Code:
    .product_detail {display: none;/*margin-top:30px;margin-bottom:10px;*/}
    ---------------------------------------------------

    stylesheet.css line 232

    Code:
    .price, .pl-price{font-size:150%;margin-bottom:20px;}
    because I do not know off the top of my head where .pl-price is used I would separate those into two rules and comment out the margin-bottom on the .price

    Code:
    .pl-price{font-size:150%;margin-bottom:20px;}
    .price{font-size:150%;/*margin-bottom:20px;*/}
    ---------------------------------------------------

    the space between the title and price that is left after all of that can be removed by stripping out the <br> tag from the file that generates that box (forget where it is off the top of my head)

    see attached image for what I got it to look like in my browser by playing in the inspector Name:  www_harmonyball_net_au.png
Views: 309
Size:  154.4 KB
    Mike
    GeekHost - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

  5. #1605
    Join Date
    Jan 2011
    Location
    Adelaide, Australia
    Posts
    1,670
    Plugin Contributions
    1

    Default Re: Westminster New

    Quote Originally Posted by barco57 View Post
    @shags38

    Try this stuff
    stylesheet.css: line 169
    Code:
    .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {margin: 1em 0;}
    change to (or remove rule completely)

    Code:
    .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew {/*margin: 1em 0;*/}

    ----------------------------------------------------------------------------------------------------------------------------------------------------

    stylesheet.css: line 236

    Code:
    .box_image{margin:15px 0 20px 0;}
    adjust margin around image


    ---------------------------------------------------

    stylesheet.css: line 228

    Code:
    .product_title {margin:20px auto 0 auto;min-height:45px;color:#444;font-size:120%;line-height:18px;}
    adjust margin: 20px to margin: 5px

    ---------------------------------------------------

    stylesheet.css: line 231

    Code:
    .product_detail {margin-top:30px;margin-bottom:10px;}
    change to
    Code:
    .product_detail {display: none;/*margin-top:30px;margin-bottom:10px;*/}
    ---------------------------------------------------

    stylesheet.css line 232

    Code:
    .price, .pl-price{font-size:150%;margin-bottom:20px;}
    because I do not know off the top of my head where .pl-price is used I would separate those into two rules and comment out the margin-bottom on the .price

    Code:
    .pl-price{font-size:150%;margin-bottom:20px;}
    .price{font-size:150%;/*margin-bottom:20px;*/}
    ---------------------------------------------------

    the space between the title and price that is left after all of that can be removed by stripping out the <br> tag from the file that generates that box (forget where it is off the top of my head)

    see attached image for what I got it to look like in my browser by playing in the inspector Name:  www_harmonyball_net_au.png
Views: 309
Size:  154.4 KB
    MANY thanks Barco57 ... I have just opened up the thread so am yet to start playing with your suggestions however I just wanted to say a big thank you! .... you have spent some time and effort in coming up with these solutions and I am grateful ... I will get back and let you know how I get on.

    cheers,
    Mike

  6. #1606
    Join Date
    Mar 2018
    Location
    Idaho,USA
    Posts
    23
    Plugin Contributions
    0

    Default Email subject not being received

    I'm using Zen cart 1.5.5 and Westminster New template v1.3
    My contact page has a required Subject line but the emails I receive display the default "Website Inquiry from My Site" Subject.
    How do I get it to display the customer entered Subject?

  7. #1607
    Join Date
    Mar 2018
    Location
    Idaho,USA
    Posts
    23
    Plugin Contributions
    0

    Default Re: Email subject not being received

    Never mind. I'm stupid! fixed it.

  8. #1608
    Join Date
    Jun 2009
    Location
    Sparta, TN
    Posts
    158
    Plugin Contributions
    0

    Default Re: Email subject not being received

    Quote Originally Posted by Beav View Post
    Never mind. I'm stupid! fixed it.
    I'm running 155f too. How did you fix this?
    Thanks!

  9. #1609
    Join Date
    Mar 2018
    Location
    Idaho,USA
    Posts
    23
    Plugin Contributions
    0

    Default Re: Email subject not being received

    Quote Originally Posted by VDecalS View Post
    I'm running 155f too. How did you fix this?
    Thanks!
    I upgraded my template from westminster new v1.3 to 155_westminster_new. It was a template problem.

  10. #1610
    Join Date
    Jun 2009
    Location
    Sparta, TN
    Posts
    158
    Plugin Contributions
    0

    Default Re: Email subject not being received

    Thanks for the info. I'm running a plain 1.5.5f with no mods. Maybe I'll check into this in BASIC CONFIGURATION forum section.
    My store - closed 12/05/2023
    1.5.7d (upgraded from 1.5.7b), clone a template (cloned Responsive Classic Template), Sitemap XML v4.0, Square WebPay, PayPal Express Checkout, PHP Version: 7.4.29 (Zend: 3.4.0)

 

 

Similar Threads

  1. v155 Getting ajax error in v155 with v154 Westminster template
    By godt in forum General Questions
    Replies: 3
    Last Post: 11 Jul 2016, 12:41 AM
  2. v155 Getting ajax error in v155 with v154 Westminster template
    By MCS_Computers in forum General Questions
    Replies: 10
    Last Post: 21 Mar 2016, 03:58 PM
  3. v154 Modifying Top Menu - Westminster New
    By chelseaneedshelp in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 27 Mar 2015, 04:28 PM
  4. Westminster New doesn't work on mobile phone
    By Pompidompie in forum Addon Templates
    Replies: 3
    Last Post: 26 Mar 2015, 10:34 PM
  5. v151 westminster new Share and Connect
    By Larry0652 in forum Addon Templates
    Replies: 8
    Last Post: 24 Oct 2014, 03:30 PM

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