davidgabunia
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pinboard] how to get the slider to rotate fasterRESOLVED
In functions.php you can find a call to the function $(‘#slider’).flexslider({ … }); with several parameters. Also add this parameter:
slideshowSpeed: 7000,
where the number is the duration of the slide in milliseconds.
RESOLVED
Forum: Themes and Templates
In reply to: [Pinboard] Want to Centre the navigation BarThe width depends on YOUR nav container. 667px is just an example. And don’t forget to adjust this number as you add or delete navigation topics.
Forum: Themes and Templates
In reply to: [Pinboard] Want to Centre the navigation BarHere is what you have to add to your CSS:
div.menu-main-container {
margin-left:auto;
margin-right:auto;
width:667px;
}Forum: Themes and Templates
In reply to: [Pinboard] header image not workingHello scottgoh
How do you add 720×100 image in header?
I mean you don’t have any problems with social icons etc.Forum: Themes and Templates
In reply to: [Pinboard] Add the image in the main menuWell, I have some progress…
Right now I have this
https://www.picz.ge/img/s4/1301/16/c/c049911ba499.jpg
And want to have this
https://www.picz.ge/img/s2/1301/16/9/92872b181d43.jpgMy css cide:
——————————————–
#access {
font-family:”Oswald”, sans-serif;
font-size:14px;
margin:0px;
padding:0 20px;
background:#280d0b;
box-shadow:0 0 7px rgba(0, 0, 0, .1);
}#access ul {
float:left;
padding:0;
margin:0;
list-style:none;
text-transform:capitalize;
background-image: url(images/logo.jpg);
background-repeat: no-repeat;
}
—————————————–
to add margin:3000px; does not works.Any solution?!
Andrew, help please :dddHide Picture Link
In the slider.php after the line:
<?php if( has_post_thumbnail() ) : ?>
you have to exclude the following line, like in this example:<!–
” rel=”bookmark” title=”<?php the_title_attribute(); ?>”>
–>Hide navigation controls
If you also want to remove the forward, backward, start/stop buttons on the right side of the slider try to add this to your CSS:
.flex-direction-nav,.flex-pauseplay {
display:none;
}Hide navigation dots
As you may recognize there are small dots in the center of the slider for a quick navigation to each image. In case you want to hide these dots add this to your CSS:
.flex-control-nav {
display:none;
}Hide title link
Add this little code segment to your CSS to hide the title link in the slider, linked to the post:
#slider .entry-title a {
display:none;
}
and save your changes.Forum: Themes and Templates
In reply to: [Pinboard] Social buttons in menu areaOk, thx again.
RESOLVEDForum: Themes and Templates
In reply to: [Pinboard] Social buttons in menu areaHow can I change the position of the buttons?
I mean padding, margin etc.Forum: Themes and Templates
In reply to: [Pinboard] Social buttons in menu areaYes I know ?? So, it works ??
Omg I’m so thankful ??Forum: Themes and Templates
In reply to: [Pinboard] Social buttons in menu areaYou know, I can not the first images just because they are too pale.
Forum: Themes and Templates
In reply to: [Pinboard] Social buttons in menu areaWOW! I see the second facebook and youtube images, but not the first one
Forum: Themes and Templates
In reply to: [Pinboard] Social buttons in menu areaSo right now I have this in my Custom CSS section:
#access,
#header {
position: relative;
}#social-media-icons {
margin-top: 0;
}#social-media-icons {
position: absolute;
right: 0;
top: 0;
z-index: 2;
}Is i right? does not work