Webmasters › Re: Who Says Blogging Isn't Lucrative? See How Much likes of Nairaland (Seun) making by Julius2214(m): 6:15pm On Nov 02, 2018 |
kenniefawole: I know it a forum , but with blog post .. It seun osewa can still be referred to as a blogger What are you even saying? "forum with blog post?" You're just disgracing the intelligent bloggers out there |
Celebrities › Re: Michael Jackson Tops 2018's Highest Earning Dead Celebrities List by Julius2214(m): 8:29pm On Nov 01, 2018 |
slawomir: Isoright
Love this guy like crazy
The real dancer not those psquare and Chris brown
The only dancer close to mj is usher Psquare and Chris brown are not competing with MJ. Idiot |
Webmasters › Re: I Have Problem With Integrating My Newly Hosted Domain Name Into My Blogger by Julius2214(m): 11:29am On Oct 30, 2018 |
Jacktheripper: Verify the name on Google search console first.  What's this one saying |
Webmasters › Re: A Professional Webmaster Needed! by Julius2214(m): 2:34am On Oct 28, 2018 |
susrite: To every professional webmaster on Nairaland, I have my domain and my hosting is active...
If you can design an ad-listing professional website please call 0813/756/0560
Or if you can drop your number (whatsapp or telegram) please do and I'll contact you.
Let's talk business! I'm a pro... Lets work together 0706 516 1651 |
Webmasters › Re: I Need A Blogger Template by Julius2214(m): 12:50pm On Oct 27, 2018 |
renaissance: yeah I know....I want "list menu" for mobile device also Show me a sample of a blog that uses such |
Webmasters › Re: I Need A Blogger Template by Julius2214(m): 11:56am On Oct 27, 2018 |
renaissance: What about blogger templates that will have "list menu" as against the "drop-down menu"... Almost all templates has "list menu", it only changes to "drop-down" when you view the site from a mobile device |
Webmasters › Re: I Need A Blogger Template by Julius2214(m): 4:07am On Oct 27, 2018 |
|
Celebrities › Re: Daniella Okeke Strikes Seductive Poses In New Photos by Julius2214(m): 7:08pm On Oct 26, 2018 |
Looks more like drawing |
Webmasters › Re: Help Me Rate My Newly Built Website by Julius2214(m): 7:05pm On Oct 26, 2018 |
|
Celebrities › Re: Adetutu Alabi Featured On BBC!! The Rihanna's Connection (video) by Julius2214(m): 7:03pm On Oct 26, 2018 |
mubaking: wow am happy for her This thing no resemble Davido na
|
|
|
|
Webmasters › Re: How I Made $3,111.74 In 1 Month With My Blog Easily… by Julius2214(m): 1:11am On Oct 25, 2018 |
I'm just wondering how you can make that kind of money, but couldn't squeeze out $10 to buy domain. |
Webmasters › Re: Ecommerce And Fuel Station Management Software For Sale. by Julius2214(m): 5:29pm On Oct 24, 2018 |
Demo? |
Webmasters › Re: Help Me Rate My Newly Built Website by Julius2214(m): 5:28pm On Oct 24, 2018 |
Chatflick: Okay thanks! 0816.059.2751 How much will it cost to code a custom script? Abeg message me |
Webmasters › Re: Help Me Rate My Newly Built Website by Julius2214(m): 3:12am On Oct 24, 2018 |
This is getting interesting |
Web Market › Re: All PHP Script Available, Internet Banking Script, Social Media , ICO, E.T.C by Julius2214(m): 3:00am On Oct 24, 2018 |
How can I see the demos |
Webmasters › Re: I Need Help On Coding Issue by Julius2214(m): 6:28pm On Oct 23, 2018 |
Don't forget to drop a comment if it worked |
Crime › Re: Man Who Was On His Way To Lock A Church Among Those Killed In Kaduna Crisis(pics by Julius2214(m): 3:32pm On Oct 23, 2018 |
GoTV:
Nobody is killing Christians. Kaduna crises broke out and alot of Nigerians irrespective of tribe and religion were unfortunately killed. Why do we Christians like to claim victims of every misfortunes? Why make it seem like Christians are the primary target? We Christians should be careful of causing religious crisis with our misguided talks. You're spewing this trash from your mouth because you're not in Kaduna |
Webmasters › Re: I Need Help On Coding Issue by Julius2214(m): 11:19pm On Oct 22, 2018*. Modified: 11:43pm On Oct 22, 2018 |
OK, if you're using WordPress, you'll need to add this css code to your WordPress. To do that, open Appearance >> Customizer >> CSS. Paste the code below in the provided text box. You're doing this so that you won't have to manually add new css each time you want to create a download button Here's the css code .dl-button { background-color: #f44336; /* Red */ border: none; color: white; padding: 12px 40px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; }
Then go to the post where you want the download button to appear and past this html code there. <p class ="dl-button"><a href="http://site.com/music-file.mp3"> DOWNLOAD MP3</a><\p> Make sure u paste it exactly where u want to add the download button |
Webmasters › Re: I Need Help On Coding Issue by Julius2214(m): 5:53pm On Oct 22, 2018 |
Are you using Blogger or WordPress? |
Webmasters › Re: What Could Be D Cause Of This by Julius2214(m): 1:25am On Oct 22, 2018 |
From the message, it sounds like he's been approved |
Webmasters › Re: I Need Help On Coding Issue by Julius2214(m): 1:16am On Oct 22, 2018 |
You can also do this without using image but just css. Copy this code below and paste it where u want your download button? Change the link to your music download link. <p class ="dl-button"><a href="http://site.com/music-file.mp3"> DOWNLOAD MP3</a><\p>
CSS
.dl-button { background-color: #f44336; /* Red */ border: none; color: white; padding: 12px 40px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; } |
Webmasters › Re: I Need Help On Coding Issue by Julius2214(m): 12:53am On Oct 22, 2018*. Modified: 1:23am On Oct 22, 2018 |
You can either use an image button like the image below, or use pure css. It seems you're a beginner, so I'll just break it down to the lowest level of understanding. If your using an image button, you'll need to have the image uploaded first. You need 2 links for this style 1. The link to where u uploaded the music or the video file(eg. http://site.com/music-file.mp3) 2. The link to the image that says "Download MP3"(eg. http://site.com/image/download.jpg) Then u create an href and img tag containing both links above. See below: <a href="music-link-here(link1)"><img src="image-link-here(link2)"></a> So after adding the links, it'll be like this below: <a href="http://site.com/music-file.mp3"><img src="http://site.com/image/download.jpg"></a> So just paste the link where u want the download button to appear... That's all |
Webmasters › Re: For Those Looking To Start A Blog Or Website This Post Is For You. by Julius2214(m): 2:53am On Oct 21, 2018 |
Hmmm...
What an irony |
|
|
|
|
|
|