played with HTML
-
after a course with HTML and CSS I tried to change the appearance of my blog. I wanted to cancel the search field, and put a new line for the slogan and the most important wanted to change the colour of the footer.
Well, HTML is obviously not understood well, and I had difficulties to get the blog to work again.
Now the sentence “Die in der Quellzuordnung https://widgets.wp.com/notifications/build.css.map?4aa3197ad83fef9edfbc434b6c6b1b89 angegebene https://widgets.wp.com/client/boot/stylesheets/shared/extends.scss wurde nicht gefunden.” appears.
Can someone tell me where and how I can insert this sentence in the HTML side??The blog I need help with is: (visible only to logged in users)
-
Hello,
For the time being, your blog seems to be fine. Perhaps you have removed your changes.
Can you tell me where you made your HTML and CSS changes for your site?
Can you show me the code you added or changed?
If there is a lot of code, please put it in a PasteBin and link that here.
http://pastebin.com/Thanks, talk with you soon,
Paul -
Dear Paul, many thanks for answering,
the problem is I do not remember the changes I tried. Could not have been much. It was on the front page, trying to remove the search field.Yes, the blog is Ok like it is.
I fully understand that without the necessary information to help me is not possible.
Many thanks for trying.
irmgard -
Hi @irmgard, we can help you with the changes you want to make to your site. I’m going to move this to the CSS Customization forum and we can continue from there. Just let us know what changes you wish to make and we would be more than happy to help with that.
To get you started, here would be the custom CSS to allow you to change the color of the footer background.
#colophon { background: #000; }This would hide the search in the header and take the title/description full width.
#search { display: none; } #main-title { width: 100%; } -
Hi thesacredpath,
many thanks. It worked immediately. I have still another wish.
The title of the blog is “Books of Reality” and the slogan is “Darkness cannot drive out darkness…” I want the title in the center and the slogan should start in the next ligne. Is this possible???Playing with HTML: I must have cancelled a stylesheet, because there was a warning : The in the source rules https://widgets.wp.com/notifications/build.css.map?4aa3197ad83fef9edfbc434b6c6b1b89 mentioned https://widgets.wp.com/client/boot/stylesheets/shared/extends.scss was not found.
The result was, that the Front page of the blog and
simultaneously the front page of Facebook ON THE MOBILE did not work anymore. I changed the blog to full screen (without sidebars) and now it works on the mobile too, but not the Facebook front page. Well, this is actually not a big problem. Who really needs Facebook?Many thanks again.
Irmgard -
That’s great.
On centering the title and putting the description below it, modify the #main-title rule I gave and add the two additional declarations (float and text-align) to it like below and add the second rule.
#main-title { width: 100%; float: none; text-align: center; } #main-title #site-description { display: block; }In regard to the warnings, it was likely a temporary thing. I’m not seeing any warnings on your site, and don’t worry, you can’t delete any of the original CSS for the theme. Have you tried switching back to the sidebar template to see what happens. If you do, and it breaks, make sure and post back here so that I can take a look at things.
-
-
- The topic ‘played with HTML’ is closed to new replies.