Small Customization Needed

My website is here: www.intominecraft.com

PM me with your quote and when you can start.

I'll need the code changes/additions in a seperate txt file with where it was done , what I need is in the image below:

Edit: Added a few more things to the image.

 
Last edited:
No files would need editing to achieve what you want. A small css change for the search and an edit to a template for the social media images.
 
Yes, I did say you'd have to edit a template for the social media part, but for the search it's just a bit of CSS added to EXTRA.css. The whole job should take about five minutes, if you have the social media images you want putting in place.

Add:-

Code:
#searchBar {
    top: -120px;
}
to your EXTRA.css for the search bar (you may need to add !Important at the end) change the -120px to suit where you want it to show.
 
To remove the sub-forum arrow:

Code:
.node .arrowWidget {
    display: none;
}

Reduce distance between nav and breadcrumb:
Code:
.forum_list .breadcrumb {
    margin-top: -10px;
}
 
Top Bottom