semperaye
Forum Replies Created
-
Update. Dove back into this and now when I try to edit the page with bb lite, the page loads without the row in question. It’s gone…but when I close the bb lite editor, the page is still formatted.
Update: I was able to replace the row containing the background image and upload the new image as the background for that new row. In doing so, the page looks as it should in preview, but upon submission, the page background becomes white and the inner content becomes left justified when it was centered before. Really weird. Here is the link:
test.salamatphilippines.com
I should mention. It’s working correctly on the main site, so I don’t think this is a problem with any html.
Thanks for taking a look!
Ok no problem ty.
Solved.
Forum: Themes and Templates
In reply to: [GeneratePress] How to disable top bar on certain pagesYup, that did it ty. Apparently you just find the page ID by hovering over the edit page button on the admin bar, then put that before the code. Thanks.
.page-id-144 .top-bar {
display: none;
}Forum: Themes and Templates
In reply to: [GeneratePress] Spacing between sidebar widgetsIt’s not big deal I guess, I’m trying to eliminate as many plugins as possible anyway. Thanks.
Forum: Fixing WordPress
In reply to: How to change menu image on hover with CSS?Thank you Jacob works great! That’s my first dive into anything php related 🙂
Forum: Fixing WordPress
In reply to: How to change menu image on hover with CSS?Right ok… try not to laugh to hard…
This is what I ended up with…and ofcourse it’s not working hahah:
Forum: Fixing WordPress
In reply to: How to change menu image on hover with CSS?Thank you, the opacity trick worked 🙂 As far as making it clickable, I used the snippets plugin to add the following to functions:
add_action(‘generate_inside_navigation’,’generate_navigation_logo’);
function generate_navigation_logo()
{
?>
<div class=”site-logo”>

</div>
<?php
}Forum: Themes and Templates
In reply to: [GeneratePress] Spacing between sidebar widgetsYour right, it was the “Fixed widget.” That sucks because I really liked that plugin 🙁 After enabled/re-enable of that plugin, the new widgets can be displayed, but they still don’t push down the footer widget area with fixed is used 🙁
Forum: Fixing WordPress
In reply to: adding opacity css to this codeAmazing! I guess that was easy. Thank you Jacob
Forum: Plugins
In reply to: [Firelight Lightbox] Transparent BackgroundHere is the code I used sir. Thank you very much! I’m really happy with how it turned out 🙂
#fancybox-content, #fancybox-outer {
background-color: rgba(255,255,255,0.6);
border-color: rgba(0,0,0,0);
box-shadow: none;
}Forum: Themes and Templates
In reply to: [GeneratePress] Spacing between sidebar widgetsI was able to “fix it” on certain pages by hitting enter a few times in the visual editor, but not with those pages with the map widgets. See the following: http://imgur.com/a/sa2SG The text hits the footer widgets. Additionally, if I try to add another widget under the map, like an ad or another map for example, then the new widget will not show up.
Thank you! I’m using your code instead because I decided to eliminate a plugin that was allowing me to use the button in a menu, but it wasn’t needed.
#footer-widgets .button,
#footer-widgets .buttongray {
margin-bottom: -15px;
}Forum: Themes and Templates
In reply to: [GeneratePress] How to style horizontal lines on Generate PressI’ve got it working but with this new format the lines are hardly noticeable as they are far thinner then before. How can I add to this code a width or thickness setting?
Thank you!