Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Other Programming › Web Languages › rookie looking for help.

rookie looking for help.

Posts 1–7 of 7 · Page 1 of 1
wizardshogwarts
wizardshogwarts
rookie looking for help.
Hello guys

so i'm trying to make a site. but im stuck.



you can see "Jane Doe's Facebook timeline" is text-align i wanne keep it left. but i wont to place it vertical mid. dont want to use padding-top.
like it has to be auto:

this is the html code:
<header>
<h1><a href="#">Jane Doe's Facebook timeline</a></h1>
</header>

If anyone knows how to make it like this:
#1 · 8y ago
cunniemm
cunniemm
This is a simple way of doing thing. I'm assuming that this is a header, otherwise this is the code for it.

Code:
<!DOCTYPE html>
<html>
  <head>
    <style>
      #content {
        width: 100%;
        height: 40px;
        background-color: #3B5998;
        position: fixed;
        top: 0;
        left: 0;
      }

      #link_style {
        text-decoration: none;
        color: white;
        font-family: "Segoe UI";
        font-weight: bold;
        font-size: 12px;
        margin-left: 25px;
        vertical-align: middle;
        line-height: 40px;
      }
    </style>
  </head>
  <body>
    <div id="content">
      <a href="" id="link_style">Jane Doe's Facebook timeline</a>
    </div>
  </body>
</html>
#2 · 8y ago
wizardshogwarts
wizardshogwarts
Quote Originally Posted by cunniemm View Post
This is a simple way of doing thing. I'm assuming that this is a header, otherwise this is the code for it.

Code:
<!DOCTYPE html>
<html>
  <head>
    <style>
      #content {
        width: 100%;
        height: 40px;
        background-color: #3B5998;
        position: fixed;
        top: 0;
        left: 0;
      }

      #link_style {
        text-decoration: none;
        color: white;
        font-family: "Segoe UI";
        font-weight: bold;
        font-size: 12px;
        margin-left: 25px;
        vertical-align: middle;
        line-height: 40px;
      }
    </style>
  </head>
  <body>
    <div id="content">
      <a href="" id="link_style">Jane Doe's Facebook timeline</a>
    </div>
  </body>
</html>
mate you are the one thank you very much for this.
#3 · 8y ago
DA
damiansharma
Quote Originally Posted by wizardshogwarts View Post
mate you are the one thank you very much for this.
lol is this the new stackoverflow?
also bro wanna add me on skype?
#4 · 8y ago
cunniemm
cunniemm
No problem man! Glad to help!
#5 · 8y ago
wizardshogwarts
wizardshogwarts
Quote Originally Posted by cunniemm View Post
No problem man! Glad to help!
Can you help me? i Cant pm u.
#6 · 8y ago
cunniemm
cunniemm
Quote Originally Posted by wizardshogwarts View Post
Can you help me? i Cant pm u.
What do you need help with?
#7 · 8y ago
Posts 1–7 of 7 · Page 1 of 1

Post a Reply

Similar Threads

  • Looking for help on how to make a Get item command for bottingBy dispulse in Adventure Quest Worlds (AQW) Help
    0Last post 9y ago
  • looking for help fivemBy rfalexander31 in Grand Theft Auto 5 (GTA V) Help
    0Last post 9y ago
  • looking for helpBy GI-mark in Combat Arms Help
    2Last post 14y ago
  • Looking for help with HL2RPBy Wholfie in Garry's Mod Discussions & Help
    1Last post 11y ago
  • Looking for help with making my serverBy luckydays in Realm of the Mad God Private Servers Help
    0Last post 12y ago

Tags for this Thread

None