alonperel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: too much white space on top of pic-linkAnybody?
Forum: Fixing WordPress
In reply to: leaves too much space betweenAny more advice?
Forum: Fixing WordPress
In reply to: leaves too much space betweenTried different things. Added this to the main stylessheet
.imagescentering {
margin-left: auto;
margin-right: auto;
margin-top:-10px;
width: 80%;
background-color: #b0e0e6;
}And then used div in the page. I left it like it so you can see.
Forum: Fixing WordPress
In reply to: Removing space between Menu(header) and ContentHi! Thanks for the help! I tried adding this:
.clear:before, .clear:after, .entry-content:before, .entry-content:after, .comment-content:before, .comment-content:after, .site-content:before, .site-content:after, .footer-widget:before, .footer-widget:after {
content: ”;
display: table;
}But it had no effect. But then I added this:
.content-area {
margin-top:-20px;
}and it worked! THANK YOU!
Forum: Fixing WordPress
In reply to: Can't manage to put full-width image on main postThe website is http://www.integra.care and yes, I know it’s extremly ugly to do that – but the client wants it, so whatever.
Forum: Fixing WordPress
In reply to: Is it possible to map-out classes/subclasses properties?My bad, I am new to this and I have to google what SCSS even is ;). Thanks ;).
Forum: Fixing WordPress
In reply to: Home Button changes color on hover, hover defined.Ok, solved it. I did a search on “color” and then I saw this:
.current-menu-item > a {
color: #a62425;
}Which I think is the “home-button” class, so I changed it to the #254a1c; and now it’s all good.
Thanks for pointing me in the right direction!
Forum: Fixing WordPress
In reply to: Home Button changes color on hover, hover defined.Hi,
I did that but now it became red all the time, so I tried removing this line as well:
a { text-decoration: none; color: inherit; }Didn’t help and messed with the page-links, so I returned it. So then what I did was I returned that line with a changed color to the one I want it permanently at:
a:hover { color: #254a1c; transition: color .15s ease-in-out; }did not help either π So now I deleted it.
It is red permanently from the home page, but black from all other pages. so weird…
Forum: Fixing WordPress
In reply to: Home button loses "class" when a page is clicked. Css style affectedHi! I MADE IT WORK! But… I don’t like how I made it work… I went to “menus” and there I had a huge array of pages/home page” – and the home page had no class, as you say. but all the pages had different classes that I played with before while trying to figure out how to make buttons out of the text. Well, buittons looking like text. ANYWAY, on the “manage locations” in menus… I then made “primary menu” into “menu1” which I just made.
BUT – before that, everything worked without me creating/using those menus. Everything besides that “homepage” link thingy… It bothers me. Is there no way to not use that menu thingy and still assign a class to the “homepage”?
Forum: Fixing WordPress
In reply to: Home button loses "class" when a page is clicked. Css style affectedUmm, how do I do that? :). I googled but couldn’t find.
Forum: Fixing WordPress
In reply to: Published on = Last modified, possible?Yeah… That’s what I’m doing now… It jsut sucks that I have to do it manually… I figured maybe somebody already wrote a plugin which does this sort of thing, or some code which auto updates the published-date… *sighs* ah well…
Thanks though ;).