Jump to content

[SOLVED]Removing >> and + signs?


Recommended 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.

Link to comment
Share on other sites

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.daveegerton.com/assets/files/DThemes/globalNew.css

Courtesy Dave Egerton-

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';
Link to comment
Share on other sites

×
×
  • Create New...