onelonelystar
Forum Replies Created
-
Forum: Plugins
In reply to: [OTW Portfolio Light] Portfolo Filterable themejust paste [otw_portfolio otw_filterable] on your page
Forum: Plugins
In reply to: [Yoast SEO] og:image issuesame here! HELP!
Forum: Plugins
In reply to: [Kopa Forcefull Toolkit] cant install Kopa Forcefull Toolkitsame here! HELP!
where exactly on the homepage would you like to add some text?
for example, if you want to add text under the featured area, open index.php and start typing your code above or under the latest posts code.
go to Theme Options -> single post and turn the About Author option off
I have the same problem. Any solutions??
Forum: Themes and Templates
In reply to: [Minamaze] Change logo linkopen header.php and find
<div id="logo"> <a rel="home" href="<?php echo esc_url( home_url( '/' ) ); ?>"> <?php /* Custom Logo */ thinkup_custom_logo(); ?></a> </div>
edit the href url to the one you want.
Forum: Themes and Templates
In reply to: [Minamaze] Change breadcrumb text 'Home'Go to Appearance -> Menus. Open the “Home” tab and you’ll see URL, Name and Title. Change it from there!
Forum: Themes and Templates
In reply to: [Minamaze] Minamaze Missing Alt Tagsif the image file is in the uploads folder, that means that you’ve uploaded it via the wordpress dashboard, correct? you can edit the alt tag from there
Forum: Themes and Templates
In reply to: [Minamaze] Minamaze Missing Alt Tagsfill in the alt you want between the tags, for example:
<div class="custom-header"><img src="https://clickdujour.com/wp-content/uploads/cdj_top_logo1600x200.jpg" width="1600" height="200" alt="this is my custom alt text"></div>
Forum: Themes and Templates
In reply to: [Minamaze] Change headings font sizedon’t change anything here
h1,h2,h3,h4,h5,h6 {
change them individually, for example
h1 { font-size: 28px; } h2 { font-size: 24px; }
Forum: Themes and Templates
In reply to: [Minamaze] Slider FontI’d suggest to use a white/light grey color on the fonts and add a shadow, just like I posted above.
have you turned the “Enable Pre-Made Homepage” ON? (it’s on the HOmepage Contect tab).
Forum: Themes and Templates
In reply to: [Minamaze] How to put slider instead of featured imagethere is already a slider in the theme, why would you wanna use a plugin for that? Go to Appearance ->Theme options -> Homepage
you will find there the slider option and you can add as many slides as you want.Forum: Themes and Templates
In reply to: [Minamaze] Slider Fontopen style.css and find the line where it says
#slider .featured-title span
that’s the style for the first titlethe code for the second title is below
#slider .featured-excerpt p
for example you can set it like this
#slider .featured-title span { display: inline-block; color: #FFF; font-size: 40px; line-height: 25px; font-weight: 300; line-height: 1.5; text-shadow:0 1px 1px black; }
hope that helps!