How to add specific elements to an existing tumblr theme? - html

I am currently using a premade theme on my Tumblr (pixiplum.tumblr.com). I want to keep the overall design and sidebar/navigation for my downloads page, but want the posts to appear in a grid-style like this (https://kumikya.tumblr.com/dir) with filters.
I am confused as how to make this possible. I created the downloads page and used 'Standard Layout' and tried adding fitting codes to make the grid, but I am clueless. I also tried using the theme HTML as the custom HtML but this makes the page look weird, lol.
I am pretty clueless and hope to get a little more knowledge.
Thanks already :)
'

Related

How can I add a table in a theme using Wordpress

I’m building a site as part of my research using Word Press. I’m trying to display samples on the homepage in a neat way, something similar to this one http://www.maitrechoux.com/menu/index.html?categ_id=all .
I have removed all of the home function using remove_action. How can I add the table and then how can I add the pictures inside each cell? Is it only matter of CSS or do I need to add HTML code for this? I recently joined word press community and this is the only thing remained to complete my website. Really appreciate any help!
NO, don't use tables. I think what you actually want is just to display something that looks like table.
You need to code both html and css for that.
You can use any of popular css frameworks to help you out, or you can code it yourself using, flex, floats, or grid...
When you are done then with wp functions you need to render that data in your wp theme.
Your question is to broad and big to be answered via code snippets or examples, sorry.
I recently wanted to change the template of my WordPress website and use React tables.
But this would cause my site to drop in Google rankings, and in terms of SEO, this would not be a good thing.
That's why I decided to use my template pre-built tables and change the files to my liking in the settings section by editing css files.

Making website responsive in Joomla

I'm currently developing a website using Joomla. I have problem to make my website responsive. My current solution is adding CSS codes into the HTML, but it does not work. Can someone give me a solution on how make my website responsive without using extension or changing the template. Thank You.
If the template you're using isn't already responsive you're really making things hard for yourself by wanting to stick with it.
The way css is loaded varies according to template, so you need to check yours to see what mechanism(s) it gives you for including your own css. Again, if there isn't one, you're probably best to get a new one, it will make life so much easier.
If they've implemented a mechanism for you to use, that will probably define the file you can use.
There may be an option in the template admin panel to enter css.
Without knowing which template you're using and how it does that, it's pretty hard to give a very useful answer.

how to put html code into wordpress theme

I've been running my own blogger website from sometime and now I thought might be the time of some changes.
I'm also a website designer. TBH I suck at PHP but I'm good at html. I have designed a Home page for my site and I Want to put it to my website. But the problem is that the site is running on WordPress theme.
So, is there a way that I somehow put my html coding of Home Page into the theme and the rest remains the same(I mean the rest of the pages).
Thank You
Well if you want to modify the theme, you will have to create a child theme because if the Theme has an update, you will lose your modification.
Create a child theme is not very difficult and the Codex tutorial is not complicated : https://codex.wordpress.org/Child_Themes
Hope i answered correctly. If not, tell me why.

Simple blog in CSS and HTML only

I have a simple html/css-only static website on which I would like to add a blog. Comments and RSS aren't necessary.
Now, how do I do that, without having to write all my entries in pure html?
My website consists of a vertical menu and an area to the right of it, where all the content goes on each page. I would like a blog inside that area on the blog page, so a blog on a separate page with its own layout is not what I'm looking for.
Googling this doesn't really help me much since the majority of the hits are on sites offering blog services.
Thanks in advance, I hope I'm not being too difficult. Please leave some feedback on my question if you think there are things I should have tried out before asking.
If i understand what you want the answer is that ist is not possible in pure html and css. With only Html and css you can not make a blog (if you dont want to edit the source everytime you write an entry and have to make a new file for each entry and so on).
You need some code (php or so) that is able to store and load the entrys into your site.
Html and css are not meant to make things working. With Html you define the elements so that they are structed and then with css you "style" your work. But for the task of a blog (i think you want an editor for the text on the site, the ability to edit, delete, more than one site and so on) you need something like php or aps.net that is able to "interact".

Adding Wordpress to Static HTML Page?

I was asked earlier today about adding WordPress to a website and was wondering if it was possible and how much work it would be.
Basically there is a static HTML page millerat.com. The owner of the site wants me to create a WordPress blog with the URL millerat.com/blog. The theme needs to look similar to the static page and the owner does not want to change the static HTML page, other than adding a navigation link to the blog.
So is this possible? How difficult would it be?
All advice on doing this is appreciated.
Designing a new wordpress theme could be a bit of a hassle, but overall what you're trying to do is not that difficult. What you'll want to do is simply link his static page to the wordpess blog like you would any website. The question your asking has a lot of material to be covered, but this link should certainly get you started. Setting up the existing website is quite easy, setting up wordpress will be a bit more work. You'll need a decent grasp of PHP, HTML, and CSS to get the theme the way you'd like, but it is all definitely doable. Once again this one is a very extensive topic, but you can find the documentation for designing a wordpress theme here.
Certainly possible.
If you're not familiar with WP, there will certainly be some learning curve.