freatz
Forum Replies Created
-
You’re the BEST!!!
It worked!!!
Thank you very much!!!!!!!!Hi, bcworkz,
Thank you very much!!!I don’t know much about php file… even less about child themes, so sorry if this is a dumb question:
Is there any way to overwrite that bit adding a script on the functions file? or adding other file?Forum: Themes and Templates
In reply to: [Customify] Changing “Leave a reply” textHi, Long,
I understand that topic. But my site is transtated to Spanish and it is a Child theme. What file do I have to change? Where do I find it?Thank you!
Hi there!
Thank you very much for your reply.
I understand what you say.
My web is in Spanish and it was automatically translated. So the problem here is where do I find the file that “has” the translated phrases?Thank you very much!!!
Forum: Themes and Templates
In reply to: [Customify] Header builder/editor not showingIt worked! Thank you!!
Forum: Themes and Templates
In reply to: [Tyche] Responsive CTAsHi!
Thank you very very much for your answer!!
It worked, and I used some Aditional CSS to display them as I wanted in smaller screens.
As people often have the same questions, here is my aditional CSS for centering those buttons as the screen gets smaller:.main-slider .hero-caption { display: block !important; } @media (max-width:899px){ .main-slider .hero-caption { top:1% !important; } } @media (max-width:749px)and (min-width:520px){ .main-slider .hero-caption.right{ right:1% !important; } } @media (max-width:519px){ .main-slider .hero-caption { width: 120px !important; margin:0 auto; } .main-slider .hero-caption .btn-group a:last-of-type { margin-left: -13px !important; } } @media (max-width:380px) and (min-width:305px) { .main-slider .hero-caption .btn-group a:last-of-type { margin-top: 10px !important; } } @media (max-width:304px) { .main-slider .hero-caption .btn-group a:last-of-type { margin-top: 2px !important; } .main-slider .hero-caption { margin-top:-1px !important; } }
(I’ll apreciate very much if you correct me if I’m making a mistake)
Thank you very much!
Forum: Themes and Templates
In reply to: [Tyche] Tyche Child ThemeingHi!
I’d like to customize some things too and I just can’t find out how to create a child theme. I’ve used:
style.css/* Theme Name: Tyche Child Template: tyche */
and functions.php
<?php add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX); function enqueue_child_theme_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); } ?>
but it isn’t working.
Is there something I’m missing?
Thank you for your help!Forum: Themes and Templates
In reply to: [Tyche] Change logo sizeHi!
I’d like it to be 300px width, but… would it be responsive?Forum: Themes and Templates
In reply to: [Hestia] Post not displayingI already did it. It continues going to homepage.
Thank you very very much!!!!!!!
Forum: Themes and Templates
In reply to: [Canape] Change title’s cssHey!
I don’t know if I explained myself very well (my English is not the best), but the code you gave me didn’t work. But you gave me an idea, and what worked was this:
.widget-title {
font-weight: bold;
font-size: 2.0rem;
font-size: 20px;
}Thank you very much!!!
Forum: Themes and Templates
In reply to: [Canape] Not using title in “Menu sections”Thank you!!!! It worked like a charm!!!!
Thank you!!!Forum: Themes and Templates
In reply to: [Canape] Change title’s cssHi there!
Thank you for answering me!
I’m talking about the h2 titles, the titles of the widgets.Forum: Themes and Templates
In reply to: [Canape] Copy “Menu section” image-button styleHi, @ashleybnicole!
What I did was to use a Custom HTML widget and to create a code, like this:<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> .container { position: relative; } .image { display: block; width: 100%; height: auto; } .overlay { position: absolute; top: 0; bottom: 0; left: 0; right: 0; height: 96%; width: 96%; opacity: 0; transition: .5s ease; background: rgba(0, 0, 0, 0.6); top: 48%; left: 48%; transform: translate(-48%, -48%); -ms-transform: translate(-48%, -48%); } .container:hover .overlay { opacity: 1; } .text { color: white; font-weight: 400; line-height: 1.4; position: absolute; font-family: 'Noticia Text', Arial, sans-serif; font-style: italic; top: 50%; text-align: center; -webkit-hyphens: none; -moz-hyphens: none; hyphens: none; } </style> </head> <body> <div class="container" style="width: 300px; height: 225px;"> <img src="URL OF THE IMAGE" alt="" class="image"> <div class="overlay"> <div class="text" style="font-size: 1.6rem; font-size: 1.6em; font-size: 16px; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); width: 90%;">TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT </div> </div> </div> </body> </html>
I hope it works for you!
Forum: Themes and Templates
In reply to: [Canape] “pushing” down page contentHi!
Right you are: I had to use media queries, but it worked!
THANK YOU!!!!!!!!!!