I think this question is a silly one, but we are here for help, right? So can anyone tell me how to make a home button? Like Youtube, Facebook, W3schools or whatever? You can see Youtube example. And how to make it more beautiful with css?enter image description here I was making this home button like this: Home Without using CSS for now. I will write my real site's name instead of "home" in my html document.
You can always use bootstrap, they have a lot of beautiful buttons and you can copy the source code and learn with it.
Related
When i make a post in my website then it's paragraph(text editor content) is not show proper way in front end website(wordpress) .
but content is show in text editor in proper way.
Please give me a solution!
A lots of thanks..enter image description here
enter image description here
Talk to your HTML CSS developers about that..I dont think there is any technical issues. Your paragraph tag must be made to display:none as far as my knowledge is concerned.
It seems that your theme doesn't support RTL, you can ask the theme developer about this problem or apply the CSS yourself.
https://codex.wordpress.org/Right_to_Left_Language_Support
https://www.youtube.com/watch?v=1qxuBsQd74I
I am using weebly site builder and so just a beginner on Html coding. I am having issues making anchors work on my pages. They seem to work on some systems and not others, and so I think there must be a better method.
Here is what I am doing
I have a guest author page and I want each guest, to have a direct link to his section of the web page
I set up an anchor as follows
Then use the following link to it
http://arthurvaso.weebly.com/guests2016.html/#smith2
On some computers/broswers this works just fine, in others, it just goes to the Top of the page instead of the section I want.
I basically have pages I want to make direct links to
Poet1
Poet2
Poet3 etc
I search here, an all the posts were either years old, or not exactly the answer I was looking for. It seems the newer the browser version, the less my method works.
I really appreciate any help, thanks!
There is a little trick to it, but it's an easy fix for you. You are missing in your Anchor.
Change:
<a id="smith2"></a>
To:
<a id="smith2"> </a>
Make sure to publish the changes.
And, note that your Anchor Link should be:
http://arthurvaso.weebly.com/guests2016.html#smith2
without the / after .html
I'm using this embedded iframe in my website (www.thatgolda.com):
playlist
The circled logo, when clicked, goes to a link that automatically downloads spotify. I'd like to know if there's some code I can use to change that link to my spotify artist page.
I'm not very familiar with javascript, so I'd appreciate an answer "for dummies."
Thanks in advance for your help.
GP
From the Spotify Play Button website (https://developer.spotify.com/technologies/widgets/spotify-play-button/):
Is there any way of customizing the design of the Spotify Play Button?
E.g. color, typography…
Currently there is no way no change the design of the Spotify Play
Button.
You can, however, use a Spotify Follow Button elsewhere on your website! The design is familiar for many users and clearly shows what the action of the button is.
https://developer.spotify.com/technologies/widgets/spotify-follow-button/
I am making an ASP.NET website where i have sort of a static image gallery. Now when i click on an image in this gallery i want to show a pop up containing text (10-15 lines) describing the image.
How can I achieve this? I don't have much idea as to how I should proceed.
There are two steps to archive this.
First step is to make the pop up window using css.
Many examples on google about that.
Search on google
Open Css popup
Easy Css pop up
The Second step is to make your javascript to open it and show your actually text. If you use a library like jQuery you can make many thinks more easy, but if you wish pure javascript can you also make it work.
For example on the last link 'Easy Css pop up', the javascript to open it is:
<a href="javascript:void(0);" onMouseover="ShowPop('pop');"
onMouseout="HidePop('pop');"><img src="myimage.jpg" alt=""></a>
So what you do is to render your text of your images into the div that have this css popup and then you place a code like that on every image to open the correct popup.
Of cource you can find a ready to use gallery like the http://highslide.com/
You can use jQueryUI Dialog or simply open page with javascript
I am looking for a tutorial on how to style my word press (hosted on word press) blog to look like my businesses home page. I would like the links to work and look the same. The site isn't completely styled in CSS, but can maybe move more of the styling to css from the HTML. Can someone point me in the right direction where I need to start.
Thanks,
If I'm not mistaken, isn't there an upload theme section at wordpress.com? Anyways, you'll need to zip up your theme (after you make it) and upload it there. Also, here's a tutorial for making a basic theme.
http://themeshaper.com/wordpress-themes-templates-tutorial/
(that's not my blog by the way)