Jump to content

permalink issue


Recommended Posts

  • 3 months later...

Yes this is normal not 100% sure why or what the function is supposed to be but it can be removed.

Starting at line 182 of the blockwishlist.css file you will see /* Wishlist URL */ I added display:none as below:

 

/* wishlisturl */
#module-blockwishlist-mywishlist  .wishlisturl {
display:none;
margin:20px 0;
padding:10px;
background:#eee
}
#module-blockwishlist-mywishlist  .wishlisturl input {
display:none;
padding:2px 5px;
border:1px solid #ccc
}
 
After this the send button needed some top margin and I also had an issue with the send button expanding to 100% once clicked I fixed this by adding a margin-top, width and a float:right. (see below)
 
#module-blockwishlist-mywishlist #mywishlist  p.submit {
margin-top:10px;
margin-right:25px;
padding-bottom:5px;
text-align:right;
width:120px;
float:right
}
  • Like 1
Link to comment
Share on other sites

  • 3 weeks later...

Thank you but I am not sure where your file is located (path) but my blockwishlist.css looks different:

 

My blockwishlist.css is located --> /mydomain.com/themes/prestashop/css/modules/blockwishlist/blockwishlist.css and it looks very different from yours.

 

What is the path to your blockwishlist.css ??

 

Thanks

 

My blockwishlist.css looks like this:

/* module blockwishlist */
#wishlist_block #wishlist_block_list dl.products {
    font-size: 10px;
    border-bottom: 1px solid #fff;
    margin: 0 0 5px 0;
    padding: 3px 0 5px
}
#wishlist_block div.block_content #wishlist_block_list dl.products dt a.cart_block_product_name { font-weight: bold }
#wishlist_block div.block_content #wishlist_block_list dl.products dt { margin: 2px 0 }
#wishlist_block div.block_content #wishlist_block_list dl.products dt a.ajax_cart_block_remove_link { float: right }
#wishlist_block div.block_content #wishlist_block_list dl.products dd {
    font-style: italic;
    margin: 0 0 0 10px
}
#wishlist_block div.block_content p select#wishlists { width: 140px }
#wishlist_block div.block_content p a.exclusive { margin: 5px auto 0 auto }
Edited by lweinlan (see edit history)
Link to comment
Share on other sites

My blockwishlist.css is located --> /mydomain.com/themes/prestashop/css/modules/blockwishlist/blockwishlist.css and it looks very different from yours.

Iweinlan, in a standard installation, blockwishlist.css is found in /modules/blockwishlist and contains the code that tdr170 is suggesting you change.

You don't normally get a folder called modules under /themes/default/css, so you must be using a non-standard theme (which you've renamed to 'prestashop'?) with its own blockwishlist.css.

I also assume that the snippet you've posted is only part of the file - there's nothing there referring to a url. Search for 'url' within the file and compare that to the area of change suggested.

Cheers, Dave

Link to comment
Share on other sites

in fact path like: mydomain.com/themes/prestashop/css/

looks like a part of old prestashop 1.4.x

 

and default installation of 1.4.x version contains the /prestashop/css/modules/blockpermanentlinks/blockpermanentlinks.css file

 

i suppose that this is why this file looks different ;)

 

so, can you elaborate a bit about your ps version and theme that you use (is it default one?)

Link to comment
Share on other sites

Hi Vekia,

 

yes, my prestashop is an "old" version": 1.4.8.2

My theme is "pzone". The shop is at "yanksmannequins.com". I have enabled for you to see it, but it is not into production yet.

I modified the /yanksmannequins.com/themes/pzone/css/modules/blockpermanentlinks/blockpermanentlinks.css and added "display: none;" (as seen below) but this "permalink" does not want to disappear. Please note that the "permalink" issue is the same with the default theme or the "pzone" theme.

Can you please help and let me know where and what to modify so that this "permalink" does not appear anymore ???

Side note: I do not want to update to 1.5 because I am affraid it would break things with the "pzone" theme.

 

Thank you so much :)

 

original code blockpermanentlinks.css :

/* block top links */
ul#header_links {
    margin: 0.4em 1em 1em 0;
    list-style-type: none;
    float: right;
}
#header_links li {
    float: left;
    color: #cbcbcb;
    padding: 0px 2px;
}
#header_links a {
    color: #146eb4;
    text-align: center;
    text-decoration: none;
    font-size: 11px;
}
#header_links a:hover{
    text-decoration: underline;
}
#header_links li strong, #header_links li span{
    color: #e47911;
    font-size: 12px;
    font-weight: bold;
}

modified code (permalink does not disappear)

/* block top links */
ul#header_links {
        display: none;
    margin: 0.4em 1em 1em 0;
    list-style-type: none;
    float: right;
}
#header_links li {
        display: none;
    float: left;
    color: #cbcbcb;
    padding: 0px 2px;
}
#header_links a {
        display: none;
    color: #146eb4;
    text-align: center;
    text-decoration: none;
    font-size: 11px;
}
#header_links a:hover{
        display: none;
    text-decoration: underline;
}
#header_links li strong, #header_links li span{
        display: none;
    color: #e47911;
    font-size: 12px;
    font-weight: bold;
}
Edited by lweinlan (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...