ahoi,
i´d like to have the topbar always visible [dashboard, tools, search, logIN] or [profile pic, dashboard, tools, search, logOUT], but i don´t get the cutomisation done :-(
all i get now is a blank screen :-(
the script starts with:
<?php
if (isloggedin()) {
?>
first i tried to do an elseif with:
<?php
if (isloggedout()) {
?>
another time to reorder the doc and just make the second half only visible to logged in people ..... is there a hint in the world?
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
http://screencast.com/t/RIJBHgjRUj take a look at it
you mean width of block with "use recycle and fund" ?
Yes the width of the block, but on the left hand side
/views/default/css.php
#elgg_topbar_container_right {
float:right;
height:24px;
position:absolute;
right:0px;
top:0px;
/* width:120px;*/
text-align:right;
see the width commented out ?
removethe "/*" and the "*/"
then play with the value, eg width:120px; ;- )
not working for me, i was not able to make any changes
hmm?
i made the changes you mentiond above, but it did not work for me
sorrry ;-)
wrong code area
#elgg_topbar_container_left {
float:left;
height:24px;
left:0px;
top:0px;
position:absolute;
width:120px;
text-align:left;
width:60%;
}
still not working. what i want to move is the black bar from the left hand side. Thanks again
@ash, if you want to move the Topbar to center, it is simple. Go to views/default/pageshells/pageshell.php
move the code : <?php echo elgg_view('page_elements/elgg_topbar', $vars); ?>
to above the code :
<?php echo elgg_view('page_elements/header_contents', $vars); ?>
So the Topbar is below Header now. So the Topbar width size will be the same as header width size already.
Demo at plekz.com
- Previous
- 1
- 2
- 3
- Next
You must log in to post replies.