Posts: 1
Threads: 1
Joined: Feb 2013
Hi,
I just installed getsimple as a tool for my personal notes. So far I like it very much but I was wondering if there is an easy way to get rid of that stuff on the right site of my newly created page like the features-list and that social media stuff ...
Am I missing something?
Thanks for your answers & Kind regards
Raphael
Posts: 3,491
Threads: 106
Joined: Mar 2010
The feature list is in the sidebar component (admin -> theme)
I assume you use the default Innovation theme. To remove the social stuff, edit theme file sidebar.inc.php and remove all this:
PHP Code:
<div class="section" id="socialmedia" >
<h2>Connect</h2>
<div class="icons">
<!-- Social Media URLs are set within this theme's settings plugin -->
<?php if (defined('FACEBOOK')) { ?>
<a href="<?php echo FACEBOOK; ?>"><img src="<?php get_theme_url(); ?>/assets/images/facebook.png" /></a>
<?php } ?>
<?php if (defined('TWITTER')) { ?>
<a href="<?php echo TWITTER; ?>"><img src="<?php get_theme_url(); ?>/assets/images/twitter.png" /></a>
<?php } ?>
<?php if (defined('LINKEDIN')) { ?>
<a href="<?php echo LINKEDIN; ?>"><img src="<?php get_theme_url(); ?>/assets/images/linkedin.png" /></a>
<?php } ?>
<img src="<?php get_theme_url(); ?>/assets/images/break.png" />
<!-- addthis popup - you can add your username if you want analytics: http://www.addthis.com/help/customizing-addthis -->
<div class="addthis_toolbox" style="display:inline;width:24px;" >
<a href="//www.addthis.com/bookmark.php?v=250" class="addthis_button_compact"><img src="<?php get_theme_url(); ?>/assets/images/share.png" /></a>
</div>
<script type="text/javascript" src="//s7.addthis.com/js/250/addthis_widget.js"></script>
</div>
</div>
Posts: 6,266
Threads: 181
Joined: Sep 2011
Posts: 71
Threads: 6
Joined: Feb 2013
My theme doesn't have a sidebar atm
and you can always give it one easily considering the CSS framework I used.
You can download it here:
http://get-simple.info/extend/theme/foun...theme/598/
yea the sidebar can get really annoying...
another trick is you can set the sidebar elements to display:none
in your CSS which could solve the issue without requiring to edit any theme files.
Posts: 687
Threads: 63
Joined: Nov 2011
But on innovation you will need to fix stuff to make it centered after removing the sidebar. We need a new default theme
Posts: 1,247
Threads: 82
Joined: Feb 2011
(2013-02-28, 20:55:41)WebDevandPhoto Wrote: My theme doesn't have a sidebar atm
and you can always give it one easily considering the CSS framework I used.
You can download it here:
http://get-simple.info/extend/theme/foun...theme/598/
yea the sidebar can get really annoying...
another trick is you can set the sidebar elements to display:none
in your CSS which could solve the issue without requiring to edit any theme files.
css is part of the theme files. I don't see how you can change css without editting these files.