mama2many Posted November 21, 2009 Share Posted November 21, 2009 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. Link to comment Share on other sites More sharing options...
Mr Bombastic Posted November 22, 2009 Share Posted November 22, 2009 Think you are talking about those pesky Nav Pipe symbols can use any ACSII symbol to replace not sure about images th Link to comment Share on other sites More sharing options...
mama2many Posted November 22, 2009 Author Share Posted November 22, 2009 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 More sharing options...
Mr Bombastic Posted November 23, 2009 Share Posted November 23, 2009 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.cssCourtesy Dave Egerton- Adding a new Style sheet to our themeFirstly 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 More sharing options...
Recommended Posts