MyBB Community Forums

Full Version: change Forums title "Float Left"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Ok guys

http://prntscr.com/6mqvak


How can I make that thing FLOAT LEFT ( start from the left ) not from center ...



Please Help !
please put back clear link to the theme maker. moreover not sure if your forum is eligible for the
support from this community as it looks like your forum is supporting hacking & illegal activities
(2015-03-29, 08:58 AM).m. Wrote: [ -> ]please put back clear link to the theme maker. moreover not sure if your forum is eligible for the
support from this community as it looks like your forum is supporting hacking & illegal activities

ok , clear link added and the name of the theme maker. my forum is not eligible for support ? 

www.lgk-clan.com why ? it is a gamming forum, I am paying xxx dollars for 6 of my gaming servers, on Legal Platforms , which are linked to mybb forum. there is no illegal activities on my forums. So , I think I deserve to be help , just like all other ppl here. Thanks for understanding.  
well, you can add fixed width and float left for navigation class in the theme's global.css (around line 627)
.navigation {
  width: 99%;
  float: left;
  ............
  ............
.navigation {
width: 99%;
float: left;
background: #3e3e3e url(images/revolution/pm.png) repeat;
text-shadow: 1px 1px 0px #161616;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
-webkit-box-shadow: inset 0 0 1px 1px #5d5d5d;
-moz-box-shadow: inset 0 0 1px 1px #5d5d5d;
box-shadow: inset 0 0 1px 1px #5d5d5d;
border: 1px solid #161616;
color: #ccc;
text-align: left;
padding: 8px;
font-family: Source Sans Pro;
font-size: 13px;
font-style: normal;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}

added , but did not Fix it , it still starts from Center ...
for the logo image remove margin-top: 60px;
<div class="topbar"> 
<div style="margin-left: 2%; margin-top: 60px;" class="float_left"> 

in the welcome blocks remove margin-top: 40px;
<div style="margin-right: 40px; margin-top: 40px;">

and remove float: left; added to navigation class in the global.css

hard refresh your browser (eg. press CTRL + F5) on forum index page after above changes
(2015-03-29, 11:16 AM).m. Wrote: [ -> ]for the logo image remove margin-top: 60px;

<div class="topbar"> 
<div style="margin-left: 2%; margin-top: 60px;" class="float_left"> 

in the welcome blocks remove margin-top: 40px;

<div style="margin-right: 40px; margin-top: 40px;">

and remove  float: left; added to navigation class in the global.css

hard refresh your browser (eg. press CTRL + F5) on forum index page after above changes



Where to remove logo settings ? 

Where to remove Welcome Books ? 

Please Help !! 
check in header template , header_welcomeblock_guest template & header_welcomeblock_member template
Thank you sir , Solved !!