A webkit to make html/css of a website - html

I remember that sometime ago there was a project of a webkit designed to, for example, if you want to put some images of you website then you can choose the options and the webkit and then just copy the html/css code and it's functional on your site, modifying with php and that's all. You don't have to know css at all, it was great. But i miss the link and I don't have any idea what's the name of the website.
It doesn't work only for images but also menus, links...etc. Thank you!

Sounds like you're talking about an SDK like Dreamweaver.

Related

Embedded CSS not working with TextEdit on Mac

I am very, very new, so please pardon my ignorance.
I was away (thus using PC's) and have learnt to use embedded css and had my practice website going ok, then I came home to face my Mac.
(I have not learnt to use a separate CSS, because that was hard to do on borrowed computers so I only know embedded and in-line CSS)
No matter what I do (the file was already formatted to be plain text, saved as html), I cannot get any CSS property "linked" to my html. The html codes are showing, but the CSS seems completely lost. I took a screen shot of the very simple example. The right part is the what shows on the browser. Can you please enlighten me?
Did you try other browsers?
There are some similar issues in this page css not working in safari.
After you try other browsers with the newest version, you can locate the problem. If other browsers also don't work, the problem might arise from your code.

How Would I Convert This GUI Design Into A Website?

Sorry, first timer, yup im that guy. but anyway I am in highschool and for my IST (Information Software and Technology) assignment I have to make a website, I based it off my school website, the apple website and some subreddits.
I would appreciate any any feedback to make it better and I would Extra appreciate if you could tell me how to make the design using code, the part im having most trouble with is making the sidebar and menu bar
AND it needs to be in HTML and I'm using Dreamweaver if that helps
Here is the photo
GUI Design
You will need a basic understanding of HTML and CSS. You can use JS if you want. I would recommend using Bootstrap library to help with the design. Dreamweaver won't do you any good. Get a text editor like sublime and learn html and css. Setup your project structure. Load bootstrap into your project. Use the bootstrap grid system for positioning elements and the navbar. Nobody on this site will write the code for you. We will review it and make suggestions, but ultimately the work is on you. Happy Coding!
If you're wanting to use dreamweaver, this is the approach to take:
Open up photoshop, and design your site exactly like your drawing. Export your images (logo, slideshow images, etc) and save them to a folder titled "img".
Open dreamweaver and create a new html site. From there, you can use the WYSIWYG to move around your images and text, and that will give you the html/css you need.
That said, if the course is based entirely on knowing HTML/CSS from scratch...this would be cheating. But if it's just a matter of "make it work", then this should work for you. Good luck!

Random css class from nowhere

I have a problem on a page i'm coding. Problem is i'm getting random img classes from nowhere (at least nowhere i know). I've put the generated class below.
<img class=" iryjanjabqqmypymdnuv" src="some/source/path">
There are several jquery plugins and jqueryui on the page but div that got img has nothing to do with those js libs. I also use php but that must have nothing to do with this i guess.
If you need any codes or names of the libraries just ask. Please help me i really have no idea and all the search i did was empty about this.
I had exactly the same problem. Find out that AdBlock Plus is responsible for that. So, just disable all the extensions and reload the page
Just wanted to chime in for anyone that finds this googling their problem, this is exactly the right answer in my case as well. AdBlock Plus (in Firefox only, not Chrome) was generating random class names for images I have embedded in my nav bar for social media links.
Now I have to either find a way to get around that or anyone using ABP in Firefox will see a weird looking nav bar due to this issue. It's not exactly an unpopular plugin.
I work in both Chrome and Firefox and use ABP in both. Hopefully we won't have to find workarounds for this.
Is it possible that you're browsing on a mobile network connection? Some mobile networks modify the HTML/CSS for images so they can serve lower-bandwidth versions, but allow you to "fix" them later. For example, on T-Mobile, if I hover over an image it will give me an Alt tag telling me the keyboard shortcut to use to load the original.
Obviously this won't be the case if it's all local...
I had the same problem and disabled all extensions in Firefox and then it was gone. Not sure which extension is the guilty party, have too many to chase it down by disabling each of them one at a time. :)

Alignment of images and data change in html webpages

Hello every one i had created a website using dreamweaver in windows7 which worked good in my system.I opened the same html site in another system with operating system windows xp and even in windows 7, but all the alignments of images ,textfields ,buttons and header image,content etc everything has been changed.what might be the problem.Can any one help me in solving this problem.Your answer will be most precious thing to me.Thanks to every one whose going to spend time on reading this question.
Without knowing more details it's hard to properly answer your question. Going to take a shot in the dark about a common issue.
If you did it in Dreamweaver you probably used its interface to drag and drop div elements around to place them in exactly the right positions. The problem with this method is that DW will use positioning relative to your screen size and it might not show up too well on other resolutions.
The solution to this is to make sure you code your containers correctly and not have a look at DW's CSS to fix it.
Without the HTML of your page (post it in pastebin and link it here), can't give a better answer.
Make sure you VALIDATE your code. In my experience using dreaweaver, the doctype declaration and the order of the tags can affect image positioning.
That was because you used different browser. In using Dreamweaver, try to not leave default values. For better debug you should code it with HTML and CSS. Those are not programming languages because they don't need exactly programming knownledge.
A really good HTML lessons at w3c.
A really good CSS lessons at w3c.

Formatting problem on Webpage with IE

I inherited a webpage to manage at work. I needed to add a new button so simply edited the existing jpeg to include the button and added a hyperlink to the jpg to open the link.
In Chrome, Firefox etc. all is well but now I get a weird formatting on IE.
I am NOT a web developer and am perplexed.
Thank you in advance for your help and advice.
The website is www.kimberleyjackson.com.
Sincerely,
Jason
That page is not really HTML, it's using Word-generated VML which as you see is ancient and deprecated technique.
The only thing I can suggest is to rewrite the page using "pure" HTML without all this fancy and deprecated stuff.
As you're not a web developer I fear you'll have to hire one - web page should be developed by web developer, not by document processing software.
Like above people have said, this is not going to be an easy page to maintain. That being said... is your new image the same size as the old image? If not, that may be causing misalignment. What changes exactly did you make?