Mickey1979
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Tiny Framework] Header menu not visible with tablet or mobilesolved.
I’ve changed the width of all the buttons instead the one that i wanted. ??Forum: Themes and Templates
In reply to: [Tiny Framework] Header menu not visible with tablet or mobileHi,
I have the same problem that in mobile view the menu is not look good.
how can i fix it ?
Infinitygaragedoors.comForum: Plugins
In reply to: [Image Zoom] Exclude Certain Images From Image Zoomhi,
thanks for your reply,
this is how i try to exclude page
https://infinitygaragedoors.com/?p=1793.tld/portfolio/this is the page i want to exclude:
https://infinitygaragedoors.com/couponsForum: Plugins
In reply to: [Image Zoom] Exclude Certain Images From Image ZoomHi,
How can i exclude page ?
I’ve tried from the setting but no luck.Thanks,
Tamir,Forum: Fixing WordPress
In reply to: YouTube Text Wrapeasy solution:
in your child css file:
#video-wrap {
float: right;
margin: 0 0 0 10px;
}
(just change the float and margin)in the page – text tab:
<div id=”video-wrap”>
(and than in iframe code just change the size of the video and add the src.)
<iframe style=”float: right;” src=”https://www.youtube.com/embed/d8KK3xnEV34?feature=oembed” height=”150″ width=”232″ ></iframe>
</div>if you can see the link from youtube and how the wordpress is translated it, they a little different so make sore to change to the right one, see the sample below.
the youtube code = https://www.youtube.com/watch?feature=player_profilepage&v=d8KK3xnEV34
the wordpress code = src=”https://www.youtube.com/embed/d8KK3xnEV34?feature=oembed”Forum: Plugins
In reply to: [Slideshow] the pictures not on the center of the pagesolution “
“Maximum width. When maximum width is 0, maximum width is ignored” –
need to be 0 ??Forum: Plugins
In reply to: [Breadcrumb NavXT] Display titles h1hi,
i know its not the same but, is it possible with this plugin to get the name in the breadcrumbs as it apper in the menu title ?
link to my site:
https://infinitygaragedoors.com/residential-garage-doors-and-openers
instead of
home -> Residential Doors & Openersi want it to be :
Home -> ResidentialForum: Plugins
In reply to: [Breadcrumb NavXT] Breadcrumbs using 'wp_nav_menu' instead of page hierarchy?i got the same problem.
i want to see the navigation title and not the page title, they are different.
in the appearance–> menus , i changed the navigation lable.Forum: Fixing WordPress
In reply to: Hide Title and keep breadcrumbit worked for me with retina theme.
add this line to your home style.css as jasonpaulweber suggested:
.entry-title {
display:none;
}and add to your content-page.php, i recommend to copy the content-page.php to your theme child and then to add the line.
<div class=”breadcrumbs”>
<img src=”https://i added a picture here.” width=”16″ height=”16″ class=”bread-icon”>
<?php if(function_exists(‘bcn_display’))
{
bcn_display();
}?>
</div>after that all changes have to be made in the child style theme:
i change the font and i added under line between the breadcrumbs and the content in the page:.breadcrumbs {
margin: 0 0 20px 0;
display: block;
padding: 5px 5px 10px 5px;
border-bottom: 1px solid #ddd;
overflow: hidden;
font-size: 15px;
verical-align: middle;
color: #888;
}Forum: Plugins
In reply to: [WP Catalogue] trouble displaying catalog on pageinstead using catalog can’t you put your information in table an link to different page ?
Forum: Fixing WordPress
In reply to: Can not edit content/images in Categoriescan you send link to the page ?
Forum: Fixing WordPress
In reply to: catalog on pagesinstead of catalog plug in that didn’t mach what i wonted, i put all my information (pic & text) in table, and change how i wanted to see the table in the page on my child theme style:
this is the code for the style.css file:td{ vertical-align: top; } table { width: 80%; margin: 0 auto 20px auto; border-collapse: collapse; align: left; } img.alignnone { display: inline; margin: 0; } td, th { padding: 5px; border: 1px #FFFFFF solid; }
and this is the table in the page :
<span style="color: #8a0808; font-size: 28px; font-family: 'Tekton Pro';"><strong>write what u want</strong></span> <hr /> <table style="float: left;" border="1"> <tbody> <tr> <td><a /><img src= /></td> <td style="font-size: 17px;"><strong>write what u want</strong> write what u want <strong>write what u want</strong>write what u want</td> </tr> <tr> <td height="10"></td> "this one is for space between the rows" <td height="10"></td> "this one is for space between the rows" </tr>
[Please use the CODE buttons, not blockquote, when posting code ]Forum: Themes and Templates
In reply to: Standard Theme – How to Change Side Bar Widget Font Colorok this is working know (for me) ??
.widget .widget-title {
font-size: 24px;
font-weight: 500;
letter-spacing: 0.1em;
line-height: 22px;
margin-bottom: 10px;
font-family: “Adobe Fan Heiti Std B”;
}but still got a problem when i change the color
color: #666666;
somehow only the bottoms one changing.Forum: Themes and Templates
In reply to: Standard Theme – How to Change Side Bar Widget Font Colorworked for me, under the sidebar in the child retina them i put this line and i change like this
.widget-title {
font-size: 10px;
font-weight: 500;
letter-spacing: 0.1em;
line-height: 2.6em;
font-family: “Adobe Fan Heiti Std B”;
}i still didn’t figher how to change the font size its not working with that formola. hope some one can help with that
Forum: Fixing WordPress
In reply to: contact form 7 outline gold colorfount the problem
i copy below code to my child retina them and delete “inline: none”
with this information i could change the size of the fields and more.
input[type=”text”],
input[type=”password”],
input[type=”email”],
textarea,
select {
font-family: ‘Open Sans’, sans-serif;
font-size: 13px;
color: #2f2f2f;
background: #fff;
border: 1px solid #e7e7e7;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
padding: 6px 4px;
display: block;
margin: 0 0 20px 0;}