Changing Width if "logo_menu.png"
Permalink
I am adding a new "logo_menu.png" to a site I'm working on and need it to be wider. Where do I edit so that the image isn't fixed at 49px x 49px? and also, have it so that it pushes over the Edit and Add buttons?
Thanks for your reply. I have changed that line of code so that the width is 106, but when I uploaded the updated file to replace the old one, I see no difference. Is there something I'm doing wrong?
OK, I've done it. I needed to edit the CSS file called 'ccm.ui.css'. It can be found here: .../concrete/css/ccm.ui.css
I edited the div#ccm-logo-wrapper, div#ccm-logo-wrapper img and div#ccm-page-controls ul#ccm-main-nav {margin: 0px; padding: 0px 0px 0px 106px(change this value to whatever the width of your image is);} styles
I edited the div#ccm-logo-wrapper, div#ccm-logo-wrapper img and div#ccm-page-controls ul#ccm-main-nav {margin: 0px; padding: 0px 0px 0px 106px(change this value to whatever the width of your image is);} styles
I was able to change the logo width on the admin side.. but it's still showing up squished on the front end.. When I check the code in firebug it's still showing 49px x 49px hard coded into a page someplace.. Anyone know what page this would be coming from and what directory?
check /concrete/themes/core
That's what I did.. I took out the width in both concrete.php and dashboard.php in this line of code..
<div id="ccm-logo"><img src="<?php echo ASSETS_URL_IMAGES?>/logo_menu.png" height="49" alt="" /></div>
and it's still showing up squished on the front end toolbar. It only seems to effect the backend admin section.
<div id="ccm-logo"><img src="<?php echo ASSETS_URL_IMAGES?>/logo_menu.png" height="49" alt="" /></div>
and it's still showing up squished on the front end toolbar. It only seems to effect the backend admin section.
That's what I did.. I took out the width in both concrete.php and dashboard.php in this line of code..
<div id="ccm-logo"><img src="<?php echo ASSETS_URL_IMAGES?>/logo_menu.png" height="49" alt="Control Freak CMS" /></div>
and it's still showing up squished on the front end toolbar. It only seems to effect the backend admin section.
<div id="ccm-logo"><img src="<?php echo ASSETS_URL_IMAGES?>/logo_menu.png" height="49" alt="Control Freak CMS" /></div>
and it's still showing up squished on the front end toolbar. It only seems to effect the backend admin section.
Sorry forgot concrete/tools/page_controls_menu_js.php
Copy the file to your /themes/core/ and edit it.