semperaye
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to add html color codes to wordpress horizontal linescorrection:
<hr class=”hr-color-1″ />Forum: Themes and Templates
In reply to: [GeneratePress] How to style horizontal lines on Generate PressYour the best thanks! Seems like when I finally learn something, it changes…I guess thats technology!
Forum: Fixing WordPress
In reply to: How to add html color codes to wordpress horizontal linesSolution:
Custom CSS:
.hr-color-1 {
background-color: #dbec15;
}.hr-color-2 {
background-color: blue;
}etc.
Post/Page:
<hr class=”hr-color-1″;/>
Forum: Fixing WordPress
In reply to: How to add html color codes to wordpress horizontal linesFor example:
https://www.salamatphilippines.com/mimaropa/ You can see here its working, and here its not: https://test.salamatphilippines.com/mimaropa/IDK why, mind blown. The code above:
hr {
border: 1px solid #dbec15;
}Is that custom css? I can’t just insert different colors on each page? I have many pages that need to be styled differently not just one line unfortunately. I’ll reply back here if I find a solution thanx.
Forum: Themes and Templates
In reply to: [GeneratePress] How to style horizontal lines on Generate PressIs that something I can insert into the page or is that custom css? Because I have many of these lines that I would need different colors 🙁 Thats why it was easy before to just insert them on page.
For example:
https://www.salamatphilippines.com/mimaropa/ You can see here its working, and here its not: https://test.salamatphilippines.com/mimaropa/Sorry I’m learning 😛
Forum: Plugins
In reply to: [Firelight Lightbox] Transparent BackgroundWow thanks! Is there anyway to set opacity instead? So that it’s only semi transparent?
Forum: Plugins
In reply to: [Adnow Native Widget] Adnow admin bar appears for all users289862 Philippines currently. The issue is related to the wordpress app, it displays the admin bar for all users. While if they click on it, the app will not allow them access to the app settings, but it still appears to them.
Forum: Fixing WordPress
In reply to: How to add html color codes to wordpress horizontal linesHmmm… well the code <hr color=”#dbec15″> is working on my main site that is running a different theme, but on the new test site that is running a new theme, it’s not working. How can I use your code with an html color?
Thanks for the help!
Forum: Fixing WordPress
In reply to: How to add html color codes to wordpress horizontal lines<hr style=”color: #dbec15;”/> Is not working.
Got it. Hope this helps some other noobs out there!
.button,
.menu-item-3404 {
margin-bottom: -15px;
}Forum: Fixing WordPress
In reply to: How to adjust the margin-bottom of just one buttonTy! I just had to add the .button 🙂
.button,
.menu-item-3404 {
margin-bottom: -15px;
}Yes, but unfortunately this effects all buttons and so it messed up the css elsewhere so I need to figure out how to adjust the margin-bottom for just that one button 😛
FYI; Solution: setting the .button style with a -px bottom margin.
Example:
.button,
.button:visited {
display: inline-block;
*display: inline;
*zoom:1;
padding: 10px 15px;
font-size: 17px;
margin-bottom: -15px;
}I’m looking to get it closer to the bottom of the screen, about 1/4″ from the bottom, but -#px’s doesn’t seem to work.
Forum: Plugins
In reply to: [Menu Image, Icons made easy] Apparently Not 100% Compatible Generate PressI just ended up changing the menu color to match the glitch, now it’s only a matter of color distortion do to compression that I need to fix.