WebSite X5Help Center

 
Michele M.
Michele M.
User

Per togliere la riga di separazione nella ricerca e wishlist  it

Author: Michele M.
Visited 173, Followers 1, Shared 0  

PER TOGLIERE LA RIGA DI SEPARAZIONE nella ricerca e wishlist:
<style>#im-product-container .product-separator {
height: 0px!important;

}

<script type="text/javascript">
$(document).ready(function(){
$("select").css({'border':'0'});
});
</script>

Prima funzionava adesso se inserisco questo script sparisce tutto...

Posted on the
8 ANSWERS - 1 USEFUL - 1 CORRECT
Claudio D.
Claudio D.
Moderator

non so a cosa ti riferisci, comunque, se hai riportato tutto il codice ,  manca la chiusura del TAG STYLE;  te l'ho messo in grassetto

<style>#im-product-container .product-separator {
height: 0px!important;

}

</style>

<script type="text/javascript">
$(document).ready(function(){
$("select").css({'border':'0'});
});
</script>

Read more
Posted on the from Claudio D.
Michele M.
Michele M.
User
Author

Grazie Claudio, però la riga che voglio togliere è quella nel e-commerce ricerca appena sopra il prezzo

Read more
Posted on the from Michele M.
Claudio D.
Claudio D.
Moderator

non uso l'ecommerce, non hai postato la pagina e mi baso sul codice che hai riportato... 

ho risposto alla domanda "prima funzionava, adesso se inserisco questo script sparisce tutto..." ...

ripeto , se hai postato tutto il codice extra che hai inserito , in quel codice MANCA la chiusura del TAG STYLE.

ciò può provocare casini ...

Hai provato quello che ti ho scritto ?

Correggi e facci sapere... se non va posta il link della tua prova online...

io tra poco mi scollego ..

Read more
Posted on the from Claudio D.
Claudio D.
Claudio D.
Moderator

se ho capito a che riga fai riferimento modifica così:

<style>#im-product-container .product-separator {
height: 0px!important;

}
.im-products-separator {display:none;!important; }
</style>
<script type="text/javascript">
$(document).ready(function(){
$("select").css({'border':'0'});
});
</script>

Read more
Posted on the from Claudio D.
Michele M.
Michele M.
User
Author

ooo sì perfetto...adesso è ok Grazie

Read more
Posted on the from Michele M.
Claudio D.
Claudio D.
Moderator

bene...

per correttezza e come ringraziamento, andrebbe segnata come "corretta" la risposta che ti ha risolto...

e non te stesso in chiusura...undecided

Read more
Posted on the from Claudio D.
Michele M.
Michele M.
User
Author

Scusami...adesso è corretto?

Read more
Posted on the from Michele M.