MyBB Community Forums

Full Version: Change text
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello MyBB Community!

I have the theme called Axis and in the right top corner there is a tab called "More" with 3 child tabs called "Link 1", "Link 2" and "Link 3".

The child tabs do not redirect anywhere so I would like to change the text and make the child tabs redirectable.

There are some social media buttons in the bottom left that do not redirect anywhere which I would like to make them redirect to another websites.

Website: https://www.PrankCalling.Org/

Thanks.
the top menu should be in the header template.. check in ACP >> Templates >> Axis Theme's templates >> Header Templates  >> header... and i dont see any social buttons at bottom left Huh
(2015-11-18, 06:19 AM)mmadhankumar Wrote: [ -> ]the top menu should be in the header template.. check in ACP >> Templates >> Axis Theme's templates >> Header Templates  >> header... and i dont see any social buttons at bottom left Huh

Those buttons [Image: dae1162be81d2e715f721f16418bf0ec.png]

Also I am trying to find where you change the text in Axis.css but there is no place where you can change it. Only color change.
in the footer template there is it.
(2015-11-18, 04:09 PM)inbetwee Wrote: [ -> ]in the footer template there is it.

Tried looking everywhere, couldn't find it :/

[Image: 816fa5a827e703b25eb86c216493b150.png]
Found it in inspect element. 
It said that it was in index.php but I tried downloading it from my FTP server and I did not find it with the CTRL+ F function-
it looks like this

<div class="socialicons">
<ul>
<li><a href="#"><i class="fa fa-facebook"></i></a>
<li><a href="https://twitter.com/PrankCalling" target="_blank"><i class="fa fa-witter"></i></a>
<li> <a href="#"> <i class="fa fa-google-plus"></i></a>
<li><a href="#"> <i class="fa fa-steam"></i></a>
</ul>

The link menu is in the header
 you can change the links 1 2 3  in to anything you want
well, in fact they are there, not sure why you cant see them

on line 32 of Footer template:
		<div class="socialicons">
			<ul>
				<li><a href="#"><i class="fa fa-facebook"></i></a>
				<li><a href="#"><i class="fa fa-twitter"></i></a>
				<li><a href="#"><i class="fa fa-google-plus"></i></a>
				<li><a href="#"><i class="fa fa-steam"></i></a>
			</ul>
		</div>
	</div>
</div>
(2015-11-18, 04:56 PM)subzr1 Wrote: [ -> ]well, in fact they are there, not sure why you cant see them

on line 32 of Footer template:
		<div class="socialicons">
			<ul>
				<li><a href="#"><i class="fa fa-facebook"></i></a>
				<li><a href="#"><i class="fa fa-twitter"></i></a>
				<li><a href="#"><i class="fa fa-google-plus"></i></a>
				<li><a href="#"><i class="fa fa-steam"></i></a>
			</ul>
		</div>
	</div>
</div>

Fixed the footer template but I do not how to link the tabs and icons.