Luiz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Adventurous] How to replace a post/page title with an image?Good point @questas_admin, sometimes I forget that not everyone is aware of it.
You won’t change the theme, you will just create a personalized version of it.
But in order to do what you want you need to have access to your WordPress installation files.Forum: Themes and Templates
In reply to: [Advertica Lite] Space below menuHi!
As the space above and below the title is even, I would like to know more specifically were the problem is.
Here is an image of what I get.
Cheers ??
Forum: Themes and Templates
In reply to: [Adventurous] How to replace a post/page title with an image?Well, I might have misunderstood your question but I was going to propose that you change your theme in a way that you could replace the title of any post by it’s featured image.
Forum: Themes and Templates
In reply to: [Adventurous] How to replace a post/page title with an image?Hello Lorena,
For this to work, you have to check in your theme’s functions.php that post-thumbnails are enabled.
Look for a line like this one
add_theme_support( 'post-thumbnails' );
And if it’s not present, just add it at the end of your functions.php file. Then you will have the option to set a “featured image” on your editor’s page.Cheers
PS: the quickest way to know if it’s enabled is to edit your page and look for the “featured image” option.
Forum: Themes and Templates
In reply to: [Unconditional] Site Title and Home Info Left Justified?Hi walkers13 !
Inside the header.php theme file you have this portion of code:
<section id="section0" class="header-section"> <div id="header-image"> <div class="container"> <div class="row"> <div class="col-lg-12"> <h1 class="text-center v-center"> <a class="brand" rel="home" title="" href="https://wp-themes.com/" data-original-title="Previewing Another WordPress Blog">Theme Preview</a> </h1> </div> </div> </div> <div class="row"> <div class="col-sm-8 col-sm-offset-2 text-center"> <p class="lead"> We are a small team of web development enthusiasts aiming to generate clean and functional theme using the Bootstrap toolkit together with WordPress... </p> <br> <div class="col-sm-6 col-sm-offset-3"></div> </div> </section>
All you have to do is delete the
text-center
wherever you want it to be left aligned.Cheers
Yes the header overlapping the image is normal because it’s fixed to the top (the header I mean).
Simply addmargin-top: 64px;
(64px being your header’s height) to your #parallax-bg and you won’t have this problem no more.And for the centering problem, add
margin-left: auto; margin-right: auto;
to your #parallax-bg once again, and your problem will be solved ??Well, the background is already fixed so you wouldn’t need that.
Plus, it shouldn’t be too difficult to set different images for different pages.After changing the html structure by moving the parallax-bg div inside the page, and changing the css I get this:
Imageand the code is:
Html<div id="page" class="hfeed site"> <div id="parallax-bg"></div> <header id="masthead" class="site-header" role="banner"> <div id="content" class="site-content"> <footer id="colophon" class="site-footer" role="contentinfo"> </div>
CSS
#parallax-bg { background-image: url("https://edenscapes.esy.es/wp-content/uploads/2015/01/cropped-pink_flowers11.jpg"); background-position: center center; background-repeat: no-repeat; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; height: 300px; width: 100%; }
I hope we are getting closer to what you want.
Cheers
Hi farmer333,
That’s an easy solved problem.
You just need to change your css rule like this:#parallax-bg { background: url(your_image) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }
And the background image will cover the entire space of your element and you will only need to change the dimentions of the targeted element in order to get the effect you need.
Hello Divya,
That’s an easy one, you can add a filter to your functions.php in order to change the credits.
You can find more details on how to do it here.Hope it answers your question.
Cheers
Forum: Themes and Templates
In reply to: [Vantage] logo link not workingHi povilas111,
You have the #header-sidebar element that is in front of your link, and thus preventing from any click on it.
Forum: Themes and Templates
In reply to: [MesoColumn] Centering Header WidgetHi Trampolini,
realy cool username by the way ??
The widget is pushed on the right because of the float rule of the image right below it.
What you can do is put the widget emplacement before the “Watch Parties” image, if you want it above the logo.
Cheers
Forum: Themes and Templates
In reply to: [Twenty Thirteen] homepage image oversized on ipadForum: Themes and Templates
In reply to: [Attitude] Slider no longer transitioningHi smd212,
You are having an error on your Java Script code:
ReferenceError: attitude_slider_value is not defined
Forum: Themes and Templates
In reply to: [Twenty Thirteen] homepage image oversized on ipadHi Saskiale,
I don’t see where the problem seems to be, coul you provide some images to ilustrate your theme issues ?
Forum: Localhost Installs
In reply to: MAMP could not find localhost:8888Ho and I found that too https://forum.mamp.info/viewtopic.php?f=6&t=6390#p16983.
Not sure if it will work for you, but why not try right?