SomewhatRounded
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Theme: Bizway] Sidebar from right to leftHave you created a Child Theme? The changes would be made in a file called style.css
Or you could use a custom css plugin and make the changes that way.
Let me know how it goes 🙂
Forum: Themes and Templates
In reply to: [Theme: Bizway] Sidebar from right to leftHave a created a child theme or installed a custom css plugin?
You should be able to do what you described by changing the float of the main area and sidebar to the opposite
.grid_sub_16 { float: right; } .sidebar { background: #0B6D8D; }You could also play around with the padding and margins to make things look a little nicer after the switch 🙂
Hope that helps!
Forum: Themes and Templates
In reply to: Customizr small logo issueDo you have a link to the site you’re working on?
The appearance/size of the difference would depend on the image itself, as well as the forced dimensions.
But, the quick answer to your problem is, to make the changes you need to target the right thing using your css,
element.stylejust applies to whatever you have selected using whichever tool you’re using.site-logo > img { max-height: 100px; max-width: 250px; }Should do the trick!
Forum: Themes and Templates
In reply to: [Customizr] Post background different from rest of siteThe URL is just missing a letter, will take you there, Paulism 🙂
To change the background you can set the background color for the body,
body { background: #000; color: #fff; /*changes the text color to white*/ }You can change the color of your social media icons using this:
.social-block a { color: #fff; }Other little changes: (text color, text-shadows, etc.)
.widget-title, h1, h2, h3, h4, h5, h6, .entry-summary, .widget-area, .navbar .nav > li > a { color: #fff; } h1, h2, h3, h4, h5, h6, .navbar .nav > li > a { text-shadow: none !important; }Unfortunately there isn’t really a pretty/convenient way to center the menu and header image because of the way the theme is set up, but for what is currently there, this should work:
.tc-header .brand a { margin-right: -18em; } .navbar .navbar-inner { max-width: 40.5%; box-shadow: none !important; }Hope that helps!
Cheers!Forum: Themes and Templates
In reply to: [Suffusion] Problems with display of widget on custom layoutI installed the theme and there does seem to be a section if you go to Suffusion Options > Templates > Custom Layout Template, then there’s sections to choose the height adjustment for widgets in each widget area
Cheers!
Forum: Themes and Templates
In reply to: [Suffusion] Problems with display of widget on custom layoutYou could try setting it to an auto height using custom css,
.new_royalslider_widget { height: auto !important; }The
!importantshould override whatever was previously set, but it looks like that 73px is set as an inline style, so there might be somewhere in the theme’s settings to fiddle around with the dimensions.Hope that helps a little, good luck!
Forum: Themes and Templates
In reply to: [discover] Menu PaddingNo worries, the cache is sneaky like that haha glad it worked!
Forum: Themes and Templates
In reply to: [discover] Menu PaddingYou could fix it by floating the logo div 🙂 Depends on whether you’re looking to just fix it or find out what’s happening 😉 I haven’t used this theme in a while but I think the nav gets pushed down because the theme expects the header image to span across the entire area.
To simply fix it, you could use:
#logo { float: left; margin: 0 0 1em 0; }(The margin just gives it a little more space between the header image and the “Welcome” text)
Hope that helps!
orbisius is right, it is that short.
You shouldn’t have to remove/replace anything, you can just add the the css from above into that stylesheet. Where did you add it before when you said the site disappeared?
Sure is! You just have to change the background to
rgba(0,0,0,0)(rgba = red,green, blue, alpha)The widgets also have a border and shadow, if you wanted those removed as well, the css you need would look like
.widget { background: rgba(0,0,0,0); border: none; box-shadow: none; }Hope that helps!
Forum: Themes and Templates
In reply to: [Highwind] Questions about image alignmentI’m sure there is a way to make the images full-width, aside from directly inserting them, but centering them will be much easier.
You would just need:
.tiled-gallery .gallery-row { margin: 0 auto; }Hope that helps!
Forum: Themes and Templates
In reply to: [Book Lite] Change to menu headerAre you using a Child Theme, or a custom css plugin?
If so, you can change the menu colour by using the css class
.main-navigationIf you’d just like it to be a solid white, you could just use ‘white’ or ‘#fff’, or if you’d like to keep the semi-transparency, you could use ‘rbga(255,255,255,0.9)’
OR, since the theme actually just uses an image for this, you could replace the image (it’s easier to use css since it’s just a plain colour though)
Code:
.main-navigation { background: rgba(255,255,255,0.9); }Hope that helps!
Forum: Themes and Templates
In reply to: Centering logo and navigationHey guys,
Sorry, I completely overlooked the theme name! I found their support forum for you though, http://smthemes.com/support/forum/realestater-free-wordpress-theme
Forum: Themes and Templates
In reply to: Centering logo and navigationNow worries, it’s what the forum is here for!
I’m not entirely sure I understand what you mean; how to center the addresses, or the categories listed to the left of the date?
Center both:
.articles .post-caption { text-align: center; }Center the addresses/title:
.articles .post-caption h2, .articles .post-caption h1 { text-align: center; }Center the categories:
.articles .post-caption p { text-align: center; }If you right click the area you’d like to make changes to it’ll bring it up for you and you can play around with the values before committing to any changes.
(It’ll take you a loooong time to change everything if you have to ask here every time haha)
http://color.hailpixel.com/ is a great tool for colour schemes, (you can click the settings icon (little gear) to get the rgb format)
Good luck!