rubyannrsls
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to remove bootstrap button from cover page in evolve theme?Try adding
display: none;
on its elements ??Forum: Fixing WordPress
In reply to: Image on a post not changing sizeTry checking the url of the image in the
img src="https://..."
Forum: Fixing WordPress
In reply to: Blog pagePage Templates might help you ??
Forum: Fixing WordPress
In reply to: How To Edit Sidebar Recent Post FontYou can do so by several ways.
1. Add this to your style.cssa.post-title.cat-post-title { font-size: 18px; }
2. Add !important to the value of font-size in .cat-post-title found in your cat-posts.css
.cat-post-title { font-size: 15px !important; font-size: 0.9375rem; }
3. Delete font-size: 0.9375rem; and just leave the font-size: 15px; in .cat-post-title found in your cat-posts.css
.cat-post-title { font-size: 15px; }
Hope it helps you ??
Forum: Fixing WordPress
In reply to: Link colorI was trying to change the link color of a single beat
Are you talking about changing the link color as you hover onto the link? If so, try adding this to your style.css
.store_table a:hover { color: red; }
Or if you’re trying to change the color of the link itself, change the color: #fff; to what color you want
.store_table a { font-weight: bold; color: #fff; text-decoration: none; }
Hope it helps ??
Forum: Themes and Templates
In reply to: [Variant Landing Page] Hide stuffAdd this code to the css
.testimonial_heading_container, .testimonial_item_contianer, .contact_detail { display: none; }
Hope it works for you ??
Forum: Plugins
In reply to: [Plugin: Meta Slider] Slider size do not respond to image sizeSorry to bother. Figured it out already. Lol
Sorry to bother. Figured it out already. Lol
Forum: Fixing WordPress
In reply to: How to execute form action in wordpress?My problem is executing the php in the form action=”” stated in my Topic title. Sorry for not stating the problem in my message.
I think the problem is I am calling the php in the wrong way. I’ve searched for ways to do that but I couldn’t find answers. Isn’t it possible to just call the php in action as if it is in html?Something like:
<form id="main-contact-form" class="contact-form" name="contact-form" method="post" action="submitform.php">
*where submitform.php is found in the same path of index.htmlHope you could help me. Thanks!