PrestaShop Forum

The best place in the world to ask questions about PrestaShop and get advice from our passionate community!

PrestaShop Forum

Jump to content

 

[SOLVED]Removing >> and + signs?

3 replies to this topic
#1
mama2many

    PrestaShop Apprentice

  • Members
  • PipPip
  • 50 posts
Site is here: http://zingslings.com/prestashop/ (it has a long way to go lol, just discovered prestashop yesterday)

I'd like to remove the + signs in the Shop (categories) block as well as remove the >> signs in the How To (Links) block but can't seem to find where to do so.

I'd be thankful for a point in the right direction.
Jessica ~ busy work at home mom to 5 boys & 2 girls.

#2
Mr Bombastic

    PrestaShop Newbie

  • Members
  • Pip
  • 24 posts
Think you are talking about those pesky Nav Pipe symbols can use any ACSII symbol to replace not sure about images th

Attached Files


Mr Bombastic


Bombastic Plastix

#3
mama2many

    PrestaShop Apprentice

  • Members
  • PipPip
  • 50 posts
Thanks, I did delete the > out of that area in appearance pref's but it doesn't take care of it in the block.

I did find where to change the plus sign, that was located in global.css here:

div#categories_block_left span.CLOSE {global.css (line 1277)
background-image:url([color=red]../img/icon/more.gif)[/color];


So I just change the plus sign image to a blank image.

Ah Ha! And I just found the other, also located in global.css

ul.bullet li, .block ul.bullet li {global.css (line 560)
background:transparent url([color=red]../img/bullet.gif[/color]) no-repeat scroll 0.6em 0.5em;
list-style-type:none;
padding-left:2em;


I know I looked there before and didn't see it the first time.
Jessica ~ busy work at home mom to 5 boys & 2 girls.

#4
Mr Bombastic

    PrestaShop Newbie

  • Members
  • Pip
  • 24 posts
I want to go through and chop the CSS up into a few different sheets That global css is a monster. It does help to just use the override sheet for building a template with all the styles cleared but you still have to locate everything
http://www.daveegert...s/globalNew.css

Courtesy Dave Egerton-

Quote

Adding a new Style sheet to our theme

Firstly make copy of global.css and rename copy to globalNew.css. Then remove all rules from this file except those for our main blocks with the dimensions we have dicussed . (If you want to avoid the time in doing this, you can also download this globalNew.css file from here).

Now upload this file to your new themes/css directory.

Next we will add the link to our new css file. To do this open Header.php which is located in your Prestashop root directory.

Copy the line $css_files[_THEME_CSS_DIR_.'global.css'] = 'all'; and paste this directly below, then change global.css to gloablNew.css making sure this line comes after global.css. You code should look like this;

/* CSS - second link to gloablNew added by DE*/
$css_files[_THEME_CSS_DIR_.'global.css'] = 'all';
$css_files[_THEME_CSS_DIR_.'globalNew.css'] = 'all';

Mr Bombastic


Bombastic Plastix