ronangelo
ParticipantForum Replies Created
-
In reply to: Move Social Media from the upper menu to the sidebar widget
November 5, 2012 at 1:42 pm #33549Quote:@Ron, I think he is talking about social media icons in the top bar.@patrick48, you can add a text widget to sidebar and use HTML code like this,
AddThis also has Follow buttons which is the same with the top social media buttons
In reply to: Move Social Media from the upper menu to the sidebar widget
November 5, 2012 at 10:06 am #33547You use AddThis code https://www.addthis.com/get/follow
add the code in a text widget in the sidebar.
In reply to: Four column layout: main content + two sidebars + one sidebar below the two
October 22, 2012 at 12:38 pm #33307I would just use one wide sidebar.
then for every text-widget I would add two horizontally aligned buttons.
Two buttons inside one text-widget
<a class="widget-hover widget-neuigkeiten" href="http://sample1"></a>
<a class="widget-hover widget-buecher" href="http://sample2"></a>Then just add css to make them float to the left. Then adjust margins.
.widget-hover {
float: left;
margin: 10px;
}with this layout, your additional widgets would be the same width.
.home .wp-pagenavi {
display: none !important;
}Try to add this on Custom CSS option or on the child theme’s css.
.home .wp-pagenavi {
display: none;
}Your plugin Better Tag Cloud / nktagcloud is imposing its own style on the links.
try to deactivate that and you’ll see the results.
Quote:I have not “Current menu background” in style css…
?
just try to add this in your child theme style.css or graphene custom css
#header-menu .current-menu-item {
background: #0582D2 !important;
}
#header-menu .current-menu-item a {
color: #FFF !important;
}/* Current menu background */
#header-menu .current-menu-item {
background: #0582D2;
}
/* Current menu font */
#header-menu .current-menu-item a {
color: #FFF;
}if this doesn’t work, add !important in the property.
background: #0582D2 !important;also, your header image is almost half a megabyte.
If a css property has a strike-through line on firebug it means that some other property has greater priority over it.
I’m a little confused on what exactly you want to achieve but if you want to style the elements on a specific page you have to use the class indicated in the body tag.
for example in the “OTHERREALM”
.page-id-112 .post {
background: #FFF;
}
